body {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
}

select {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
}

:root {
  --app-height: 100%;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

a {
  font-weight: 500;
}

select,
button,
input[type=text],
input[type=email],
input[type=password],
textarea {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
}

strong,
b {
  font-weight: 900;
}

/*1199, 1366*/
.container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .container {
    max-width: 1193px;
  }
}
@media (max-width: 1140px) {
  .container {
    max-width: 992px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  background-color: #fff;
  box-shadow: 0 13px 24px 0 rgba(0, 0, 0, 0.37);
}
header .con {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  justify-content: space-between;
}
header .con .logo a {
  display: block;
}
header .con .logo a img {
  display: block;
  max-width: 100%;
  height: 54px;
}
header .con .header-nav {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
header .con .header-nav .header-top {
  display: flex;
  align-items: center;
  padding: 10px 0;
  color: #111;
  font-size: 14px;
  -moz-column-gap: 11px;
       column-gap: 11px;
}
header .con .header-nav .header-top .header-top-left .header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f1b34;
  text-decoration: none;
  font-weight: 900;
  -moz-column-gap: 10px;
  column-gap: 10px;
  font-size: 20px;
}
header .con .header-nav .header-top .header-top-left .header-phone img {
  display: block;
}
header .con .header-nav .header-top .header-top-left .header-phone span {
  position: relative;
  top: 2px;
}
header .con .header-nav .header-top .header-top-right {
  display: flex;
  align-items: center;
}
header .con .header-nav .header-top .header-top-right .header-follow {
  color: #111;
  font-size: 15px;
}
header .con .header-nav .header-top .header-top-right .header-follow strong {
  color: #0f1b34;
  font-weight: 900;
}
header .con .header-nav .header-top .header-top-right .social-icons {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
header .con .header-nav .header-top .header-top-right .social-icons li {
  margin-left: 8px;
}
header .con .header-nav .header-top .header-top-right .social-icons li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e9b24f;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
header .con .header-nav .header-top .header-top-right .social-icons li a svg {
  height: 18px;
}
header .con .header-nav .header-top .header-top-right .social-icons li a:hover {
  opacity: 0.85;
}
header .con .header-nav .mynav {
  display: flex;
  align-items: center;
  gap: 10px;
  /* CTA button styles (base + modifiers) */
  /* spacing if there are multiple CTAs */
}
header .con .header-nav .mynav ul {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1170px) {
  header .con .header-nav .mynav ul {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
}
header .con .header-nav .mynav ul li {
  position: relative;
}
header .con .header-nav .mynav ul li.has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .con .header-nav .mynav ul li.has-children:hover > a .arrow-icon {
  transform: rotate(180deg);
}
header .con .header-nav .mynav ul li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  border-radius: 0 0 5px 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: block;
}
header .con .header-nav .mynav ul li .sub-menu li {
  display: block;
  margin: 0;
}
header .con .header-nav .mynav ul li .sub-menu li a {
  padding: 10px 20px;
  font-size: 15px;
  height: auto;
  color: #333;
}
header .con .header-nav .mynav ul li .sub-menu li a::before, header .con .header-nav .mynav ul li .sub-menu li a::after {
  display: none;
}
header .con .header-nav .mynav ul li .sub-menu li a:hover {
  background-color: #f9f9f9;
  color: #e9b24f;
}
header .con .header-nav .mynav ul li a {
  display: block;
  color: #000000;
  font-size: 17px;
  position: relative;
  height: 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 1170px) {
  header .con .header-nav .mynav ul li a {
    font-size: 14px;
  }
}
header .con .header-nav .mynav ul li a .arrow-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
header .con .header-nav .mynav ul li a:hover {
  color: #e9b24f;
}
header .con .header-nav .mynav ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e9b24f;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
header .con .header-nav .mynav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e9b24f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
header .con .header-nav .mynav ul li a:hover::before {
  transform: scaleX(1);
}
header .con .header-nav .mynav ul li a:hover::after {
  transform: scaleX(1);
}
header .con .header-nav .mynav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  padding: 8px 13px 7px 10px;
  border-radius: 4px;
  transition: all 0.15s ease;
  box-shadow: none;
  white-space: nowrap;
  height: 37px;
}
header .con .header-nav .mynav .nav-cta svg {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}
header .con .header-nav .mynav .nav-cta span {
  line-height: 1;
  font-size: 14px;
}
@media (max-width: 1170px) {
  header .con .header-nav .mynav .nav-cta span {
    font-size: 10px;
  }
}
header .con .header-nav .mynav .nav-cta--outline {
  background-color: transparent; /* outline-only */
  color: #0f1b34; /* text color */
  border: 2px solid #e9b24f; /* primary accent border */
}
header .con .header-nav .mynav .nav-cta--outline svg {
  fill: #e9b24f;
}
header .con .header-nav .mynav .nav-cta--outline:hover, header .con .header-nav .mynav .nav-cta--outline:focus {
  background-color: #e9b24f; /* filled on hover */
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(233, 178, 79, 0.14);
}
header .con .header-nav .mynav .nav-cta--outline:hover svg, header .con .header-nav .mynav .nav-cta--outline:focus svg {
  fill: #fff;
}
header .con .header-nav .mynav .nav-cta--outline:focus-visible {
  outline: none;
  box-shadow: 0 0 0 5px rgba(233, 178, 79, 0.14), 0 10px 20px rgba(233, 178, 79, 0.06);
}
header .con .header-nav .mynav .nav-cta--filled {
  background-color: #e9b24f;
  color: #fff;
  border: 2px solid transparent;
  padding: 7px 10px;
}
header .con .header-nav .mynav .nav-cta--filled svg {
  fill: #fff;
}
header .con .header-nav .mynav .nav-cta--filled:hover, header .con .header-nav .mynav .nav-cta--filled:focus {
  opacity: 0.95;
  transform: translateY(-1px);
}
header .con .header-nav .mynav .nav-cta--filled:focus-visible {
  outline: none;
  box-shadow: 0 0 0 5px rgba(233, 178, 79, 0.14);
}
header .con .mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  margin-left: 15px;
}
header .con .mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #0f1b34;
  border-radius: 3px;
  transition: all 0.3s ease;
}
header .con .mobile-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
header .con .mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
header .con .mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

@media (max-width: 991px) {
  header .con .mobile-toggle {
    display: flex;
  }
  header .con .header-nav {
    position: static;
  }
  header .con .header-nav .header-top {
    display: none;
  }
  header .con .header-nav .mynav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    border-top: 1px solid #eee;
    pointer-events: none;
  }
  header .con .header-nav .mynav.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  header .con .header-nav .mynav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  header .con .header-nav .mynav ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  header .con .header-nav .mynav ul li.has-children {
    flex-wrap: wrap;
  }
  header .con .header-nav .mynav ul li.has-children .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 20px;
    width: 100%;
    display: block;
    background: transparent;
    display: none;
  }
  header .con .header-nav .mynav ul li.has-children .sub-menu li a {
    padding: 8px 0;
    font-size: 15px;
  }
  header .con .header-nav .mynav ul li.has-children .sub-menu li a:hover {
    background: transparent;
  }
  header .con .header-nav .mynav ul li a {
    font-size: 16px;
    width: 100%;
  }
  header .con .header-nav .mynav ul li a::before, header .con .header-nav .mynav ul li a::after {
    display: none;
  }
  header .con .header-nav .mynav .nav-cta {
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin-top: 12px;
    box-shadow: none;
    border-radius: 6px;
    text-align: center;
    height: initial;
  }
  header .con .header-nav .mynav .nav-cta span {
    font-size: 17px;
  }
  header .con .header-nav .mynav .nav-cta--outline {
    background-color: transparent;
    color: #0f1b34;
    border: 2px solid #e9b24f;
  }
  header .con .header-nav .mynav .nav-cta--outline svg {
    fill: #e9b24f;
  }
  header .con .header-nav .mynav .nav-cta--outline:hover, header .con .header-nav .mynav .nav-cta--outline:focus {
    background-color: #e9b24f;
    color: #fff;
  }
  header .con .header-nav .mynav .nav-cta--outline:hover svg, header .con .header-nav .mynav .nav-cta--outline:focus svg {
    fill: #fff;
  }
  header .con .header-nav .mynav .nav-cta--filled {
    background-color: #e9b24f;
    color: #fff;
    border: 2px solid transparent;
  }
  header .con .header-nav .mynav .nav-cta--filled svg {
    fill: #fff;
  }
  header .con .header-nav .mynav .nav-cta--filled:hover, header .con .header-nav .mynav .nav-cta--filled:focus {
    opacity: 0.95;
  }
}
@media (max-width: 768px) {
  header .header-top {
    display: none;
  }
}
.home-slider {
  width: 100%;
  padding-top: 100px;
}
@media (max-width: 992px) {
  .home-slider {
    display: none;
  }
}
.home-slider .swiper-button-next,
.home-slider .swiper-button-prev {
  color: #ffffff;
}
.home-slider .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
  display: none;
}
.home-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.home-slider .swiper-wrapper {
  border-bottom: 10px solid #d9bb71;
}
.home-slider .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-slider-mobile {
  display: none;
}
@media (max-width: 992px) {
  .home-slider-mobile {
    display: block;
  }
}

