body,
html {
    font-size: 16px;
    color: #797979;
    font-family: Lato, Arial, Helvetica, Trebuchet MS, sans-serif;
    vertical-align: baseline;
    line-height: 26px;
    font-weight: 400;
}

 :root { --gap: 1.5rem; }

    /* ---------- desktop / landscape-tablet ---------- */
    @media (min-width: 769px) {
      .gallery-grid            {   /* Pinterest-style masonry */
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      }
	  
      .gallery-grid figure { 
		overflow: hidden;
		position: relative;
		cursor:pointer;
	  }	 
	  
	        .gallery-grid figure:hover { 
		border: 10px solid #BFA76F;
	  }	
	  
      .gallery-grid img        {
        width: 100%; display: block;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,.08);
        opacity: 0; transform: translateY(32px);
        transition: opacity .6s ease, transform .6s ease,
                    filter .4s ease, box-shadow .4s ease;
      }
      /* fade-up when in view (added by JS) */
      .gallery-grid img.in-view { opacity: 1; transform: translateY(0); }

      /* pleasant hover */
      .gallery-grid img:hover   {
        transform: scale(1.05);
        box-shadow: 0 12px 24px rgba(0,0,0,.12);
        filter: saturate(1.1);
		
      }	 

      /* hide the mobile slider */
      .gallery-slider { display: none !important; }
    }
	
#img-popup {
    position: fixed;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-overlay {
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 8888;
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 47px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 2;
    user-select: none;
}

.close-btn:hover {
  color: red;
}

.popup-content {
  position: relative;
  padding: 10px;
  background: white;
  border: 5px solid #333;
  z-index: 1;
  max-width: 90%;
  max-height: 90%;
}

.popup-content img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

/* Hide initially */
.hidden {
  display: none !important;
  pointer-events: none;
}

    /* ---------- phone / small-tablet ---------- */
    @media (max-width: 768px) {
      /* hide the desktop grid */
      .gallery-grid { display: none !important; }

      /* a little breathing-room so slides don’t hug the edge */
      .gallery-slider { padding-inline: 8px; }

      .swiper-slide   { width: 100%; }             /* force full-width slides */
      .swiper img     { width: 100%; border-radius: 10px; }
    }

    /* ---------- shared basics ---------- */
    .gallery    { 
		max-width: 1050px; 
		margin-inline: auto; 
	}

  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
  }
  .video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
  }


.award-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;          
  text-decoration: none;
  color: inherit;       
}

.award-links svg {
  flex-shrink: 0;       
}

.award-links span {
  line-height: 1;       
}
.award-picture-top{
		display:none;
}


a.article-content {  
  text-decoration: none !important;
  margin-right: 5px;
  position: relative;
    top: 3px;
}

header.sticky a.article-content .main-menu-fa {
  color: white !important;
}

