*, *:after, *:before {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
*:focus {
	outline: inherit;
}

:root {
	--primary-color: #e6e6e6;
	--primary-theme: #141414;
	--theme-color: #D4AB65;
	--theme-color-half: rgba(212, 171, 101, .5);
	--dark-color: #0a0a0a;
	--bg-dark-color: #000000;
	--light-color: #ffffff;
	--light-boxshadow: rgba(212, 171, 101, 0.15);
	--light-boxshadow-1: rgba(212, 171, 101, 0.2);
	--light-color-opt1: rgba(255,255,255,.1);
	--dark-color-opt2: rgba(0, 0, 0, 0.1);
	--overlay-color: rgba(20, 20, 20, 0.45);
	--theme-gradient: linear-gradient(269deg, rgba(20, 20, 20, 0) 70%, rgba(20, 20, 20, 0.4) 80%, #141414 100%);
	--theme-text-shadow: rgba(13, 13, 13, 0.5);
	--no-color: rgba(20,20,20,0.45);
	--text-color: #999999;
	--top-gradient: linear-gradient(0deg, #141414 1%, rgba(20, 20, 20, 0.85) 100%, rgba(20, 20, 20, 0.8) 100%);
	--border-color: #272727;
	--project-gradient: linear-gradient(180deg, rgba(20, 20, 20, 0) 10%, #141414 96.07%);
	--my-label-color: rgba(215, 215, 215, 0.8);
	--grey-color: #333333;
	--grey-color-2: #f6f6f6;
	--light-white: #cccccc;
	--light-grey: #888888;
	--table-color: rgba(255, 255, 255, 0.15);
	--dropdown-color: #1d1d1d;
	
}
.light-theme {
	--primary-color: #0d0d0d;
	--primary-theme: #fcfdff;
	--theme-color: #d4ab65;
	--dark-color: #ffffff;
	--bg-dark-color: #f6f7f8;
	--light-color: #000000;
	--light-boxshadow: rgba(72, 105, 114, 0.15);
	--light-boxshadow-1: rgba(0, 0, 0, 0.5);
	--light-color-opt1: rgba(0,0,0,.1);
	--dark-color-opt2: rgba(255, 255, 255, 0.1);
	--overlay-color: rgba(255, 255, 255, 0.45);
	--theme-gradient: linear-gradient(269deg, rgba(247, 248, 250, 0) 70%, rgba(247, 248, 250, 0.6) 80%, #f7f8fa 100%);
	--theme-text-shadow: rgba(247, 248, 250, 0.5);
	--no-color: rgba(255,255,255,0);
	--text-color: #666666;
	--top-gradient: linear-gradient(0deg, #fcfdff 1%, rgba(255, 255, 255, 0.85) 100%, rgba(255, 255, 255, 0.8) 100%);
	--border-color: #eeeeee;
	--project-gradient: linear-gradient(180deg, rgba(252, 253, 255, 0) -9.17%, #FCFDFF 96.07%);
	--my-label-color: rgba(40, 40, 40, 0.8);
	--grey-color: #eeeeee;
	--grey-color-2: #333333;
	--light-white: #1b1818;
	--light-grey: #1a1a1a;
	--table-color: rgba(80, 80, 80, 0.15);
	--dropdown-color: #eeeeee;
}
/* Clearing */
.clear:before,
.clear:after,
.site-header:before,
.site-header:after {
	content: "";
	display: table;
	table-layout: fixed;
}
.clear:after,
.site-header:after {
	clear: both;
}
html.is-animating body, html.is-rendering body {
	pointer-events: none;
}
.w-15 {
	width: 15% !important;
}
.text-theme {
    color: var(--theme-color);
}
.light-text {
	color: var(--light-color);
}
.theme-color {
	color: #D4AB65 !important;
}
.border-color {
	border-color: var(--theme-color) !important;
}
.theme-bg {
	background-color: var(--theme-color);
}
.text-color {
	color: var(--text-color);
}
@keyframes loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.container {
	position: relative;
}
.yk-form-control {
	display: block;
	width: 100%;
	background-color: transparent;
	padding: 5px 15px;
	font-size: 17px;
	font-weight: normal;
	color: var(--light-color);
	border: 1px solid rgb(136 136 136 / 65%);
	border-radius: 3px;
}
.yk-form-control:focus {
	color: var(--light-color);
	background-color: transparent;
	border-color: rgb(204 204 204 / 85%);
	outline: none;
	box-shadow: none;
}
.yk-form-control + .yk-form-control {
	margin-top: 20px;
}
.yk-form-control:disabled, .yk-form-control[readonly] {
	background-color: rgb(176 176 176 / 6%);
	opacity: .4;
	cursor: not-allowed;
}

.yk-form-control:not(textarea):not([size]) { /* tt-form-control height */
	height: 56px;
}
.border-radius-5 {
	border-radius: 0.5rem;
}
.display-block {
	display: block;
}
.my-mb-25 {
	margin-bottom: 25px !important;
}
.my-mb-20 {
	margin-bottom: 20px !important;
}
.my-mb-40 {
	margin-bottom: 40px !important;
}
.my-mb-30 {
	margin-bottom: 30px !important;
}
.my-mb-100 {
	margin-bottom: 100px !important;
}
.my-pl-80 {
	padding-left: 80px !important;
}
.my-p-50-50 {
	padding-top: 50px !important;
	padding-bottom: 50px !important;
}
.my-p-140-100 {
	padding-top: 140px !important;
	padding-bottom: 100px !important;
}
.my-p-0-40 {
	padding-bottom: 40px !important;
}
.my-p-0-50 {
	padding-bottom: 50px !important;
}
.my-p-0-100 {
	padding-bottom: 100px !important;
}
.my-p-140-0 {
	padding-top: 140px !important;
}
.my-p-100-0 {
	padding-top: 100px !important;
}
.my-p-50-0 {
	padding-top: 50px !important;
}
.my-text-center {
	text-align: center !important; 
}
.my-pb-100-0 {
	padding-top: 100px;
	padding-bottom: 100px;
}
.mr-30 {
	margin-right: 30px;
}
.medium-width {
	max-width: 900px;
	width: 100%;
}
a {
	text-decoration: none;
	color: var(--theme-color);
}
img {
	height: auto;
	max-width: 100%;
}
img {
	border-style: none;
}
.my-label {
	color: var(--light-color);
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	line-height: 15px;
	padding-top: 3px;
}
.fixed-bottom-left {
  position: fixed;
  bottom: 10px;
  left: 10px;
}
.centred {
	text-align: center;
}
#playPauseButton {
	position: relative;
	text-align: center;
	width: 40px;
	height: 40px;
	display: block;
	background: var(--light-color);
	color: var(--dark-color);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border: none;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
#playPauseButton i {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 16px;
	line-height: 18px;
	display: block;
	cursor: pointer;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1;
}
#playPauseButton i:before {
	
}
#playPauseButton:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
	width: 100%;
	height: 100%;
	background: var(--light-color);
	border-radius: 50%;
	transform: translateX(-50%) translateY(-50%);
	animation: pulse-border 1500ms ease-out infinite;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
}
#playPauseButton:hover {
	background: var(--light-color);
	color: var(--theme-color);
}
#playPauseButton:hover:before {
	background: var(--light-color);
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.7);
    opacity: 0;
  }
}
/* Add styles to animate the wave when the audio is playing */