.home-area .con .home-banner-01 {
  margin-top: 45px;
  height: 238px;
  width: 100%;
  position: relative;
  background-image: url(../img/home-01-bg.jpg);
  background-size: 100% 100%;
  background-position: center;
}
@media (max-width: 992px) {
  .home-area .con .home-banner-01 {
    background-image: url(../img/home-01-bg-mobile.png);
    height: 211px !important;
    background-size: 100% 100% !important;
  }
}
.home-area .con .home-banner-01 a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 48px;
  position: relative;
  z-index: 2;
  text-decoration: none;
  color: inherit;
}
.home-area .con .home-banner-01 a .top {
  font-family: "Times New Roman", serif;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #0f1b34;
  line-height: 1.15;
}
.home-area .con .home-banner-01 a .bottom {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.1;
  color: rgba(0, 0, 0, 0.9);
  max-width: 527px;
}
.home-area .con .home-banner-02 {
  margin-top: 45px;
}
.home-area .con .home-banner-02 .hbcon .hb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.home-area .con .home-banner-02 .hbcon .hb-card {
  display: block;
  position: relative;
  overflow: hidden;
  height: 380px;
  border-radius: 26px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-area .con .home-banner-02 .hbcon .hb-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}
.home-area .con .home-banner-02 .hbcon .hb-card:hover .card-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.home-area .con .home-banner-02 .hbcon .hb-card .card-img {
  width: 100%;
  height: 100%;
  position: relative;
}
.home-area .con .home-banner-02 .hbcon .hb-card .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.home-area .con .home-banner-02 .hbcon .hb-card .card-img .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.28) 60%, rgba(0, 0, 0, 0.3) 100%);
  transition: opacity 0.25s ease, background 0.25s ease;
}
.home-area .con .home-banner-02 .hbcon .hb-card .card-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  z-index: 2;
  text-align: center;
  padding: 0 18px;
}
.home-area .con .home-banner-02 .hbcon .hb-card .card-caption .title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.home-area .con .home-banner-02 .hbcon .hb-card .card-caption .accent {
  display: block;
  width: 50px;
  height: 5px;
  margin: 10px auto 0;
  border-radius: 1px;
  background: #e8c66f;
  box-shadow: 0 3px 8px rgba(232, 198, 111, 0.12);
}

@media (max-width: 768px) {
  .home-slider {
    padding-top: 70px;
  }
  .home-slider .swiper-wrapper .swiper-slide img {
    height: 291px;
    -o-object-fit: initial;
       object-fit: initial;
  }
  .home-area .con .home-banner-01 {
    margin-top: 35px;
    border-radius: 26px;
    height: auto;
    background-size: cover;
  }
  .home-area .con .home-banner-01 a {
    padding: 30px 20px;
  }
  .home-area .con .home-banner-01 a .top {
    font-size: 28px;
  }
  .home-area .con .home-banner-01 a .bottom {
    font-size: 16px;
  }
  .home-area .con .home-banner-02 {
    margin-top: 30px;
  }
  .home-area .con .home-banner-02 .hbcon .hb-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home-area .con .home-banner-02 .hbcon .hb-card {
    height: auto;
    border-radius: 18px;
    overflow: hidden;
  }
  .home-area .con .home-banner-02 .hbcon .hb-card .card-img img {
    height: 240px;
  }
}
footer {
  margin-top: 45px;
}
footer .con {
  border-top: 4px solid #e7e7e7;
  border-bottom: 4px solid #e7e7e7;
  padding-top: 30px;
  padding-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  footer .con .logo {
    margin-bottom: 70px;
  }
}
footer .con .logo a {
  display: block;
}
footer .con .logo a img {
  display: block;
  max-width: 100%;
}
@media (max-width: 992px) {
  footer .con .footer-menu {
    display: none;
  }
}
footer .con .footer-menu nav {
  border-right: 4px solid #e7e7e7;
  display: flex;
}
footer .con .footer-menu nav .item {
  margin-right: 40px;
}
footer .con .footer-menu nav .item h4 {
  font-weight: 900;
  margin-bottom: 15px;
  font-size: 17px;
}
footer .con .footer-menu nav .item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .con .footer-menu nav .item ul li {
  margin-bottom: 10px;
}
footer .con .footer-menu nav .item ul li a {
  color: #0c0c0c;
  font-size: 15px;
  text-decoration: none;
  font-weight: 600;
}
footer .con .footer-menu nav .item ul li a:hover {
  text-decoration: underline;
}
footer .con .footer-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
@media (max-width: 992px) {
  footer .con .footer-info {
    display: none;
  }
}
footer .con .footer-info .contact-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer .con .footer-info .whatsapp {
  display: flex;
  align-items: center;
  gap: 16px;
}
footer .con .footer-info .whatsapp .whatsapp-text {
  text-align: left;
}
footer .con .footer-info .whatsapp .whatsapp-text .label {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 4px;
}
footer .con .footer-info .whatsapp .whatsapp-text .phone {
  display: inline-block;
  font-weight: 900;
  color: #0c0c0c;
  font-size: 23px;
  text-decoration: none;
  letter-spacing: 1px;
}
footer .con .footer-info .social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .con .footer-info .social .follow {
  font-size: 18px;
  color: #0c0c0c;
}
footer .con .footer-info .social .follow strong {
  font-weight: 900;
}
footer .con .footer-info .social .icons {
  display: flex;
  gap: 12px;
}
footer .con .footer-info .social .icons .icon {
  display: inline-flex;
  width: 33px;
  height: 33px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  background: #e9b24f;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  color: #fff;
}
footer .con .footer-info .social .icons .icon svg {
  height: 18px;
}
footer .con .footer-info .social .icons .icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.fixed-social-icons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9;
}
.fixed-social-icons .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background: #e9b24f;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s, box-shadow 0.15s;
}
.fixed-social-icons .icon svg {
  height: 22px;
  width: 22px;
}
.fixed-social-icons .icon:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}
.fixed-social-icons .icon.instagram {
  background: #e9b24f;
}
.fixed-social-icons .icon.facebook {
  background: #e9b24f;
}
.fixed-social-icons .icon.youtube {
  background: #e9b24f;
}