a.article-content .main-menu-fa {
    background: linear-gradient(135deg, #c4a052 0%, #a68942 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



a.article-content:hover,
a.article-content:focus {
  color: white !important;
  text-decoration: none !important;
}

a {
    transition: all 0.3s;
    text-decoration: none;
}
a:hover {
    text-decoration: none;    
}
a:active {
    outline: 0;
    text-decoration: none;
}
a:focus {
    outline: 0 solid;
    text-decoration: none;
}
p {
    margin: 0 0 26px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 26px;
    font-weight: 600;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
input {
    box-shadow: none;
    border-radius: 0;
    outline: 0;
}
input:focus {
    outline: 0;
    box-shadow: none;
}
input:active {
    outline: 0;
    box-shadow: none;
}
textarea {
    outline: 0;
    box-shadow: none;
    border-radius: 0;
}
textarea:focus {
    outline: 0;
    box-shadow: none;
}
textarea:active {
    outline: 0;
    box-shadow: none;
}
button {
    outline: 0;
    box-shadow: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
button:focus {
    outline: 0;
    box-shadow: none;
    border: none;
}
button:active {
    outline: 0;
    box-shadow: none;
    border: none;
}
#loader_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999999;
}
.loader {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    margin: auto;
    border: 2px solid #ededed;
    border-top: 4px solid #BFA76F;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

.goldtext{
	/* #ebb133 */
color:#BFA76F;
}

.goldtext:hover{
	/* #ebb133 */
color:#BFA76F;
}

.w-50 {
    width: 50%;
}
::-moz-selection {
    background: #00c3ff;
    text-shadow: none;
}
::selection {
    background: #00c3ff;
    text-shadow: none;
}
.browserupgrade {
    margin: 26px 0;
    background: #00c3ff;
    color: #333;
    padding: 26px 0;
}
.menu-fa {
    font-size: 28px;
    color: #c4a052;
    padding-right: 20px;
}
.main-menu-fa {
    position: relative;
    top: 5px;
    font-size: 28px;
}
.mobile-fa {
    font-size: 28px;
    padding-left: 10px;
}
.font60 {
    font-size: 60px;
    font-weight: 600;
}
.font22 {
    font-size: 23px;
}
h1 {
    font-size: 36px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 18px;
}
.f-16 {
    font-size: 16px;
}
.f-18 {
    font-size: 18px;
}
.f-20 {
    font-size: 20px;
}
.f-22 {
    font-size: 22px;
}
.f-24 {
    font-size: 24px;
}
.f-26 {
    font-size: 26px;
}
.f-28 {
    font-size: 28px;
}
.f-30 {
    font-size: 30px;
}
.f-36 {
    font-size: 36px;
}
.f-40 {
    font-size: 40px;
}
.f-48 {
    font-size: 48px;
}
.f-60 {
    font-size: 60px;
}
.f-72 {
    font-size: 72px;
}
.t-u {
    text-transform: uppercase;
}
.t-c {
    text-transform: capitalize;
}
.section {
    padding: 100px 0;
    display: block;
    position: relative;
    overflow: hidden;
}
.section2 {
    padding: 100px 0 50px;
    display: block;
    position: relative;
    overflow: hidden;
}
.section3 {
    padding: 100px 0 70px;
    display: block;
    position: relative;
    overflow: hidden;
}
.section-heading-two {
    display: block;
    position: relative;
    text-align: right;
    margin: 0 0 60px;
}
.section-heading-two:after {
    content: "";
    position: absolute;
    width: 40px;
    top: -140px;
    height: 140px;
    background: #f2f2f2;
    right: 0;
}
.section-heading-two:before {
    content: "";
    position: absolute;
    width: 40px;
    top: 8px;
    height: 6px;
    background: #BFA76F;
    right: 0;
}
.section-heading-two h2 {
    font-family: Abel, Trebuchet MS, sans-serif;
    font-size: 48px;
    text-transform: uppercase;
    color: #212121;
    font-weight: 500;
    margin: 0 0 15px;
    display: block;
    padding-top: 38px;
}
.section-heading-two h2 span {
    color: #b88b28;
}
.section-heading-two p {
    margin: 0;
}
.section-heading-three {
    display: block;
    position: relative;
    margin: 0 0 60px;
}
.section-heading-three:after {
    content: "";
    position: absolute;
    width: 40px;
    top: -140px;
    height: 140px;
    background: #f2f2f2;
    left: 0;
}
.section-heading-three:before {
    content: "";
    position: absolute;
    width: 40px;
    top: 8px;
    height: 6px;
    background: #BFA76F;
    left: 0;
}
.section-heading-three h2 {
    font-family: Abel, Trebuchet MS, sans-serif;
    font-size: 48px;
    text-transform: uppercase;
    color: #212121;
    font-weight: 500;
    margin: 0 0 15px;
    display: block;
    padding-top: 38px;
}
.section-heading-three h2 span {
    color: #b88b28;
}
.section-heading-three p {
    margin: 0;
}
.section-heading-four {
    display: block;
    position: relative;
    margin: 0 0 60px;
    z-index: 999;
}
.section-heading-four:after {
    content: "";
    position: absolute;
    width: 40px;
    top: -140px;
    height: 140px;
    background: #212121;
    left: 0;
    opacity: 0.5;
}
.section-heading-four:before {
    content: "";
    position: absolute;
    width: 40px;
    top: 8px;
    height: 6px;
    background: #BFA76F;
    left: 0;
}
.section-heading-four h2 {
    font-family: Abel, Trebuchet MS, sans-serif;
    font-size: 48px;
    text-transform: uppercase;
    color: #212121;
    font-weight: 500;
    margin: 0 0 15px;
    display: block;
    padding-top: 38px;
    color: #fff;
}
.section-heading-four h2 span {
    color: #BFA76F;
}
.section-heading-four p {
    margin: 0;
}
.section-heading-five {
    display: block;
    position: relative;
    text-align: right;
    margin: 0 0 60px;
	z-index:999;
}
.section-heading-five:after {
    content: "";
    position: absolute;
    width: 40px;
    top: -140px;
    height: 140px;
    background: #797979;
    right: 0;
    opacity: 0.5;
}
.section-heading-five:before {
    content: "";
    position: absolute;
    width: 40px;
    top: 8px;
    height: 6px;
    background: #BFA76F;
    right: 0;
}
.section-heading-five h2 {
    font-family: Abel, Trebuchet MS, sans-serif;
    font-size: 48px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    margin: 0 0 15px;
    display: block;
    padding-top: 38px;
}
.section-heading-five h2 span {
    color: #BFA76F;
}
.section-heading-five p {
    margin: 0;
}
.btn1 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
    line-height: 50px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 37px;
    border-radius: 50px;
    height: 50px;
}
.btn1:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 50px;
    /* background: #BFA76F; */
    background: linear-gradient(135deg, #c4a052 0%, #a68942 100%); 
    transition: all 0.3s;
}
.btn1 span {
    position: relative;
    display: block;
    z-index: 999;
}
.btn1:hover {
    text-shadow: 0 5px 8px rgba(0, 0, 0, 0.6);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 160, 82, 0.4) !important;
}

.btn2 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
    line-height: 50px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 37px;
    border-radius: 50px;
    height: 50px;
}
.btn2:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 50px;
    /*background: #BFA76F; */
    background: linear-gradient(135deg, #c4a052 0%, #a68942 100%); 
    transition: all 0.3s;
}
.btn2 span {
    position: relative;
    display: block;
    z-index: 999;
}
.btn2:hover {    
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 160, 82, 0.4) !important;
}
.btn3 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
    line-height: 50px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 37px;
    border-radius: 50px;
    height: 50px;
    border-radius: 50px;
}
.btn3:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 50px;
    /* background: #BFA76F; */
    background: linear-gradient(135deg, #c4a052 0%, #a68942 100%); 
    transition: all 0.3s;
    border-radius: 50px;
}
.btn3 span {
    position: relative;
    display: block;
    z-index: 999;
}
.btn3:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 160, 82, 0.4) !important;
}
.list-inline li {
    display: inline-block;
}
.af-be:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.af-be:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.af:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}
.be:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.bg-img {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.bg2-img {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.bg-img-mod {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center -500px !important;
}
.floatright {
    float: right;
}
.t-0 {
    top: 0;
}
.r-0 {
    right: 0;
}
.mr-0 {
    margin: 0;
}
.mr-t0 {
    margin-top: 0;
}
.mr-t5 {
    margin-top: 5px;
}
.mr-t10 {
    margin-top: 10px;
}
.mr-t15 {
    margin-top: 15px;
}
.mr-t20 {
    margin-top: 20px;
}
.mr-t25 {
    margin-top: 25px;
}
.mr-t30 {
    margin-top: 30px;
}
.mr-t35 {
    margin-top: 35px;
}
.mr-t40 {
    margin-top: 40px;
}
.mr-t45 {
    margin-top: 45px;
}
.mr-t50 {
    margin-top: 50px;
}
.mr-t60 {
    margin-top: 60px;
}
.mr-t70 {
    margin-top: 70px;
}
.mr-t80 {
    margin-top: 80px;
}
.mr-t90 {
    margin-top: 90px;
}
.mr-t100 {
    margin-top: 100px;
}
.mr-t110 {
    margin-top: 110px;
}
.mr-t120 {
    margin-top: 120px;
}
.mr-t130 {
    margin-top: 130px;
}
.mr-t140 {
    margin-top: 140px;
}
.mr-t150 {
    margin-top: 150px;
}
.mr-r0 {
    margin-right: 0;
}
.mr-r5 {
    margin-right: 5px;
}
.mr-r10 {
    margin-right: 10px;
}
.mr-r15 {
    margin-right: 15px;
}
.mr-r20 {
    margin-right: 20px;
}
.mr-r25 {
    margin-right: 25px;
}
.mr-r30 {
    margin-right: 30px;
}
.mr-r35 {
    margin-right: 35px;
}
.mr-r40 {
    margin-right: 40px;
}
.mr-r45 {
    margin-right: 45px;
}
.mr-r50 {
    margin-right: 50px;
}
.mr-r60 {
    margin-right: 60px;
}
.mr-r70 {
    margin-right: 70px;
}
.mr-r80 {
    margin-right: 80px;
}
.mr-r90 {
    margin-right: 90px;
}
.mr-r100 {
    margin-right: 100px;
}
.mr-r110 {
    margin-right: 110px;
}
.mr-r120 {
    margin-right: 120px;
}
.mr-r130 {
    margin-right: 130px;
}
.mr-r140 {
    margin-right: 140px;
}
.mr-r150 {
    margin-right: 150px;
}
.mr-0 {
    margin: 0;
}
.mr-5 {
    margin: 5px;
}
.mr-10 {
    margin: 10px;
}
.mr-15 {
    margin: 15px;
}
.mr-20 {
    margin: 20px;
}
.mr-25 {
    margin: 25px;
}
.mr-30 {
    margin: 30px;
}
.mr-35 {
    margin: 35px;
}
.mr-40 {
    margin: 40px;
}
.mr-45 {
    margin: 45px;
}
.mr-50 {
    margin: 50px;
}
.mr-60 {
    margin: 60px;
}
.mr-70 {
    margin: 70px;
}
.mr-80 {
    margin: 80px;
}
.mr-90 {
    margin: 90px;
}
.mr-100 {
    margin: 100px;
}
.mr-110 {
    margin: 110px;
}
.mr-120 {
    margin: 120px;
}
.mr-130 {
    margin: 130px;
}
.mr-140 {
    margin: 140px;
}
.mr-150 {
    margin: 150px;
}
header {
    overflow: hidden;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    transition: all 0.3s;
}
header .logo a {
    display: inline-block;
    margin-left: 40px;
}
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000d4;
    overflow: visible;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);    
}