/* Main Slider Section Style */
.transition-fade {
	opacity: 1;
	filter: none;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	-ms-transition: 0.6s;
	-o-transition: 0.6s;
	transition: 0.6s;
}
.transition-fade .mry-loading-curtain {
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
html.is-animating .transition-fade {
	opacity: 0;
	transition-delay: 0.4s;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}
html.is-animating .transition-fade .mry-loading-curtain {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
.mry-curtain, .mry-loading-curtain {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-theme);
	z-index: 1;
}
.my-content-frame {
	position: relative;
	width: 100% !important;
	height: 100vh !important;
	overflow: hidden !important;
}
.my-dots {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	opacity: 0.2;
}
.gutter-24 {
	--bs-gutter-x: 24px;
}
/* Smooth Scrollbar Style */
.scrollbar-track {
	width: 5px !important;
	background-color: var(--dark-color) !important;
}
.scrollbar-track .scrollbar-thumb {
	background-color: var(--theme-color) !important;
	opacity: 1 !important;
	width: 5px !important;
}
.sticky-left {
	position: sticky;
	top: 250px; /* Adjust depending on your navbar height */
	align-self: flex-start;
	z-index: 2;
}

.gina-modes label {
	position: relative;
	width: 60px;
	height: 30px;
	background: var(--primary-color);
	border-radius: 20px;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.gina-modes label:before {
	content: "\f102";
	position: absolute;
	display: flex;
    align-items: center;
    justify-content: center;
    font-family: "flaticon_gina_engineering";
	color: var(--mode-icon-color);
	width: 24px;
	height: 24px;
	top: 3px;
	left: 3px;
	cursor: pointer;
	background: var(--primary-theme);
	border-radius: 50%;
	box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
/* New Styles for Active State */
.gina-modes label.active {
	background: var(--primary-color);
}
.gina-modes label.active:before {
	content: "\f103"; /* Moon icon */
	font-size: 16px;
	font-family: "flaticon_gina_engineering";
	color: var(--theme-color);
	background: var(--primary-theme);
    left: calc(100% - 27px); /* Move to the right */
}

select {
	background-color: transparent;
	box-sizing: border-box;
	height: 55px;
	margin-bottom: 5px;
	width: 100%;
	border: solid 2px var(--primary-color);
	color: var(--primary-color);
	padding-left: 20px;
	border-radius: 2px;
	transition: 0.4s ease-in-out;
}

/* Font CSS */
.font-18 {
	font-size: 18px !important; 
}
.font-20 {
	font-size: 20px !important; 
}
/* Button Style */
.my-btn, .my-btn-text {
	position: relative;
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	line-height: 55px;
	height: 55px;
	text-decoration: none;
	border: 2px solid var(--light-color);
	border-radius: 3px;
	margin-right: 10px;
	padding: 0 40px;
	color: var(--light-color);
	background-color: transparent;
	transition: 0.4s ease-in-out;
	outline: none !important;
	cursor: pointer;
}
.my-btn:hover, .my-btn-text:hover {
	color: var(--theme-color);
}
.my-btn-text {
	border-color: transparent;
	padding: 0 20px;
}
.my-section {
	position: relative;
	height: auto;
	min-height: inherit;
	overflow: hidden;
}
.custom-btn {
	position: relative;
	display: inline-block;
	border-radius: 3px;
  	text-transform: uppercase;
  	text-decoration: none;
  	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
  	border: 2px solid var(--light-color);
  	padding: 0px 40px;
  	height: 55px;
	line-height: 55px;
	background-color: transparent;
  	background-size: 300%;
	outline: none !important;
	cursor: pointer;
  	-webkit-transition: all 0.6s;
  	transition: all 0.6s;
}
.btn-theme {
	color: var(--light-color);
    background-image: linear-gradient(90deg, transparent 50%, var(--light-color) 50%);
}
.custom-btn:hover {
	color: var(--theme-color);
	background-position: 100%;
}
.custom-btn:active {
  box-shadow: 0px 10px 20px -15px rgba(255, 255, 255, 0.75);
}
.bg-black {
	background-color: var(--dark-color);
}
.bg-dark {
	background-color: var(--bg-dark-color) !important;
}
.my-button-mteam-prev.disabled,
.my-button-mteam-next.disabled {
    opacity: 0.5; /* Make it slightly faded */
    pointer-events: none; /* Disable clicks */
    cursor: default; /* Prevent pointer changes */
}