@media (max-width: 768px) {
  footer .con {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .con .footer-menu nav {
    border-right: none;
    display: block;
  }
  footer .con .footer-menu nav .item {
    margin-right: 0;
    margin-bottom: 18px;
  }
  footer .con .footer-info {
    margin-left: 0;
    align-items: center;
  }
  footer .con .footer-info .contact-block {
    align-items: center;
  }
  footer .con .footer-info .whatsapp {
    flex-direction: column;
    gap: 10px;
  }
  footer .con .footer-info .whatsapp .whatsapp-text {
    text-align: center;
  }
  footer .con .footer-info .whatsapp .whatsapp-text .phone {
    font-size: 22px;
  }
  footer .con .footer-info .social {
    align-items: center;
  }
  footer .con .footer-info .social .follow {
    font-size: 16px;
  }
  .fixed-social-icons {
    width: 38px;
  }
  .fixed-social-icons .icon {
    width: 38px;
    height: 38px;
  }
  .fixed-social-icons .icon svg {
    height: 18px;
    width: 18px;
  }
}
.footer-icons {
  position: fixed;
  bottom: -2px;
  left: 0;
  right: 0;
  display: none;
  z-index: 10;
}

@media (max-width: 992px) {
  .footer-icons {
    display: flex;
  }
}
.footer-icons .item {
  flex-grow: 1;
  flex-basis: 0;
  background-color: #e9b24f;
}

.footer-icons .item:nth-child(2) {
  background-color: #00a783;
}

.footer-icons .item a {
  padding: 13px 20px;
  display: flex;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  align-items: center;
  justify-content: center;
}

.footer-icons .item a .img img {
  height: 30px;
}

.footer-icons .item a .desc {
  padding-left: 13px;
}

.madeby {
  display: flex;
  justify-content: flex-end;
}
.madeby a {
  display: block;
  font-size: 14px;
  color: #000;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 9px;
  padding-left: 50px;
  padding-right: 0;
}

.cookie-btn {
  position: fixed;
  left: 43px;
  bottom: 0;
  z-index: 102;
}
@media (max-width: 992px) {
  .cookie-btn {
    display: none;
  }
}

.cookie-btn a {
  display: block;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding-top: 10px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  transition: all 0.3s ease-in-out;
  box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.2);
  background: #2d2d2d;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.cookie-btn a:hover {
  padding-bottom: 13px;
}

.cmod1 {
  background-color: #2d2d2d;
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 103;
  width: 300px;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.cmod1.active {
  opacity: 1;
  visibility: visible;
}

.cmod1 .ccon {
  padding: 15px 20px 15px 20px;
  position: relative;
}

.cmod1 .ccon .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 29px;
  color: #FFFFFF;
  opacity: 0.85;
  z-index: 999999;
  line-height: 15px;
  cursor: pointer;
}

.cmod1 .ccon .head {
  color: #fff;
  font-size: 19px;
  padding: 16px 0 12px;
  font-weight: 800;
}

.cmod1 .ccon .desc {
  opacity: 0.85;
  color: #fff;
  font-size: 13px;
  line-height: 19px;
  margin-bottom: 15px;
}

.cmod1 .ccon .desc a {
  color: #fff;
  font-size: 11px;
}

.cmod1 .ccon .chk-list .item {
  margin-bottom: 15px;
}

.cmod1 .ccon .chk-list .item:nth-child(2) {
  padding-left: 29px;
}

.cmod1 .ccon .chk-list .item:nth-child(4) {
  padding-left: 29px;
}

.cmod1 .ccon .chk-list .item .container-chk {
  display: block;
  position: relative;
  padding-left: 29px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.cmod1 .ccon .chk-list .item .container-chk .mytitle {
  color: #fff;
  font-size: 12px;
  padding-top: 4px;
  display: block;
}

.cmod1 .ccon .chk-list .item .container-chk input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.cmod1 .ccon .chk-list .item .container-chk .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #FFFFFF;
  background-color: #2d2d2d;
  border-radius: 2px;
}

.cmod1 .ccon .chk-list .item .container-chk:hover input ~ .checkmark {
  /*background-color: #ccc;*/
}

.cmod1 .ccon .chk-list .item .container-chk input:checked ~ .checkmark {
  background-color: #fff;
}

/*
.cmod1 .ccon .chk-list .item .container-chk .checkmark:after {
  content: "";
  position: absolute;
  /*display: none;*/
/*transition: opacity 180ms 0s cubic-bezier(0,0,.2,1),transform 180ms 0s cubic-bezier(0,0,.2,1),-webkit-transform 180ms 0s cubic-bezier(0,0,.2,1);
  opacity: 0;
  transition: stroke-dashoffset 180ms 0s cubic-bezier(.4,0,.6,1);
}*/
.cmod1 .ccon .chk-list .item .container-chk .checkmark {
  content: "";
  position: absolute;
  /*display: none;*/
  transition: opacity 180ms 0s cubic-bezier(0, 0, 0.2, 1);
}

.cmod1 .ccon .chk-list .item .container-chk .checkmark .mypath {
  transition: stroke-dashoffset 180ms 0s cubic-bezier(0.4, 0, 0.6, 1);
  stroke: currentColor;
  stroke-width: 3.12px;
  stroke-dashoffset: 29.7833385;
  stroke-dasharray: 29.7833385;
}

.cmod1 .ccon .chk-list .item .container-chk input:checked ~ .checkmark {
  /*display: block;*/
  opacity: 1;
}

.cmod1 .ccon .chk-list .item .container-chk input:checked ~ .checkmark .mypath {
  /*display: block;*/
  stroke-dashoffset: 0;
}

.cmod1 .ccon .chk-list .item .container-chk .checkmark:after {
  left: 4px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid #2d2d2d;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cmod1 .ccon .btn-save {
  margin-bottom: 10px;
}