@media only screen and (max-width: 700px) {
    header.sticky {
        background: #00000050;
        border-bottom: 1px solid rgba(196, 160, 82, 0.2);
    }
}

header.sticky .logo {
    position: absolute;
    top: 0;
}
header.sticky .logo a {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    width: 70%;
}
header.sticky .main-menu-tab {
    margin-top: 0;
}
header.sticky .main-menu-tab .menu-buttons:after {
    display: none;
}
header.sticky .main-menu-tab .menu-buttons li a {
    color: #ffffff;
}
header.sticky .main-menu-tab .menu-buttons li .menu-btn:after {
    background: url(images/icons/3.png) no-repeat center;
}
header.sticky .main-menu-tab .menu-buttons li .menu {
    display: block;
}
header.sticky .main-menu-tab .menu-buttons li .menu li a {
    color: #212121;
}
header.sticky .main-menu-tab .menu-buttons li .menu li a:hover {
    color: #fff;
}
header.sticky .main-menu-tab .menu-buttons li .btn2 {
    color: #fff;
}
header .mobile-menu-area {
    display: none;
}
header .main-menu-tab {
    margin-top: 70px;
    display: block;
}
header .main-menu-tab .menu-buttons {
    position: relative;
    display: inline-block;
    line-height: 80px;
    padding: 0 30px 0 45px;
}
header .main-menu-tab .menu-buttons:after {
    content: "";
    position: absolute;
    left: 0;
    right: -100%;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
}
header .main-menu-tab .menu-buttons li {
    position: relative;
    z-index: 999;
}
header .main-menu-tab .menu-buttons li .menu-btn {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    letter-spacing: 3px;
    display: inline-block;
    padding-left: 30px;
    line-height: 40px;
    float: none;
}
header .main-menu-tab .menu-buttons li .my_navi li:first-child a {
    float: none;
}
header .main-menu-tab .menu-buttons li .menu-btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: url(images/icons/2.png) no-repeat center;
}
header .main-menu-tab .menu-buttons li .menu {
    display: none;
}
header .main-menu-tab .menu-buttons li .menu.active-menu {
    display: block;
}
header .main-menu-tab .menu-buttons li .menu li {
    padding: 0;
}
header .main-menu-tab .menu-buttons li .menu li a {
    line-height: 80px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    padding: 0 10px;
}

/* header .main-menu-tab .menu-buttons li .my_navi li:hover {
    background: #BFA76F;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
} */