.cmod1 .ccon .btn-save a {
  background-color: #6BBE6B;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 12px 7px;
  height: 35px;
  display: block;
  width: 100%;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.cmod1 .ccon .btn-save a:hover {
  background-color: #63b063;
}

.cmod1 .ccon .btn-save-ek {
  margin-bottom: 10px;
}

.cmod1 .ccon .btn-save-ek a {
  background-color: #6BBE6B;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 12px 7px;
  height: 35px;
  display: block;
  width: 100%;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.cmod1 .ccon .btn-save-ek a:hover {
  background-color: #63b063;
}

.cmod1 .ccon .btn-save-ek {
  margin-bottom: 10px;
}

.cmod1 .ccon .btn-save-ayar a {
  background-color: #6BBE6B;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 12px 7px;
  height: 35px;
  display: block;
  width: 100%;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.cmod1 .ccon .btn-save-ayar a:hover {
  background-color: #63b063;
}

.cmod1 .ccon .btn-reject {
  margin-bottom: 10px;
}

.cmod1 .ccon .btn-reject a {
  background-color: #2d2d2d;
  border: 1px solid #fff;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 12px 7px;
  height: 35px;
  display: block;
  width: 100%;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.cmod1 .ccon .btn-reject a:hover {
  background-color: #3e3e3e;
}

.cmod1 .ccon .btn-settings {
  margin-top: 11px;
}

.cmod1 .ccon .btn-settings a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.85;
  transition: all 0.3s ease-in-out;
}

.cmod1 .ccon .btn-settings a:hover {
  opacity: 1;
}

.cmod1 .ccon .btn-settings a:hover .img svg {
  fill: #6BBE6B;
}

.cmod1 .ccon .btn-settings a .img svg {
  width: 15px;
  height: 15px;
  fill: #fff;
  position: relative;
  top: 1px;
}

.cmod1 .ccon .btn-settings a .mydesc {
  font-size: 11px;
  padding-left: 6px;
}

.cmod2 {
  position: fixed;
  z-index: 101;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(17, 17, 17, 0.5);
  display: none;
}

.cmod2.active {
  display: flex;
}

.cmod2 .cmcon {
  width: 850px;
  max-height: 80%;
  background-color: #fff;
  border-radius: 10px;
}

.cmod2 .cmcon .chead {
  border-bottom: 1px solid #4d4d4d;
  display: flex;
  align-items: center;
  padding: 17px 20px 13px;
  color: #4d4d4d;
}

.cmod2 .cmcon .chead .img {
  font-size: 30px;
}

.cmod2 .cmcon .chead .desc {
  flex-grow: 1;
  font-size: 20px;
  padding-left: 20px;
}

.cmod2 .cmcon .chead .btn-close a {
  display: block;
  padding: 5px;
  font-size: 37px;
  color: #4d4d4d;
  opacity: 0.9;
}

.cmod2 .cmcon .con .top-area {
  padding: 25px 50px;
}

.cmod2 .cmcon .con .top-area .head {
  color: #4d4d4d;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 21px;
}

.cmod2 .cmcon .con .top-area .desc {
  color: #4d4d4d;
  font-size: 14px;
  line-height: 17px;
}

.cmod2 .cmcon .con .top-area .desc a {
  color: #3fb6ee;
  text-decoration: none;
}

.cmod2 .cmcon .con .top-area .desc a:hover {
  text-decoration: underline;
}

.cmod2 .cmcon .con .tab-area .thead {
  display: flex;
}

.cmod2 .cmcon .con .tab-area .thead .item {
  flex-grow: 1;
  flex-basis: 0;
}

.cmod2 .cmcon .con .tab-area .thead .item a {
  display: block;
  padding: 12px;
  font-size: 14px;
  color: #4d4d4d;
  text-align: center;
  font-weight: 600;
}

.cmod2 .cmcon .con .tab-area .thead .item.active a {
  border-top: 1px solid #3fb6ee;
  background-color: #f3f3f3;
  color: #3fb6ee;
}

.cmod2 .cmcon .con .tab-area .tcon {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage {
  display: none;
  background-color: #f3f3f3;
  padding: 5px 50px 10px 50px;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage.active {
  display: block;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem {
  padding-top: 23px;
  padding-bottom: 17px;
  border-bottom: 1px solid #e2e2e2;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem:last-child {
  border-bottom: 0;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem .tptop {
  display: flex;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem .tpopener {
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  opacity: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 !important;
  max-height: 0;
  margin: 0;
  height: auto !important;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem.active .tpopener {
  max-height: 222px;
  opacity: 1;
  margin-top: 15px;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem .tpopener table {
  margin: 0;
  padding: 0;
  font: inherit;
  vertical-align: baseline;
  background-color: #ffffff;
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem .tpopener table thead tr th:nth-child(1) {
  padding-left: 15px;
  word-break: normal;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem .tpopener table thead tr th:nth-child(3) {
  text-align: center;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem .tpopener table thead tr th:last-child {
  padding-right: 10px;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem .tpopener table thead th {
  font-weight: 600;
  padding: 8px 8px;
  line-height: 1.4;
  word-break: keep-all;
  vertical-align: middle;
  white-space: normal;
  font-size: 13px;
  text-align: left;
  margin: 0;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem .tpopener table tbody tr td:nth-child(1) {
  padding-left: 15px;
  word-break: normal;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem .tpopener table tbody tr td:nth-child(2) {
  color: #3fb6ee;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem .tpopener table tbody tr td:nth-child(3) {
  text-align: center;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem .tpopener table tbody tr td {
  padding: 7px 8px;
  line-height: 1.6;
  vertical-align: top;
  font-weight: 400;
  border: 0;
  border-top: 1px solid #e2e2e2;
  color: #4d4d4d;
  white-space: normal;
  font-size: 13px;
  text-align: left;
  margin: 0;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem .tpopener table tbody tr td a {
  text-decoration: underline;
  font-weight: 800;
  color: #3fb6ee;
  line-height: normal;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  font-size: 13px;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem .tptleft .tplhead {
  color: #4d4d4d;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 21px;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem .tptleft .tplcont {
  font-size: 13px;
  padding-bottom: 5px;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem .tptright {
  padding: 0px 29px;
  margin-top: 20px;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem .tpbtn a {
  color: #3fb6ee;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem.active .tpbtn a .tpbtnicon svg {
  transform: rotate(180deg);
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem .tpbtn a .tpbtnicon {
  padding-left: 10px;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .tpitem .tpbtn a .tpbtnicon svg {
  height: 12px;
  transition: all 0.3s ease-in-out;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .about {
  color: #4d4d4d;
  font-size: 13px;
  line-height: 20px;
  padding-top: 23px;
  padding-bottom: 17px;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .about h2 {
  margin-bottom: 15px;
}

.cmod2 .cmcon .con .tab-area .tcon .tpage .about p {
  margin-bottom: 15px;
}

.cmod2 .cmcon .cfooter {
  display: flex;
  padding: 14px 14px 13px;
}

.cmod2 .cmcon .cfooter .cfleft {
  display: flex;
  flex-grow: 1;
}

.cmod2 .cmcon .cfooter .cfleft a {
  display: block;
  background-color: #ffffff;
  color: #4d4d4d;
  border: 1px solid #4d4d4d;
  border-radius: 30px;
  padding: 14px 25px;
  margin-right: 14px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.cmod2 .cmcon .cfooter .cfleft a:hover {
  background-color: #ececec;
}

.cmod2 .cmcon .cfooter .cfright {
  display: flex;
  justify-content: flex-end;
}

.cmod2 .cmcon .cfooter .cfright a {
  display: block;
  background-color: #6BBE6B;
  color: #fff;
  border: 1px solid #6BBE6B;
  border-radius: 30px;
  padding: 14px 25px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.page-top {
  position: relative;
  z-index: 1;
}
.page-top .ptimg {
  position: relative;
}
.page-top .ptimg img {
  width: 100%;
  display: block;
  height: 374px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-top .ptimg img:nth-child(1) {
  display: block;
}
.page-top .ptimg img:nth-child(2) {
  display: none;
}
@media (max-width: 992px) {
  .page-top .ptimg img:nth-child(1) {
    display: none;
  }
  .page-top .ptimg img:nth-child(2) {
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
    height: initial;
  }
}
.page-top .desceski {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-top .desceski .con h1 {
  color: #ffffff;
  font-size: 27px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  padding-bottom: 16px;
  background-color: rgba(0, 0, 0, 0.4117647059);
  padding: 9px 19px;
  display: inline-block;
  margin-bottom: 12px;
  border-radius: 5px;
}
.page-top .desc .con {
  text-align: center;
  margin-top: 40px;
}
.page-top .desc .con h1 {
  color: #e6b91e;
  font-size: 27px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
.page-top .desc .con h1::after {
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  margin: 12px auto 0;
  background: #f0f0f0;
  border-radius: 1px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04) inset;
  opacity: 0.95;
}

.page-main {
  padding: 45px 0;
  padding-bottom: 0;
}
.page-main .con .detail-content {
  display: block;
}
.page-main .con .detail-content::after {
  content: "";
  display: table;
  clear: both;
}
.page-main .con .detail-content .page-img {
  float: right;
  width: 450px;
  margin-left: 40px;
  margin-bottom: 20px;
}
.page-main .con .detail-content .page-img img {
  width: 100%;
  border-radius: 20px;
  display: block;
}
@media (max-width: 992px) {
  .page-main .con .detail-content .page-img {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }
}
.page-main .con .page-text {
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
}
.page-main .con .page-text p {
  margin-bottom: 15px;
}
.page-main .con .page-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .page-main .con .page-list {
    display: block;
  }
}
.page-main .con .page-list .item {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* keep a max width so columns stay consistent on desktop */
}
@media (max-width: 992px) {
  .page-main .con .page-list .item {
    margin-bottom: 20px;
  }
}
.page-main .con .page-list .item:hover {
  transform: translateY(-6px);
}
.page-main .con .page-list .item:hover a h2 {
  color: #e6b91e;
}
.page-main .con .page-list .item a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.page-main .con .page-list .item .img img {
  /* make image fill item width and be responsive */
  width: 380px;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border: 10px solid #f0f0f0;
  /* inner rounded corners so the image doesn't touch the frame edges */
  border-radius: 14px;
  /* white background behind image to create the 'white ring' effect if image has transparent edges */
  background: #ffffff;
}
@media (max-width: 992px) {
  .page-main .con .page-list .item .img img {
    width: 100%;
    height: auto;
  }
}
.page-main .con .page-list .item h2 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #1d1d1d;
  margin: 0;
  margin-top: 15px;
}

.page-gallery {
  padding-bottom: 60px;
  margin-top: 20px;
}
.page-gallery .gallery-title {
  text-align: center;
  margin-bottom: 40px;
}
.page-gallery .gallery-title h2 {
  color: #e6b91e;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  display: inline-block;
  position: relative;
}
.page-gallery .gallery-title h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  margin: 12px auto 0;
  background: #f0f0f0;
  border-radius: 1px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04) inset;
  opacity: 0.95;
}
.page-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .page-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .page-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .page-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.page-gallery .gallery-grid .gallery-item .thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  background: #fafafa;
}
.page-gallery .gallery-grid .gallery-item .thumb img {
  width: 100%;
  height: 250px;
  display: block;
  transition: transform 0.4s ease;
}
.page-gallery .gallery-grid .gallery-item .thumb .zoom-icon {
  position: absolute;
  right: 12px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 20px;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.25s ease;
}
.page-gallery .gallery-grid .gallery-item .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.28) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.page-gallery .gallery-grid .gallery-item .thumb:hover img {
  transform: scale(1.05);
}
.page-gallery .gallery-grid .gallery-item .thumb:hover .zoom-icon {
  transform: translateY(0);
  opacity: 1;
}
.page-gallery .gallery-grid .gallery-item .thumb:hover::after {
  opacity: 1;
}

.page-contact {
  padding: 29px 0;
  background-color: #fff;
}
.page-contact .contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .page-contact .contact-wrapper {
    flex-direction: column;
  }
}
.page-contact .contact-wrapper .contact-info {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.page-contact .contact-wrapper .contact-info h3 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 22px;
  color: #333;
  border-bottom: 2px solid #e6b91e;
  padding-bottom: 10px;
  display: inline-block;
}
.page-contact .contact-wrapper .contact-info .info-item {
  margin-bottom: 25px;
}
.page-contact .contact-wrapper .contact-info .info-item:last-child {
  margin-bottom: 0;
}
.page-contact .contact-wrapper .contact-info .info-item .label {
  font-size: 14px;
  color: #888;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-contact .contact-wrapper .contact-info .info-item .value {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  line-height: 1.5;
}
.page-contact .contact-wrapper .contact-info .info-item .value a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.page-contact .contact-wrapper .contact-info .info-item .value a:hover {
  color: #e6b91e;
}
.page-contact .contact-wrapper .contact-info .sidebar-map {
  margin-top: 30px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.page-contact .contact-wrapper .contact-info .sidebar-map iframe {
  display: block;
  width: 100%;
  height: 250px;
  pointer-events: none; /* Prevent interaction with small map */
}
.page-contact .contact-wrapper .contact-info .sidebar-map .map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s;
}
.page-contact .contact-wrapper .contact-info .sidebar-map .map-overlay span {
  background: #e6b91e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s;
}
.page-contact .contact-wrapper .contact-info .sidebar-map .map-overlay:hover {
  background: rgba(0, 0, 0, 0.2);
}
.page-contact .contact-wrapper .contact-info .sidebar-map .map-overlay:hover span {
  transform: translateY(0);
  opacity: 1;
}
.page-contact .contact-wrapper .contact-form {
  flex: 1.5;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.page-contact .contact-wrapper .contact-form h3 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 22px;
  color: #333;
  border-bottom: 2px solid #e6b91e;
  padding-bottom: 10px;
  display: inline-block;
}
.page-contact .contact-wrapper .contact-form form .form-group {
  margin-bottom: 20px;
}
.page-contact .contact-wrapper .contact-form form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
}
.page-contact .contact-wrapper .contact-form form .form-group .input,
.page-contact .contact-wrapper .contact-form form .form-group .textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #eee;
  background: #fcfcfc;
  border-radius: 5px;
  font-size: 15px;
  transition: all 0.3s;
}
.page-contact .contact-wrapper .contact-form form .form-group .input:focus,
.page-contact .contact-wrapper .contact-form form .form-group .textarea:focus {
  border-color: #e6b91e;
  background: #fff;
  outline: none;
}
.page-contact .contact-wrapper .contact-form form .form-group .textarea {
  height: 120px;
  resize: vertical;
}
.page-contact .contact-wrapper .contact-form form .form-group .button {
  background: #333;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.page-contact .contact-wrapper .contact-form form .form-group .button:hover {
  background: #e6b91e;
}

.page-feedbacks {
  padding: 20px 0 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.page-feedbacks .feedback-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  margin-bottom: 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.page-feedbacks .feedback-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #e6b91e 0%, #d4a71a 100%);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-feedbacks .feedback-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(230, 185, 30, 0.15);
}
.page-feedbacks .feedback-item:hover::before {
  height: 100%;
}
.page-feedbacks .feedback-item.feedback-featured {
  border: 2px solid #e6b91e;
  background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
}
.page-feedbacks .feedback-item.feedback-featured::before {
  width: 6px;
  height: 100%;
}
.page-feedbacks .feedback-item .feedback-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.page-feedbacks .feedback-item .feedback-avatar {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e6b91e 0%, #f0c83e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(230, 185, 30, 0.3);
  position: relative;
}
.page-feedbacks .feedback-item .feedback-avatar::after {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid rgba(230, 185, 30, 0.2);
  animation: pulse-avatar 2s ease-in-out infinite;
}
.page-feedbacks .feedback-item .feedback-avatar .avatar-icon {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}
.page-feedbacks .feedback-item .feedback-author {
  flex: 1;
}
.page-feedbacks .feedback-item .feedback-author h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #1d1d1d;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}
.page-feedbacks .feedback-item .feedback-author .feedback-role {
  display: inline-block;
  font-size: 14px;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  background: #f8f8f8;
  border-radius: 20px;
}
.page-feedbacks .feedback-item .feedback-content {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}
.page-feedbacks .feedback-item .feedback-content h4 {
  color: #e6b91e;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}
.page-feedbacks .feedback-item .feedback-content h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e6b91e, transparent);
  border-radius: 2px;
}
.page-feedbacks .feedback-item .feedback-content p {
  margin: 0 0 16px 0;
}
.page-feedbacks .feedback-item .feedback-content p:last-child {
  margin-bottom: 0;
}
.page-feedbacks .feedback-item .feedback-content p strong {
  color: #1d1d1d;
  font-weight: 600;
}
@media (max-width: 768px) {
  .page-feedbacks {
    padding: 10px 0 40px;
  }
  .page-feedbacks .feedback-item {
    padding: 25px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
  }
  .page-feedbacks .feedback-item .feedback-header {
    gap: 15px;
  }
  .page-feedbacks .feedback-item .feedback-avatar {
    width: 55px;
    height: 55px;
  }
  .page-feedbacks .feedback-item .feedback-avatar::after {
    width: 61px;
    height: 61px;
  }
  .page-feedbacks .feedback-item .feedback-avatar .avatar-icon {
    font-size: 18px;
  }
  .page-feedbacks .feedback-item .feedback-author h3 {
    font-size: 17px;
  }
  .page-feedbacks .feedback-item .feedback-author .feedback-role {
    font-size: 12px;
    padding: 3px 10px;
  }
  .page-feedbacks .feedback-item .feedback-content {
    font-size: 15px;
    line-height: 1.7;
  }
  .page-feedbacks .feedback-item .feedback-content h4 {
    font-size: 19px;
  }
  .page-feedbacks .feedback-item .feedback-content p {
    margin-bottom: 14px;
  }
}

@keyframes pulse-avatar {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}
.page-blog {
  margin-top: 30px;
}
.page-blog .other-blogs-head {
  color: #e6b91e;
  font-size: 27px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  text-align: center;
  margin-bottom: 15px;
}
.page-blog .other-blogs-head::after {
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  margin: 12px auto 0;
  background: #f0f0f0;
  border-radius: 1px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04) inset;
  opacity: 0.95;
}
.page-blog .blog-list .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.page-blog .blog-list .blog-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}
.page-blog .blog-list .blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.page-blog .blog-list .blog-card .thumb {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f7f7f7;
}
.page-blog .blog-list .blog-card .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-blog .blog-list .blog-card .content {
  padding: 16px;
}
.page-blog .blog-list .blog-card .content .title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
  min-height: 52px;
}
.page-blog .blog-list .blog-card .content .title a {
  color: #1a1a1a;
  text-decoration: none;
}
.page-blog .blog-list .blog-card .content .title a:hover {
  color: #0a7cff;
}
.page-blog .blog-list .blog-card .content .excerpt {
  margin: 0 0 12px;
  color: #555;
  font-size: 0.95rem;
  text-align: justify;
}
.page-blog .blog-list .blog-card .content .read-more {
  display: inline-block;
  background: #e9b24f;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  padding: 10px 14px;
  transition: background 0.2s ease, transform 0.1s ease;
}
.page-blog .blog-list .blog-card .content .read-more:hover {
  background: #d9a342;
  transform: translateY(-1px);
}
.page-blog .blog-list .no-items {
  color: #666;
}

@media (max-width: 1024px) {
  .page-blog .blog-list .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .page-blog .blog-list .blog-grid {
    grid-template-columns: 1fr;
  }
}
.page-login {
  padding: 60px 0;
  /* Forgot modal styles */
  /* global outline button */
}
.page-login .login-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
@media (max-width: 992px) {
  .page-login .login-wrapper {
    grid-template-columns: 1fr;
  }
}
.page-login .login-wrapper .login-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px;
  box-shadow: 0 12px 36px rgba(15, 27, 52, 0.08);
  border: 1px solid rgba(15, 27, 52, 0.04);
}
.page-login .login-wrapper .login-card .login-head {
  margin-bottom: 20px;
}
.page-login .login-wrapper .login-card .login-head h2 {
  color: #0f1b34;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 6px;
}
.page-login .login-wrapper .login-card .login-head p {
  color: #556079;
  font-size: 14px;
  margin: 0;
}
.page-login .login-wrapper .login-card .login-form {
  margin-top: 8px;
}
.page-login .login-wrapper .login-card .login-form .form-group {
  margin-bottom: 18px;
}
.page-login .login-wrapper .login-card .login-form .form-group label {
  display: block;
  font-size: 13px;
  color: #6b7285;
  margin-bottom: 6px;
  font-weight: 600;
}
.page-login .login-wrapper .login-card .login-form .form-group input {
  width: 100%;
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(15, 27, 52, 0.08);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  color: #0f1b34;
  outline: none;
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
  font-size: 15px;
}
.page-login .login-wrapper .login-card .login-form .form-group input:focus {
  border-color: #e9b24f;
  box-shadow: 0 6px 24px rgba(233, 178, 79, 0.14);
}
.page-login .login-wrapper .login-card .login-form .login-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.page-login .login-wrapper .login-card .login-form .login-actions .btn {
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.page-login .login-wrapper .login-card .login-form .login-actions .btn-primary {
  background: #e9b24f;
  color: #0f1b34;
  box-shadow: 0 6px 18px rgba(233, 178, 79, 0.18);
}
.page-login .login-wrapper .login-card .login-form .login-actions .btn-primary:hover {
  transform: translateY(-2px);
}
.page-login .login-wrapper .login-card .login-form .login-actions .btn-primary:active {
  transform: translateY(0);
}
.page-login .login-wrapper .login-card .login-form .login-actions .btn-outline {
  background: transparent;
  color: #0f1b34;
  border: 1px solid rgba(15, 27, 52, 0.06);
  box-shadow: none;
}
.page-login .login-wrapper .login-card .login-form .login-actions .forgot {
  margin-left: auto;
  font-size: 13px;
  color: #0f1b34;
  text-decoration: none;
  opacity: 0.85;
}
.page-login .login-wrapper .login-card .login-form .login-actions .forgot:hover {
  opacity: 1;
  text-decoration: underline;
}
.page-login .login-wrapper .login-card .login-footer {
  margin-top: 18px;
}
.page-login .login-wrapper .login-card .login-footer p {
  margin: 0;
  font-size: 13px;
  color: #556079;
}
.page-login .login-wrapper .login-card .login-footer a {
  color: #0f1b34;
  font-weight: 700;
  text-decoration: none;
}
.page-login .login-wrapper .login-side {
  background: linear-gradient(180deg, #0f1b34, rgb(8.1492537313, 14.6686567164, 28.2507462687));
  border-radius: 14px;
  color: #fff;
  padding: 28px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-login .login-wrapper .login-side .login-side-inner {
  text-align: center;
}
.page-login .login-wrapper .login-side .login-side-inner h3 {
  font-size: 22px;
  margin: 0 0 8px;
  font-weight: 700;
}
.page-login .login-wrapper .login-side .login-side-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}
.page-login .login-wrapper .login-side .dots {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(233, 178, 79, 0.08);
  filter: blur(18px);
}
@media (max-width: 480px) {
  .page-login .login-wrapper {
    gap: 18px;
  }
  .page-login .login-wrapper .login-card {
    padding: 22px;
  }
  .page-login .login-wrapper .login-side {
    padding: 22px;
    min-height: 220px;
  }
}
.page-login .forgot-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
}
.page-login .forgot-modal .forgot-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 52, 0.6);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.page-login .forgot-modal .forgot-modal-card {
  position: relative;
  z-index: 2;
  width: 460px;
  max-width: calc(100% - 40px);
  background: #fff;
  color: #0f1b34;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 24px 64px rgba(15, 27, 52, 0.18);
  border: 1px solid rgba(15, 27, 52, 0.06);
  transition: transform 0.18s ease, opacity 0.18s ease;
  transform: translateY(-8px);
  /* Modal-specific button styles */
}
.page-login .forgot-modal .forgot-modal-card .forgot-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 22px;
  color: #0f1b34;
  cursor: pointer;
}
.page-login .forgot-modal .forgot-modal-card .forgot-modal-head {
  margin-bottom: 12px;
}
.page-login .forgot-modal .forgot-modal-card .forgot-modal-head h2 {
  margin: 0 0 6px;
}
.page-login .forgot-modal .forgot-modal-card .forgot-modal-head p {
  margin: 0;
  color: #556079;
}
.page-login .forgot-modal .forgot-modal-card .forgot-form .form-group {
  margin-bottom: 14px;
}
.page-login .forgot-modal .forgot-modal-card .forgot-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(15, 27, 52, 0.08);
}
.page-login .forgot-modal .forgot-modal-card .forgot-form .forgot-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 6px;
}
.page-login .forgot-modal .forgot-modal-card .forgot-actions .btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, opacity 0.12s ease;
  box-shadow: 0 8px 20px rgba(15, 27, 52, 0.08);
}
.page-login .forgot-modal .forgot-modal-card .forgot-actions .btn-primary {
  background: linear-gradient(180deg, rgb(234.1333333333, 181.9666666667, 88.0666666667), #e9b24f);
  color: #0f1b34;
  border: none;
}
.page-login .forgot-modal .forgot-modal-card .forgot-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(233, 178, 79, 0.18);
}
.page-login .forgot-modal .forgot-modal-card .forgot-actions .btn-primary:active {
  transform: translateY(0);
}
.page-login .forgot-modal .forgot-modal-card .forgot-actions .btn-outline {
  color: #0f1b34;
  background: transparent;
  border: 1px solid rgba(15, 27, 52, 0.06);
}
.page-login .forgot-modal .forgot-modal-card .forgot-actions .btn-outline:hover {
  background: rgba(15, 27, 52, 0.02);
}
.page-login .forgot-modal .forgot-modal-card .forgot-actions .btn[disabled], .page-login .forgot-modal .forgot-modal-card .forgot-actions .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.page-login .forgot-modal .forgot-modal-card .forgot-actions .btn:focus {
  outline: none;
  box-shadow: 0 8px 20px rgba(233, 178, 79, 0.12), 0 0 0 3px rgba(233, 178, 79, 0.08);
}
.page-login .forgot-modal .forgot-modal-card .forgot-actions .btn:active {
  transform: translateY(0);
}
.page-login .forgot-modal.show {
  display: flex;
}
.page-login .forgot-modal.show .forgot-modal-card {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 480px) {
  .page-login .forgot-modal .forgot-modal-card {
    padding: 16px;
  }
}
.page-login .btn-outline {
  background: transparent;
  color: #0f1b34;
  border: 1px solid rgba(15, 27, 52, 0.06);
  border-radius: 10px;
  padding: 10px 14px;
}

.page-profile {
  padding: 50px 0;
}
.page-profile .profile-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
}
@media (max-width: 992px) {
  .page-profile .profile-wrapper {
    grid-template-columns: 1fr;
  }
}
.page-profile .profile-sidebar {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 27, 52, 0.06);
  border: 1px solid rgba(15, 27, 52, 0.04);
}
.page-profile .profile-sidebar .avatar-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.page-profile .profile-sidebar .avatar-wrap .avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1b34, rgb(8.1492537313, 14.6686567164, 28.2507462687));
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-profile .profile-sidebar .avatar-wrap .avatar svg {
  width: 46px;
  height: 46px;
  display: block;
}
.page-profile .profile-sidebar .avatar-wrap .avatar-info h3 {
  margin: 0;
  color: #0f1b34;
  font-size: 17px;
}
.page-profile .profile-sidebar .avatar-wrap .avatar-info p {
  margin: 3px 0 0;
  color: #6b7285;
  font-size: 13px;
}
.page-profile .profile-sidebar .profile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-profile .profile-sidebar .profile-nav li {
  margin-bottom: 10px;
}
.page-profile .profile-sidebar .profile-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #0f1b34;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.18s ease, transform 0.12s ease;
}
.page-profile .profile-sidebar .profile-nav a:hover {
  background: #f5f7fb;
  transform: translateX(4px);
}
.page-profile .profile-sidebar .profile-nav a.logout {
  color: #fff;
  background: #e9b24f;
  display: inline-block;
  text-align: center;
}
.page-profile .profile-content {
  display: grid;
  gap: 22px;
}
.page-profile .profile-content .card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(15, 27, 52, 0.04);
  box-shadow: 0 8px 20px rgba(15, 27, 52, 0.04);
}
.page-profile .profile-content .section-title {
  color: #0f1b34;
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}
.page-profile .profile-content .profile-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 10px;
}
.page-profile .profile-content .profile-form .row.single .col {
  grid-column: 1/-1;
}
.page-profile .profile-content .profile-form .col {
  display: block;
}
.page-profile .profile-content .profile-form label {
  display: block;
  font-size: 13px;
  color: #6b7285;
  margin-bottom: 6px;
  font-weight: 600;
}
.page-profile .profile-content .profile-form input[type=text],
.page-profile .profile-content .profile-form input[type=email],
.page-profile .profile-content .profile-form input[type=password],
.page-profile .profile-content .profile-form input[type=date],
.page-profile .profile-content .profile-form select,
.page-profile .profile-content .profile-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid rgba(15, 27, 52, 0.08);
  background: #fff;
  font-size: 14px;
  color: #0f1b34;
  transition: box-shadow 0.12s ease, border-color 0.12s ease;
}
.page-profile .profile-content .profile-form input[type=text]:focus,
.page-profile .profile-content .profile-form input[type=email]:focus,
.page-profile .profile-content .profile-form input[type=password]:focus,
.page-profile .profile-content .profile-form input[type=date]:focus,
.page-profile .profile-content .profile-form select:focus,
.page-profile .profile-content .profile-form textarea:focus {
  border-color: #e9b24f;
  box-shadow: 0 8px 20px rgba(233, 178, 79, 0.08);
  outline: none;
}
.page-profile .profile-content .profile-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #000 50%), linear-gradient(135deg, #000 50%, transparent 50%);
  padding-right: 36px;
  background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.page-profile .profile-content .profile-form textarea {
  resize: vertical;
}
.page-profile .profile-content .profile-form .actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.page-profile .profile-content .profile-form .btn {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}
.page-profile .profile-content .profile-form .btn-primary {
  background: #e9b24f;
  color: #0f1b34;
}
.page-profile .profile-content .videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 768px) {
  .page-profile .profile-content .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .page-profile .profile-content .videos-grid {
    grid-template-columns: 1fr;
  }
}
.page-profile .profile-content .videos-grid .video-item {
  background: #f5f7fb;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  padding: 8px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.page-profile .profile-content .videos-grid .video-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 27, 52, 0.08);
}
.page-profile .profile-content .videos-grid .video-item .thumb {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 27, 52, 0.04), rgba(233, 178, 79, 0.04));
  height: 160px;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}
.page-profile .profile-content .videos-grid .video-item .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.28s ease;
}
.page-profile .profile-content .videos-grid .video-item .thumb .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(15, 27, 52, 0.16);
  transition: transform 0.18s ease, opacity 0.12s ease;
}
.page-profile .profile-content .videos-grid .video-item .thumb .play svg {
  display: block;
}
.page-profile .profile-content .videos-grid .video-item:hover .thumb img {
  transform: scale(1.06);
}
.page-profile .profile-content .videos-grid .video-item:hover .thumb .play {
  transform: translate(-50%, -50%) scale(1.06);
}
.page-profile .profile-content .videos-grid .video-item .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0f1b34;
  font-weight: 600;
}
.page-profile .profile-content .videos-grid .video-item .meta strong {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 70%;
}
.page-profile .profile-content .videos-grid .video-item .meta .muted {
  color: #6b7285;
  font-size: 13px;
  font-weight: 600;
}
.page-profile .profile-content .videos-grid .video-empty {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(233, 178, 79, 0.04), rgba(15, 27, 52, 0.02));
  min-height: 120px;
}
.page-profile .profile-content .videos-grid .video-empty .empty-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: column;
  text-align: center;
}
.page-profile .profile-content .videos-grid .video-empty .empty-inner p {
  margin: 0;
  color: #6b7285;
  font-size: 15px;
  font-weight: 700;
}
.page-profile .profile-content .videos-grid .video-empty .empty-inner svg {
  width: 56px;
  height: 56px;
  display: block;
  fill: rgba(15, 27, 52, 0.12);
}

.page-register {
  padding: 56px 0;
  /* form column stacks on smaller screens */
}
.page-register .register-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 27, 52, 0.08);
  border: 1px solid rgba(15, 27, 52, 0.04);
}
.page-register .section-title {
  margin: 0 0 14px;
  font-size: 20px;
  color: #0f1b34;
  font-weight: 700;
}
.page-register .row {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.page-register .row.single {
  display: block;
}
.page-register .col {
  flex: 1;
}
.page-register .col.actions {
  text-align: right;
}
.page-register label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #6b7285;
  font-weight: 700;
}
.page-register input[type=text], .page-register input[type=email], .page-register input[type=password], .page-register input[type=date], .page-register select, .page-register textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(15, 27, 52, 0.08);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  color: #0f1b34;
  outline: none;
  font-size: 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  box-sizing: border-box;
}
.page-register input.is-invalid, .page-register select.is-invalid, .page-register textarea.is-invalid {
  border-color: #c0392b !important;
  box-shadow: 0 6px 18px rgba(192, 57, 43, 0.08) !important;
}
.page-register .invalid-message {
  color: #c0392b;
  font-size: 12px;
  margin-top: 6px;
  display: block;
}
.page-register textarea {
  min-height: 90px;
  resize: vertical;
}
.page-register input:focus, .page-register select:focus, .page-register textarea:focus {
  border-color: #e9b24f;
  box-shadow: 0 8px 28px rgba(233, 178, 79, 0.12);
}
.page-register .btn-primary {
  background: #e9b24f;
  color: #0f1b34;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 800;
  border: none;
  box-shadow: 0 7px 24px rgba(233, 178, 79, 0.18);
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.page-register .btn-primary:hover {
  transform: translateY(-2px);
}
.page-register #registerMsg {
  margin-top: 12px;
  font-size: 13px;
}
.page-register .text-error {
  color: #c0392b;
}
.page-register .text-success {
  color: #27ae60;
}
.page-register .hint {
  font-size: 13px;
  color: #556079;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .page-register .row {
    display: block;
  }
  .page-register .col {
    width: 100%;
  }
  .page-register .register-card {
    padding: 22px;
  }
  .page-register .section-title {
    text-align: left;
  }
}