header .main-menu-tab .menu-buttons li .my_navi li {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
header .main-menu-tab .menu-buttons li .my_navi li a {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    text-transform: capitalize;
}
header .main-menu-tab .menu-buttons li .my_navi li:hover a {
    color: #fff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
header .main-menu-tab .menu-buttons li .btn2 {
    line-height: 40px;
    padding: 0 20px;
    height: 40px;
    font-size: 12px;
}
header .main-menu-tab .menu-buttons li .btn2:hover {
    box-shadow: none;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.slider-area {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 102%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.slider-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
}


/* Prevent animations during loader */
body.loading .slider-content .contentarea,
body.loading .slider-content h2,
body.loading .slider-content h1,
body.loading .slider-content .btn1,
body.zooming-video .slider-content .contentarea,
body.zooming-video .slider-content h2,
body.zooming-video .slider-content h1,
body.zooming-video .slider-content .btn1 {
  animation: none !important;
  opacity: 0;
}

/* Animations only after loader finishes */
body.loaded .slider-content .contentarea {
  animation: fadeInUp 1.2s ease-out;
}

body.loaded .slider-content h2 {
  animation: fadeInUp 1.2s ease-out 0.2s backwards;
}

body.loaded .slider-content h1 {
  animation: fadeInUp 1.2s ease-out 0.4s backwards;
}

body.loaded .slider-content .btn1 {
  animation: fadeInUp 1.2s ease-out 0.6s backwards;
}

/* Base styling (no animations here) */
.slider-content .contentarea {
  text-align: center;
  color: white;
}

.slider-content h2 {
  font-size: clamp(32px, 6vw, 60px); 
  margin: 0 0 15px 0;
}

.slider-content h1 {
  font-size: clamp(14px, 2.5vw, 22px);
  margin: 0 0 20px 0;
}

.slider-content .btn1 {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(14px, 2vw, 16px);
}
/* Entrance Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .slider-content {
    padding-bottom: 40px;
  }
  
  .slider-content h2 {
    margin-bottom: 10px;
  }
  
  .slider-content h1 {
    margin-bottom: 0px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .slider-content {
    padding-bottom: 70px;
  }
}


.about-area:after {
    background: rgba(0, 0, 0, 0.8);
}
.about-area .about-img {
    position: relative;
    z-index: 999;
}
.about-area .about-img .about-pic {
    margin: 0 0 15px;
    display: block;
}
.about-area .about-img .about-pic .tab-pane img {
    width: 100%;
    border: 10px solid #212121;
    transition: all 0.3s;
}
.about-area .about-img .about-pic .tab-pane:hover img {
    border: 10px solid #BFA76F;
}
.about-area .about-con {
    position: relative;
    z-index: 999;
}
.about-area .about-con .con {
    display: block;
    padding-left: 50px;
}
.about-area .about-con .con h3 {
    color: #fff;
    font-size: 28px;
    font-family: Abel, Trebuchet MS, sans-serif;
    text-transform: uppercase;
    font-weight: 400;
}
.about-area .about-con .con h3 span {
    color: #BFA76F;
}
.about-area .about-con .con img {
    display: inline-block;
}
.about-area .about-con .con a {
    display: inline-block;
    color: #797979;
    font-family: Abel, Trebuchet MS, sans-serif;
    font-size: 22px;
}

.award-picture-bot{
	display:flex;
	margin-top: 110px;
	
}

.logros-area:after {
    background: rgba(0, 0, 0, 0.8);
}
.logros-area .logros-img {
    position: relative;
    z-index: 999;    
    display: flex;
    flex-direction: row;
	justify-content: center;
	flex: 0 0 100%;
	margin-left: 10px;
}

@media (max-width: 580px) {
    .logros-area .logros-img {
        flex-direction: column;
		align-items:center;
    }
}

.logros-area .logros-img .logros-pic {
    margin: 0 0 15px;
    display: block;
}
.logros-area .logros-img .logros-pic .tab-pane img {
    width: 100%;
    border: 10px solid #212121;
    transition: all 0.3s;
    margin-bottom: 60px;
}
.logros-area .logros-img .logros-pic .tab-pane:hover img {
    border: 10px solid #BFA76F;
}
.logros-area .logros-con {
    position: relative;
    z-index: 999;
}
.logros-area .logros-con .con {
    display: block;
    padding-left: 50px;
}
.logros-area .logros-con .con h3 {
    color: #fff;
    font-size: 28px;
    font-family: Abel, Trebuchet MS, sans-serif;
    text-transform: uppercase;
    font-weight: 400;
}
.logros-area .logros-con .con h3 span {
    color: #BFA76F;
}
.logros-area .logros-con .con img {
    display: inline-block;
}
.logros-area .logros-con .con a {
    display: inline-block;
    color: #797979;
    font-family: Abel, Trebuchet MS, sans-serif;
    font-size: 22px;
}
.logros-img span {
    cursor: pointer;
    text-decoration: underline;
    color: white;
    margin-top: 4px;
    display: flex;
    font-size: 15px;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
}
.tst {
    display: flex;
    margin: 10px;
    width: 300px;
}

/* footer {
    position: relative;
    background-color: #1a1a1a;
    display: block;
}
footer:after {
    background: rgba(0, 0, 0, 0.8);
}
footer .footer-bottom {
    position: relative;
    z-index: 999;
    background-color: #1a1a1a;
    display: block;
    padding: 0 0 80px;
}
footer .footer-bottom .copyright {
    float: left;
    line-height: 80px;
    text-align: center;
    width: 40%;
    background: rgba(255, 255, 255, 0.05);
}
footer .footer-bottom .copyright p {
    margin: 0;
}
footer .footer-bottom .foo-social {
    float: right;
    line-height: 80px;
    text-align: center;
    width: 40%;
    background: rgba(255, 255, 255, 0.05);
}
footer .footer-bottom .foo-social ul li a {
    font-family: Abel, Trebuchet MS, sans-serif;
    color: #797979;
    text-transform: uppercase;
    font-size: 16px;
}
footer .footer-bottom .foo-social ul li a:hover {
    color: #BFA76F;
}
footer .up-link {
    width: 40px;
    height: 70px;
    line-height: 70px;
    color: #797979;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
}
footer .up-link a {
    color: #fff;
    display: block;
    position: relative;
}
footer .up-link a:hover {
    color: #BFA76F;
}
footer .up-link a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 5px;
    background: #BFA76F;
}
footer .footer-top {
    position: relative;
    z-index: 999;
    padding: 100px 0;
    display: block;
}
footer .footer-top .foo-logo {
    display: block;
    margin: 0 0 130px;
}
footer .footer-top .foo-logo a {
    display: inline-block;
}
footer .footer-top .foo-about p {
    width: 80%;
    display: block;
    margin: 0 0 50px;
}
footer .footer-top form {
    display: block;
    position: relative;
    width: 80%;
}
footer .footer-top form label {
    font-family: Abel, Trebuchet MS, sans-serif;
    color: white;
    font-weight: 400;
    font-size: 20px;
    display: block;
    margin: 0 0 20px;
}
footer .footer-top form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 50px;
    padding: 0 15px;
}
footer .footer-top form button {
    position: absolute;
    right: 30px;
    line-height: 50px;
    background: 0 0;
    bottom: 0;
}
footer .footer-top .instagram ul li {
    position: relative;
    padding: 0;
    margin: 6px 5px;
    text-align: center;
    border: 5px solid #212121;
    transition: all 0.3s;
}
footer .footer-top .instagram ul li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
    opacity: 0;
}
footer .footer-top .instagram ul li img {
    width: auto;
}
footer .footer-top .instagram ul li i {
    position: absolute;
    left: 0;
    right: 0;
    top: 45%;
    color: #BFA76F;
    z-index: 999;
    transition: all 0.3s;
    opacity: 0;
    cursor: pointer;
}
footer .footer-top .instagram ul li:hover {
    border: 5px solid #BFA76F;
}
footer .footer-top .instagram ul li:hover:after {
    opacity: 1;
}
footer .footer-top .instagram ul li:hover i {
    opacity: 1;
}
    */

    footer {
        background: #000000;
        padding: 40px 20px;
        border-top: 1px solid rgba(196, 160, 82, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        position: relative;
    }

    footer p {
        color: #888;
        margin: 0;
        text-align: center;
    }

    .back-to-top {
        position: absolute;
        right: 20px;
        width: 45px;
        height: 45px;
        background: rgba(196, 160, 82, 0.9);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    @media (max-width: 480px) {
        .back-to-top {
            position: absolute;
            bottom: 95px;
            right: unset;      
        }
    }

    .back-to-top:hover {
        background: rgba(212, 176, 98, 1);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(196, 160, 82, 0.4);
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
        color: #0a0a0a;
        transition: transform 0.3s ease;
    }

    .back-to-top:hover svg {
        transform: translateY(-2px);
    }

    @media (max-width: 640px) {
        footer {
            padding: 30px 20px;
        }

        .modal {
            padding: 40px 30px;
        }

        .modal-title {
            font-size: 1.6rem;
        }

        .modal-message {
            font-size: 1rem;
        }
    }

.dark-label {
    color: #000;
}
.dark-paragraph {
    color: #3c3c3c;
}
.light-paragraph {
    color: white;
}
.appointment-area .app-form {
    display: block;
    position: relative;
    margin: 30px 0 0;
    border: 10px solid #f2f2f2;
}
.appointment-area .app-form .form-head {
    position: absolute;
    display: inline-block;
    top: -35px;
    background: #fff;
    width: 230px;
    margin: 0 auto;
    left: 0;
    right: 0;
    height: 60px;
    line-height: 60px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    font-family: Abel, Trebuchet MS, sans-serif;
    font-weight: 300;
    color: #212121;
    font-size: 26px;
    text-align: center;
    text-transform: uppercase;
}
.appointment-area .app-form form {
    display: block;
    padding: 80px 45px 50px;
    text-align: left;
}
.appointment-area .app-form form fieldset {
    width: 100%;
    display: block;
    margin: 0 0 20px;
}
.appointment-area .app-form form fieldset input {
    width: 100%;
    line-height: 50px;
    height: 50px;
    padding: 0 20px;
    border: 1px solid #f2f2f2;
    color: #000;
    transition: all 0.3s;
}
.appointment-area .app-form form fieldset input::-webkit-input-placeholder {
    color: #797979;
    opacity: 0.9;
    transition: all 0.3s;
}
.appointment-area .app-form form fieldset input::-moz-placeholder {
    color: #797979;
    opacity: 0.9;
    transition: all 0.3s;
}
.appointment-area .app-form form fieldset input:-ms-input-placeholder {
    color: #797979;
    opacity: 0.9;
    transition: all 0.3s;
}
.appointment-area .app-form form fieldset input:-moz-placeholder {
    color: #797979;
    opacity: 0.9;
    transition: all 0.3s;
}
.appointment-area .app-form form fieldset input:focus {
    border: 1px solid #BFA76F;
}
.appointment-area .app-form form fieldset input:focus::-webkit-input-placeholder {
    opacity: 1;
}
.appointment-area .app-form form fieldset input:focus::-moz-placeholder {
    opacity: 1;
}
.appointment-area .app-form form fieldset input:focus:-ms-input-placeholder {
    opacity: 1;
}
.appointment-area .app-form form fieldset input:focus:-moz-placeholder {
    opacity: 1;
}
.appointment-area .app-form form fieldset .w-50 {
    position: relative;
}
.appointment-area .app-form form fieldset .w-50 span {
    position: absolute;
    top: 0;
    right: 20px;
    height: 50px;
    color: #BFA76F;
    line-height: 50px;
}
.appointment-area .app-form form fieldset .w-50:first-child span {
    right: 30px;
}
.appointment-area .app-form form fieldset textarea {
    width: 100%;
    height: 142px;
    padding: 10px 20px;
    border: 1px solid #f2f2f2;
    color: #000;
    transition: all 0.3s;
}
.appointment-area .app-form form fieldset textarea::-webkit-input-placeholder {
    color: #797979;
    opacity: 0.9;
    transition: all 0.3s;
}
.appointment-area .app-form form fieldset textarea::-moz-placeholder {
    color: #797979;
    opacity: 0.9;
    transition: all 0.3s;
}
.appointment-area .app-form form fieldset textarea:-ms-input-placeholder {
    color: #797979;
    opacity: 0.9;
    transition: all 0.3s;
}
.appointment-area .app-form form fieldset textarea:-moz-placeholder {
    color: #797979;
    opacity: 0.9;
    transition: all 0.3s;
}
.appointment-area .app-form form fieldset textarea:focus {
    border: 1px solid #BFA76F;
}
.appointment-area .app-form form fieldset textarea:focus::-webkit-input-placeholder {
    opacity: 1;
}
.appointment-area .app-form form fieldset textarea:focus::-moz-placeholder {
    opacity: 1;
}
.appointment-area .app-form form fieldset textarea:focus:-ms-input-placeholder {
    opacity: 1;
}
.appointment-area .app-form form fieldset textarea:focus:-moz-placeholder {
    opacity: 1;
}

@media (max-width: 480px) {
    .testimonial-area {
        background-position: center; 
        background-size: contain; 
    }
}

.testimonial-area:after {
    background: rgba(0, 0, 0, 0.8);
}
.testimonial-area .testimonial-slider {
    position: relative;
    overflow: hidden;
    z-index: 999;
    margin-top: -130px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.testimonial-area .testimonial-list {
    position: relative;
    z-index: 999;
    padding-top: 130px;
    width: 100%;
    height: auto;
}
.testimonial-area .testimonial-list .content {
    display: none;
    padding: 43px 31px;
    background: rgba(255, 255, 255, 0.05);
}
.testimonial-area .testimonial-list .content.active {
    display: block;
}

p.testimonial-message {
    max-height: 170px;
    overflow-y: auto; /* Changed from scroll - only shows when needed */
    overflow-x: hidden;
    padding-right: 10px;
    
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #FFD700 #2a2a2a; /* thumb color, track color */
}

p.testimonial-message::-webkit-scrollbar {
    width: 8px; /* Scrollbar width */
}

p.testimonial-message::-webkit-scrollbar-track {
    background: #2a2a2a; /* Dark track */
    border-radius: 10px;
}

p.testimonial-message::-webkit-scrollbar-thumb {
    background: #FFD700; /* Gold color to match your theme */
    border-radius: 10px;
    border: 2px solid #2a2a2a; /* Creates padding effect */
}

p.testimonial-message::-webkit-scrollbar-thumb:hover {
    background: #FFC700; /* Brighter gold on hover */
}

.testimonial-area .testimonial-list .content p {
    font-size: 20px;
    font-style: italic;
    color: #fff;
    line-height: 35px;
    margin: 15px;
    display: block;
}
.testimonial-area .testimonial-list .content a {
    color: #fff;
    font-family: Abel, Trebuchet MS, sans-serif;
    font-size: clamp(16px, 6vw, 22px); 
}
.testimonial-area .testimonial-list .content a span {
    color: #BFA76F;
}

@media (max-width: 650px) {
    .down{
        scale: 0.7;
    }
}

.quotes {
    width: 35px;
    height: 35px;
  }

  .quotesright {
    width: 35px;
    height: 35px;
    transform: rotate(180deg);
    float:right;
  }

.down {
    display: flex;
    flex-direction: row;
    gap: 20px;
    position: relative;
    top: 15px;
    z-index: 9999;
    justify-content: center;
  }
  
  
  .card3 {
    width: 65px;
    height: 65px;
    outline: none;
    border: none;
    background-color: #BFA76F85;
    border-radius: 5px 5px 5px 90px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: .2s ease-in-out;
  }
  
  .github {
    margin-top: -.6em;
    margin-left: 1.2em;
  }
  
  .card4 {
    width: 65px;
    height: 65px;
    outline: none;
    border: none;
    background-color: #BFA76F85;
    border-radius: 5px 5px 90px 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: .2s ease-in-out;
  }
  

  
  .card3:hover {
    cursor: pointer;
    scale: 1.1;
    background-color: #BFA76F;
  }
  
  .card3:hover .github {
    fill: white;
  }
  
  .card4:hover {
    cursor: pointer;
    scale: 1.1;
    background-color: #BFA76F;
  }
  
  .card4:hover .discord {
    fill: white;
  }

.slider-arrow {
    position: absolute;
    top: 0;
    height: 100%;
    color: #fff;
    cursor: pointer;
    background-color: #BFA76F85;
    border: none;
    z-index: 999999;
	    display: flex; 
    justify-content: center; 
    align-items: center; 
}
.slider-arrow:hover {
    background-color: #BFA76F99;
}
.left-arrow {
    left: 0px;
}
.right-arrow {
    right: 0px;
}
.image {
    margin: 0;
    border: 0;
}



.faq-section {
    margin: 0 auto;
    border-radius: 15px;
    padding: 17px;
    border: 10px solid #f2f2f2;
    box-shadow: 1px 3px 14px 0px #00000050;
  }

  details {
    cursor: pointer;
  }
  
  summary:focus-visible {
    outline: 2px solid orange;
    outline-offset: 8px;
    border-radius: 4px;
  }
  
  summary {
    font-size: 20px;
    color: #f4f4f6;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }
  
  summary::marker {
    display: none;
    content: "";
  }
  
span.faqtitle {
    color: #212121;
}

.material-symbols-outlined {
    color: black;
}

  details > p {
    color: #535353;
    font-size: 18px;
    line-height: 155%;
    letter-spacing: .1px;
    margin-bottom: 40px;
    padding-left: 10px;
  }
  
  hr {
    border: 1px solid #dddddd;
    margin-block-end: 30px;
  }

.sidebar .instagram ul {
    display: block;
    margin: -5px -3px;
}
.sidebar .instagram ul li {
    padding: 5px 3px;
}
.sidebar .instagram ul li a {
    display: block;
    position: relative;
    text-align: center;
}
.sidebar .instagram ul li a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    border: 4px solid #BFA76F;
    transition: all 0.5s;
}
.sidebar .instagram ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #BFA76F;
    opacity: 0;
    transition: all 0.5s;
}
.sidebar .instagram ul li a span {
    position: absolute;
    top: 40%;
    font-size: 16px;
    color: #fff;
    opacity: 0;
    left: 0;
    right: 0;
    transition: all 0.5s;
}
.sidebar .instagram ul li a:hover:after {
    opacity: 1;
}
.sidebar .instagram ul li a:hover:before {
    opacity: 0.5;
}
.sidebar .instagram ul li a:hover span {
    opacity: 1;
}
.sidebar .instagram ul li a img {
    width: 100%;
}
.menu-buttons li a {
    color: #fff;
}

.rp_mobail_menu_main_wrapper {
    display: none;
    float:none;
	width:100%;
  position: relative;
  z-index: 10000;
  background: #000000c2;
  border-bottom: 1px solid rgba(196, 160, 82, 0.36);
}

.rowheader{
    position: relative;
    z-index: 99999;
    margin-right: -15px;
    margin-left: -15px;
}

#sidebar {
    position: fixed;
    display: block;
    width: 100%;
    top: 79px; 
    left: 0;
    background-color: #000000b3;
    overflow: hidden;
    overflow-x: hidden;
    z-index: 999;
    max-height: 0; 
    transition: max-height 0.6s ease;
  }

  #sidebar.open {
    max-height: 1000px; 
  }
#link_list {
    list-style-type: none;
    width: 100%;
    padding: 0 50px 0 0;
}
#link_list li {
    display: block;
    width: 100%;
}
#link_list li:hover {
    background-color: #e74c3c;
}
#toggle {
    float: right;
    position: relative;
    bottom: -25px;
    right: 15px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
}
#toggle_close {
    position: absolute;
    z-index: 100;
    right: 20px;
    top: 15px;
    font-size: 25px;
    color: #000;
    cursor: pointer;
}
.gc_logo {
    width: 100px;
    height: 80px;
    margin-left: 15px;
}
.gc_logo img {
    width: 100px;
    height: 100px;
}
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#cssmenu {
    width: 100%;
    font-family: Abel, Trebuchet MS, sans-serif;
    color: #fff;
}
#cssmenu ul ul {
    display: none;
}
#cssmenu ul li a {
    padding: 16px 22px;
    cursor: pointer;
    z-index: 2;
    font-size: 20px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    border-bottom: 1px solid #3f3f3fb5;
    background: #00000070;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

#cssmenu ul li.active a,
#cssmenu ul li:hover a {
    background: #BFA76F !important;
    border-bottom: 1px solid #d3d3d3;
    color: #fff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
#sidebar h1 a {
    font-size: 20px;
    color: #000 !important;
    padding-left: 20px;
    font-weight: 400;
}
#sidebar h1 {
    margin: 0;
    color: #000;
    padding-bottom: 15px;
    background: #f9f9f9;
    position: relative;
}
.slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d1e0e0;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s;
}
.image-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}
.slide img {
    max-width: 100%;
    max-height: 100%;
}
.slide.active {
    opacity: 1;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.arrow-left {
    left: 10px;
    z-index: 2;
}
.arrow-right {
    right: 10px;
    z-index: 2;
}
.fullscreen {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}
.fullscreen:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.thumbnails {
    display: flex;
    overflow: hidden;
    margin: 10px 0;
    width: 100%;
    height: 100px;
    position: relative;
}
.thumbnail-container::-webkit-scrollbar {
    display: none;
}
.thumbnail-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-x: scroll;
    width: calc(100% - 0px);
    height: 100%;
    margin-left: 10px;
    margin-right: 10px;
}
.thumbnail-arrow {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
}
.thumbnail-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.thumbnail-arrow-left {
    left: 10px;
}
.thumbnail-arrow-right {
    right: 0;
}
.thumbnail {
    flex-shrink: 0;
    max-height: 100%;
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.5s;
}
.thumbnail.active,
.thumbnail:hover {
    opacity: 1;
}
.lighter-font {
    color: #ddd;
}
.gold-font {
    color: #BFA76F;
}
.stars {
    display: flex;
    font-size: 24px;
    justify-content: flex-start;
}
.stars:before {
    content: "★★★★★";
    letter-spacing: 3px;
    color: #dcdcdc;
    position: absolute;
}
.stars[data-rating="1"]:before,
.stars[data-rating="2"]:before,
.stars[data-rating="3"]:before,
.stars[data-rating="4"]:before,
.stars[data-rating="5"]:before {
    color: #fc0;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: revealStar 0.5s forwards;
}
.stars[data-rating="5"]:before {
    width: 100%;
}
.stars[data-rating="4"]:before {
    width: 80%;
}
.stars[data-rating="3"]:before {
    width: 60%;
}
.stars[data-rating="2"]:before {
    width: 40%;
}
.stars[data-rating="1"]:before {
    width: 20%;
}
@keyframes revealStar {
    to {
        width: 100%;
    }
}
.button-buttons {
    display: inline-block;
}
.-next {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    margin: 2px;
    border-radius: 4px;
}
.-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
.form-fa {
    font-size: 30px;
}
#email-link {
    transition: all 0.3s;
    text-decoration: none;
    font-family: Abel, Trebuchet MS, sans-serif;
    color: #797979;
    text-transform: uppercase;
    font-size: 16px;
    cursor: pointer;
}
#email-link:hover {
    text-decoration: none;
    color: #BFA76F;
}
#email-link:active {
    outline: 0;
    text-decoration: none;
}
#email-link:focus {
    outline: 0 solid;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    top: 4px;
    right: -12px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #c4a052;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 700px) {

    .hamburger {
        display: flex;
        
    }
}