.docview {
  display: flex;
  align-items: center;
  justify-content: center;
}
.docview .dvcon {
  position: relative;
  width: 1131px;
  height: 1600px;
  background-image: url(../img/cert-bg.jpg);
}
.docview .dvcon .ad_soyad {
  position: absolute;
  top: 590px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 45px;
  font-weight: 900;
  color: #000;
}
.docview .dvcon .cert_type {
  position: absolute;
  top: 896px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 39px;
  font-weight: 500;
  color: #000;
}
.docview .dvcon .course_no {
  position: absolute;
  top: 1242px;
  left: 245px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
.docview .dvcon .course_date {
  position: absolute;
  top: 1264px;
  left: 245px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
.docview .dvcon .cert_no {
  position: absolute;
  top: 1286px;
  left: 245px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
.docview .dvcon .qrimg {
  position: absolute;
  top: 1121px;
  left: 472px;
  width: 190px;
  height: 190px;
}
.docview .dvcon .qrimg img {
  display: block;
  width: 100%;
  height: 100%;
}

.belge-dogrulama {
  padding: 50px 0 120px;
}
.belge-dogrulama .bdcon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.belge-dogrulama .bdcon .bdcard {
  width: 100%;
  max-width: 720px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
}
.belge-dogrulama .bdcon .bdcard .bdh {
  text-align: center;
}
.belge-dogrulama .bdcon .bdcard .bdh h2 {
  font-size: 28px;
  margin-bottom: 6px;
  color: #0a0a0a;
}
.belge-dogrulama .bdcon .bdcard .bdh p {
  color: #6b6b6b;
  margin-bottom: 24px;
}
.belge-dogrulama .bdcon .bdcard .bdinput {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.belge-dogrulama .bdcon .bdcard .bdinput input.cert_no_input {
  width: 100%;
  max-width: 480px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #e3e3e3;
  font-size: 16px;
}
.belge-dogrulama .bdcon .bdcard .bdcontrols {
  display: flex;
  justify-content: center;
}
.belge-dogrulama .bdcon .bdcard .bdcontrols {
  display: flex;
  justify-content: center;
}
.belge-dogrulama .bdcon .bdcard .btn-sorgula {
  background: linear-gradient(90deg, #ffb347 0%, #ff7e5f 100%);
  color: #0f1b34;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 800;
  border: none;
  box-shadow: 0 12px 30px rgba(255, 126, 95, 0.18);
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, opacity 0.12s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.belge-dogrulama .bdcon .bdcard .btn-sorgula:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 126, 95, 0.22);
}
.belge-dogrulama .bdcon .bdcard .btn-sorgula:active {
  transform: translateY(0);
}
.belge-dogrulama .bdcon .bdcard .btn-sorgula .ico {
  width: 18px;
  height: 18px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.belge-dogrulama .bdcon .bdcard .btn-sorgula .ico--search {
  /* Inline SVG (white search icon) to avoid missing asset */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23ffffff' d='M15.5 14h-.79l-.28-.27A6.474 6.474 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.22-1.55l.27.28v.79l5 5L20.49 19l-5-5z'/></svg>");
}
.belge-dogrulama .bdcon .bdcard .btn-sorgula.loading {
  opacity: 0.9;
  pointer-events: none;
}
.belge-dogrulama .bdcon .bdcard .btn-sorgula.loading::after {
  content: "";
  position: absolute;
  right: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(15, 27, 52, 0.12);
  border-top-color: #0f1b34;
  animation: bdspin 800ms linear infinite;
}
@keyframes bdspin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.belge-dogrulama .bdcon .bdcard .bdmsg {
  display: none;
  margin-top: 16px;
  text-align: center;
  font-weight: 600;
}
.belge-dogrulama .bdcon .bdcard .bdmsg.error {
  color: #d63636;
}
.belge-dogrulama .bdcon .bdcard .bdmsg.success {
  color: #2aa55b;
}
.belge-dogrulama .bdcon .bdcard .bdresult {
  display: none;
  margin-top: 20px;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(15, 27, 52, 0.06);
  background: linear-gradient(180deg, #ffffff 0%, #fbfff8 100%);
  box-shadow: 0 8px 28px rgba(15, 27, 52, 0.04);
}
.belge-dogrulama .bdcon .bdcard .bdresult .dresult-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.belge-dogrulama .bdcon .bdcard .bdresult .ok-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #2aa55b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 24px rgba(42, 165, 91, 0.14);
}
.belge-dogrulama .bdcon .bdcard .bdresult .result-title h3 {
  margin: 0;
  font-weight: 800;
  color: #0f1b34;
}
.belge-dogrulama .bdcon .bdcard .bdresult .result-title p {
  margin: 0;
  color: #556079;
  font-weight: 600;
}
.belge-dogrulama .bdcon .bdcard .bdresult .result-actions {
  margin-left: auto;
  display: flex;
  gap: 10px;
}
.belge-dogrulama .bdcon .bdcard .bdresult .result-actions .btn {
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 700;
}
.belge-dogrulama .bdcon .bdcard .bdresult .result-actions .btn.btn-outline {
  background: transparent;
  border: 1px solid rgba(15, 27, 52, 0.08);
  color: #0f1b34;
}
.belge-dogrulama .bdcon .bdcard .bdresult .result-actions .btn.btn-primary {
  background: linear-gradient(90deg, #84e1a5, #2aa55b);
  border: none;
  color: #fff;
}
.belge-dogrulama .bdcon .bdcard .bdresult .bddetail dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-gap: 8px 18px;
  font-size: 15px;
}
.belge-dogrulama .bdcon .bdcard .bdresult .bddetail dt {
  color: #556079;
  font-weight: 700;
}
.belge-dogrulama .bdcon .bdcard .bdresult .bddetail dd {
  margin: 0;
  color: #0f1b34;
  font-weight: 800;
}

@media (max-width: 768px) {
  .belge-dogrulama {
    padding: 40px 0 60px;
  }
  .belge-dogrulama .bdcard {
    padding: 28px;
  }
}
.ebulten {
  background: #ffffff;
  padding: 16px 0;
  margin-bottom: 0px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.ebulten .ebulten-container {
  max-width: 1200px;
  margin: 0 auto;
}
.ebulten .ebulten-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 992px) {
  .ebulten .ebulten-content {
    flex-direction: column;
    text-align: center;
  }
}
.ebulten .ebulten-left {
  flex: 1;
}
.ebulten .ebulten-left .ebulten-title {
  color: #282546;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 2px 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .ebulten .ebulten-left .ebulten-title {
    font-size: 24px;
  }
}
.ebulten .ebulten-left .ebulten-desc {
  color: #666666;
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .ebulten .ebulten-left .ebulten-desc {
    font-size: 14px;
  }
}
.ebulten .ebulten-right {
  flex: 1.2;
  max-width: 650px;
}
@media (max-width: 992px) {
  .ebulten .ebulten-right {
    max-width: 100%;
    width: 100%;
  }
}
.ebulten .ebulten-form {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .ebulten .ebulten-form {
    flex-direction: column;
  }
}
.ebulten .ebulten-form .form-group {
  flex: 1;
  min-width: 0;
}
.ebulten .ebulten-form .form-control {
  width: 100%;
  height: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(233, 178, 79, 0.3);
  border-radius: 8px;
  font-size: 15px;
  background: #ffffff;
  color: #282546;
  transition: all 0.3s ease;
}
.ebulten .ebulten-form .form-control::-moz-placeholder {
  color: #999;
}
.ebulten .ebulten-form .form-control::placeholder {
  color: #999;
}
.ebulten .ebulten-form .form-control:focus {
  outline: none;
  border-color: #e9b24f;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(233, 178, 79, 0.1);
}
.ebulten .ebulten-form .form-control:hover {
  border-color: rgba(233, 178, 79, 0.5);
}
.ebulten .ebulten-form .btn-submit {
  padding: 14px 32px;
  background: #e9b24f;
  color: #282546;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 150px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .ebulten .ebulten-form .btn-submit {
    width: 100%;
  }
}
.ebulten .ebulten-form .btn-submit:hover:not(:disabled) {
  background: #f5d171;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 178, 79, 0.4);
}
.ebulten .ebulten-form .btn-submit:active:not(:disabled) {
  transform: translateY(0);
}
.ebulten .ebulten-form .btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.ebulten .ebulten-form .btn-submit .spinner {
  animation: rotate 2s linear infinite;
  width: 18px;
  height: 18px;
}
.ebulten .ebulten-form .btn-submit .spinner .path {
  stroke: #282546;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}/*# sourceMappingURL=style.css.map */