.section-heading-two.workgallery,
.worksectiondesc {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animated state - visible and in place */
.section-heading-two.workgallery.animate-in,
.worksectiondesc.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger the animations */
.section-heading-two.workgallery {
  transition-delay: 0.1s;
}

.dark-paragraph.worksectiondesc {
  transition-delay: 0.3s;
}

.btn2.worksectiondesc {
  transition-delay: 0.5s;
}
/* Image animation - using puff-in-center */
.about-pic {
    opacity: 0;
  }
  
  .about-pic.puff-in-center {
    -webkit-animation: puff-in-center 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
    animation: puff-in-center 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
  }
  
  @-webkit-keyframes puff-in-center {
    0% {
      -webkit-transform: scale(2);
              transform: scale(2);
      -webkit-filter: blur(4px);
              filter: blur(4px);
      opacity: 0;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-filter: blur(0px);
              filter: blur(0px);
      opacity: 1;
    }
  }
  @keyframes puff-in-center {
    0% {
      -webkit-transform: scale(2);
              transform: scale(2);
      -webkit-filter: blur(4px);
              filter: blur(4px);
      opacity: 0;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-filter: blur(0px);
              filter: blur(0px);
      opacity: 1;
    }
  }
  
  /* Text animations - keep the fade-in slide-down */
  .aboutmediv,
  .aboutmetext {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .aboutmediv.animate-in,
  .aboutmetext.animate-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Stagger the text animations */
  .aboutmediv {
    transition-delay: 0.1s;
  }
  
  .aboutmetext {
    transition-delay: 0.3s;
  }


/* Photo Loader - Only on mobile/tablets (820px and under) */
.photo-loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 15px;
    overflow: hidden;
}

/* Show photo loader only on mobile */
@media (max-width: 820px) {
    .photo-loader-container.active {
        display: flex;
    }
}

/* On desktop, hide body loading state immediately */
@media (min-width: 821px) {
    body.loading .full_width {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    body.loading header {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

.photo-loader-container.active {
    display: flex;
}

/* Keep columns visible but stop animation */
.photo-loader-container.zoom-active .photo-column-inner {
    animation-play-state: paused !important;
}

.photo-column {
    width: calc((100vw - 30px) / 3);
    max-width: 150px;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Remove overflow constraint during zoom */
.photo-loader-container.zoom-active .photo-column.middle {
    overflow: visible !important;
}

.photo-column-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.photo-column.left .photo-column-inner {
    animation: photoScrollDown 1.4s linear infinite;
}

.photo-column.middle .photo-column-inner {
    animation: photoScrollUp 2.1s linear infinite;
}

.photo-column.right .photo-column-inner {
    animation: photoScrollDown 1.4s linear infinite;
}

@keyframes photoScrollDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes photoScrollUp {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.photo-column img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Video preview in loader */
.video-preview {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.video-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Transform the actual loader video element */
#loaderVideo.zooming {
    position: fixed !important;
    z-index: 10000 !important;
    overflow: visible !important;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Hide website initially */
body.loading .full_width {
    opacity: 0;
    pointer-events: none;
}

/* Hide header during video zoom */
body.loading header,
body.zooming-video header {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

/* Show header after zoom completes */
body.loaded header {
    opacity: 1;
    transform: translateY(0);
}

/* Show full site */
body.loaded .full_width {
    opacity: 1;
    pointer-events: auto;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #c4a052;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #c4a052;
}

.nav-link:hover::after {
    width: 100%;
}

.section-dark {
    background-color: #0a0a0a;
    color: #e0e0e0;
    overflow: hidden;
    width: 100%;
}

.section-dark.faq-section::before {
    background-image: url('images/about/3.webp');
}
        .section-dark::before {
            content: "";
            position: absolute;
            top: 202px;
            left: 25px;
            width: 95%;
            height: 76.5%;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.15;
            z-index: 0;
            overflow: hidden;
        }



        /* FAQ */
        .faq-container {
            max-width: 900px;
            margin: 60px auto 0;
        }

        .faq-item {
            background: rgba(20, 20, 20, 0.5);
            border: 1px solid rgba(196, 160, 82, 0.2);
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            z-index: 100;
            position: relative;
        }

        .section-dark .faq-item {
            background: rgba(20, 20, 20, 0.7);
            border: 1px solid rgba(196, 160, 82, 0.3);
        }

        .section-dark .faq-item:hover {
            border-color: rgba(196, 160, 82, 0.5);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2rem;
            color: #ffffff;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: #c4a052;
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: #c4a052;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 30px;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 30px 25px;
        }

        .faq-answer p {
            color: #c0c0c0;
            line-height: 1.8;
            font-size: 1rem;
        }

        @media (max-width: 780px) {
            .navbarcontact{
                display: none;
            }
        }

        .modern-gallery-wrapper {
            position: relative;
            margin-top: 40px;
        }
        
        .gallery-swiper {
            position: relative;
            width: 100%;
            height: 600px;
            border-radius: 12px;
            overflow: hidden;
            background: #000;
            border: 10px solid #f2f2f2;
            box-shadow: 1px 3px 14px 0px #00000050;
        }
        
        .gallery-swiper .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
        }
        
        .gallery-swiper .image-container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .gallery-swiper .gallery-image {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            user-select: none;
            padding: 5px;
        }
        
        /* Swiper Navigation Buttons */
        .gallery-swiper .swiper-button-prev,
        .gallery-swiper .swiper-button-next {
            color: #fff;
            background: rgba(0, 0, 0, 0.5);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .gallery-swiper .swiper-button-prev:hover,
        .gallery-swiper .swiper-button-next:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: scale(1.1);
        }
        
        .gallery-swiper .swiper-button-prev::after,
        .gallery-swiper .swiper-button-next::after {
            font-size: 20px;
            font-weight: bold;
        }
        
        /* Pagination */
        .gallery-swiper .swiper-pagination {
            bottom: 20px;
        }
        
        .gallery-swiper .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: #fff;
            opacity: 0.5;
            transition: all 0.3s ease;
        }
        
        .gallery-swiper .swiper-pagination-bullet-active {
            opacity: 1;
            width: 30px;
            border-radius: 5px;
        }
        
        /* Fullscreen Button */
        .fullscreen-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 20;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .fullscreen-btn:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: scale(1.1);
        }
        
        /* Thumbnail Gallery */
        .gallery-thumbs {
            margin-top: 20px;
            height: 100px;
            overflow: hidden;
        }
        
        .gallery-thumbs .swiper-slide {
            width: 120px;
            height: 100px;
            opacity: 0.5;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .gallery-thumbs .swiper-slide-thumb-active {
            opacity: 1;
            border: 3px solid #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
        .gallery-thumbs .thumb-container {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .gallery-thumbs img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* Fullscreen Mode */
        .modern-gallery-wrapper.fullscreen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 9999;
            background: #000;
            margin: 0;
        }
        
        .modern-gallery-wrapper.fullscreen .gallery-swiper {
            height: calc(100vh - 120px);
            border-radius: 0;
        }
        
        .modern-gallery-wrapper.fullscreen .gallery-thumbs {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            margin: 0;
            background: rgba(0, 0, 0, 0.9);
            padding: 10px 0;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .gallery-swiper {
                height: 400px;
            }
        
            .gallery-swiper .swiper-button-prev,
            .gallery-swiper .swiper-button-next {
                width: 30px;
                height: 30px;
            }
        
            .gallery-swiper .swiper-button-prev::after,
            .gallery-swiper .swiper-button-next::after {
                font-size: 16px;
            }
        
            .gallery-thumbs {
                height: 80px;
            }
        
            .gallery-thumbs .swiper-slide {
                width: 100px;
                height: 80px;
            }
        
            .fullscreen-btn {
                width: 30px;
                height: 30px;
                top: 10px;
                right: 7px;
            }
        
            .fullscreen-btn svg {
                width: 18px;
                height: 18px;
            }
        
            .modern-gallery-wrapper.fullscreen .gallery-swiper {
                height: calc(100vh - 100px);
            }
        }
        
        @media (max-width: 480px) {
            .gallery-swiper {
                height: 300px;
            }
        
            .gallery-thumbs {
                height: 60px;
            }
        
            .gallery-thumbs .swiper-slide {
                width: 80px;
                height: 60px;
            }
        }
        			/* Award Links Collapsible Styling */
			.award-links-container {
				margin-top: 20px;
			}

			.award-links-item {
				background: rgba(255, 255, 255, 0.05);
				border: 1px solid rgba(196, 160, 82, 0.3);
				border-radius: 8px;
				overflow: hidden;
				transition: all 0.3s ease;
			}

			.award-links-item:hover {
				border-color: rgba(196, 160, 82, 0.5);
				background: rgba(255, 255, 255, 0.08);
			}

			.award-links-header {
				display: flex;
				justify-content: space-between;
				align-items: center;
				padding: 18px 25px;
				cursor: pointer;
				user-select: none;
				transition: all 0.3s ease;
			}

			.award-links-header:hover {
				background: rgba(196, 160, 82, 0.1);
			}

			.award-links-header span:first-child {
				font-size: 1.1rem;
				font-weight: 600;
				color: #c4a052;
				letter-spacing: 0.5px;
			}

			.award-links-toggle {
				font-size: 28px;
				font-weight: 300;
				color: #c4a052;
				transition: transform 0.3s ease;
				line-height: 1;
			}

			.award-links-item.active .award-links-toggle {
				transform: rotate(45deg);
			}

			.award-links-content {
				max-height: 0;
				overflow: hidden;
				transition: max-height 0.4s ease, padding 0.4s ease;
				padding: 0 25px;
			}

			.award-links-item.active .award-links-content {
				max-height: 1000px;
				padding: 10px 25px 20px;
			}

			.award-links-content a.tst {
				display: flex;
				align-items: center;
				padding: 12px 15px;
				margin: 8px 0;
				background: rgba(0, 0, 0, 0.2);
				border-radius: 6px;
				text-decoration: none;
				transition: all 0.3s ease;
				border: 1px solid transparent;
			}

			.award-links-content a.tst:hover {
				background: rgba(196, 160, 82, 0.15);
				border-color: rgba(196, 160, 82, 0.4);
				transform: translateX(5px);
			}

			.award-links-content a.tst svg {
				margin-right: 12px;
				flex-shrink: 0;
				fill: #c4a052;
			}

			.award-links-content a.tst span {
				color: rgba(255, 255, 255, 0.9);
				font-size: 0.95rem;
			}

			.award-links-content a.tst:hover span {
				color: #fff;
			}

			@media (max-width: 768px) {
				.award-links-header {
					padding: 15px 20px;
				}

				.award-links-header span:first-child {
					font-size: 1rem;
				}

				.award-links-content {
					padding: 0 20px;
				}

				.award-links-item.active .award-links-content {
					padding: 10px 20px 20px;
				}

				.award-links-content a.tst {
					padding: 10px 12px;
				}

				.award-links-content a.tst span {
					font-size: 0.9rem;
				}
			}

			/* Seminar Notification Popup */
			.seminar-notification {
				position: fixed;
				bottom: 20px;
				right: 20px;
				background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
				color: #fff;
				padding: 20px 25px;
				border-radius: 12px;
				box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
				max-width: 400px;
				z-index: 9999;
				border: 1px solid rgba(196, 160, 82, 0.3);
				animation: slideInUp 0.5s ease-out;
				transition: all 0.3s ease;
			}

			.seminar-notification:hover {
				transform: translateY(-2px);
				box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
			}

			.seminar-notification-header {
				display: flex;
				justify-content: space-between;
				align-items: flex-start;
				margin-bottom: 12px;
			}

			.seminar-notification-title {
				font-size: 1.1rem;
				font-weight: 700;
				color: #c4a052;
				margin: 0;
				letter-spacing: 0.5px;
			}

			.seminar-notification-close {
				background: none;
				border: none;
				color: rgba(255, 255, 255, 0.6);
				font-size: 24px;
				cursor: pointer;
				padding: 0;
				width: 28px;
				height: 28px;
				display: flex;
				align-items: center;
				justify-content: center;
				border-radius: 50%;
				transition: all 0.2s ease;
				line-height: 1;
			}

			.seminar-notification-close:hover {
				background: rgba(255, 255, 255, 0.1);
				color: #fff;
				transform: rotate(90deg);
			}

			.seminar-notification-content {
				font-size: 0.95rem;
				line-height: 1.6;
				color: rgba(255, 255, 255, 0.9);
				margin: 0 0 15px 0;
			}

			.seminar-notification-actions {
				display: flex;
				align-items: center;
				gap: 15px;
				flex-wrap: wrap;
			}

			.seminar-notification-cta {
				display: inline-block;
				background: linear-gradient(135deg, #c4a052 0%, #b49042 100%);
				color: #1a1a1a;
				padding: 10px 20px;
				border-radius: 6px;
				text-decoration: none;
				font-weight: 600;
				font-size: 0.9rem;
				transition: all 0.3s ease;
				border: 1px solid rgba(196, 160, 82, 0.5);
			}

			.seminar-notification-cta:hover {
				background: linear-gradient(135deg, #d4b062 0%, #c4a052 100%);
				transform: translateY(-2px);
				box-shadow: 0 4px 12px rgba(196, 160, 82, 0.4);
				color: #000;
				text-decoration: none;
			}

			.seminar-notification-dismiss {
				color: rgba(255, 255, 255, 0.5);
				font-size: 0.85rem;
				text-decoration: none;
				transition: color 0.2s ease;
				cursor: pointer;
				white-space: nowrap;
			}

			.seminar-notification-dismiss:hover {
				color: rgba(255, 255, 255, 0.8);
				text-decoration: underline;
			}

			.seminar-notification.hidden {
				animation: slideOutDown 0.4s ease-in forwards;
			}

			@keyframes slideInUp {
				from {
					transform: translateY(100px);
					opacity: 0;
				}
				to {
					transform: translateY(0);
					opacity: 1;
				}
			}

			@keyframes slideOutDown {
				from {
					transform: translateY(0);
					opacity: 1;
				}
				to {
					transform: translateY(100px);
					opacity: 0;
				}
			}

			/* Mobile responsiveness */
			@media (max-width: 768px) {
				.seminar-notification {
					bottom: 10px;
					right: 10px;
					left: 10px;
					max-width: none;
					padding: 18px 20px;
				}

				.seminar-notification-title {
					font-size: 1rem;
				}

				.seminar-notification-content {
					font-size: 0.9rem;
				}

				.seminar-notification-actions {
					gap: 12px;
				}

				.seminar-notification-cta {
					font-size: 0.85rem;
					padding: 9px 18px;
				}

				.seminar-notification-dismiss {
					font-size: 0.8rem;
				}
			}

			@media (max-width: 480px) {
				.seminar-notification {
					padding: 15px 18px;
				}

				.seminar-notification-title {
					font-size: 0.95rem;
				}

				.seminar-notification-content {
					font-size: 0.85rem;
					margin-bottom: 12px;
				}

				.seminar-notification-cta {
					font-size: 0.8rem;
					padding: 8px 16px;
				}

				.seminar-notification-dismiss {
					font-size: 0.75rem;
				}
			}