/*
Theme Name: Aidentit
Author: Momchil Stoianov
Description: Персонализирана WordPress тема, базирана на Aidentit HTML темплейт.
*/

:root {
  /* --gold-color: #632E6D;   // лилаво */
  /* --gold-color: #cda45e;  // първото златисто */
  
  
	--gold-color: #e89e3a;   /*  - основно златисто */

    --background-color: #000000;
    --item-bg: #1c1c1e;
    --item-border: #333333;
    --icon-wrapper-bg: rgba(0, 0, 0, 0.25);
    --text-color: #e2e2e2;
    --accent-color: #e89e3a; 
}

body {
	font-family: "Open Sans", sans-serif;
	color: #fff;
	background: #0b1127;
	background-size: cover;
	background-attachment: fixed;
	background-color: #0c0b09;
}
#main {
	background-color: rgba(0, 0, 0, 0.4); 
}
/*--------------------------------------------------------------
# Marquee
--------------------------------------------------------------*/

.services-container {
  max-width: 770px;
  width: 100%;
  margin: -30px auto 150px auto !important;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.services-marquee {
	width: 100%;
	overflow: hidden;
	position: relative;
	mask-image: linear-gradient(to right, transparent 0%, black 35%, black 75%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%, black 75%, transparent 100%);
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
}

.services-track {
	display: flex;
	gap: 20px;
	animation: scroll-left 40s linear infinite;
	width: max-content;
}

.service-item {
	min-width: 150px;
	flex: 0 0 auto;
	height: 40px;
	padding: 3px 20px;
	font-size: 12px;
	font-weight: 500;
	border-radius: 18px;
	background-color: var(--item-bg, #1e1e1e);
	border: 1px solid var(--item-border, #444);
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-color, #fff);
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
	white-space: nowrap;
}

.service-item:hover {
	transform: scale(1.05);
	background-color: #2a2a2c;
}

.icon-wrapper {
	background-color: var(--icon-wrapper-bg, #333);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.icon-wrapper svg {
	width: 17px;
	height: 17px;
	stroke-width: 1.8;
	color: var(--accent-color, #00ffff);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.services-marquee:hover .services-track {
	animation-play-state: paused;
}

@media (max-width: 768px) {
.services-container {
	margin-top:-100px !important;
}
  .services-track {
	animation: scroll-left 20s linear infinite;
	flex-wrap: nowrap;
  }

  .service-item {
	min-width: 120px;
	height: 37px;
	padding: 2px 14px;
	font-size: 12px;
	gap: 6px;
  }

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

  .icon-wrapper svg {
	width: 14px;
	height: 14px;
  }
}

/*--------------------------------------------------------------
# Marquee end
--------------------------------------------------------------*/

a {
	color:var(--gold-color);
	text-decoration: none;
}

a:hover {
	color: #d9ba85;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Playfair Display", serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #1a1814;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1a1814;
  border-top-color: var(--gold-color);
  border-bottom-color: var(--gold-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	width: 44px;
	height: 44px;
	border-radius: 50px;
	transition: all 0.4s;
	border: 2px solid var(--gold-color);
}

.back-to-top i {
	font-size: 28px;
	color: var(--gold-color);
	line-height: 0;
}

.back-to-top:hover {
	background: var(--gold-color);
	color: #1a1814;
}

.back-to-top:hover i {
	color: #444444;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

#topbar {
	height: 40px;
	font-size: 14px;
	transition: all 0.5s;
	z-index: 996;
}

#topbar.topbar-scrolled {
	top: -40px;
}

#topbar .contact-info i {
	font-style: normal;
	color: #d9ba85;
}

#topbar .contact-info i span {
	padding-left: 5px;
	color: #fff;
}

#topbar .languages ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	color: var(--gold-color);
}

#topbar .languages ul a {
	color: white;
}

#topbar .languages ul li + li {
	padding-left: 10px;
}

#topbar .languages ul li + li::before {
	display: inline-block;
	padding-right: 10px;
	color: rgba(255, 255, 255, 0.5);
	content: "/";
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	transition: all 0.5s;
	z-index: 997;
	padding: 15px 0;
	top: 0px;
}

#header.header-scrolled {
	top: 0;
	background: rgba(0, 0, 0, 0.85);
	border-bottom: 1px solid #37332a;
}

#header .logo {
	font-size: 28px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 300;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
}

#header .logo a {
	color: #fff;
}

#header .logo img {
	max-height: 40px;
}

/*--------------------------------------------------------------
# Book 
--------------------------------------------------------------*/
.book-btn {
	margin: 0 0 0 15px;
	border: 2px solid var(--gold-color);
	color: #fff;
	border-radius: 50px;
	padding: 8px 25px;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	transition: 0.5s;
	box-shadow: 0 0 15px var(--gold-color); 

}

.book-btn:hover {
	background: var(--gold-color);
	color: #111;
	box-shadow: 0 0 15px var(--gold-color), 0 0 20px var(--gold-color); 
}


@media (max-width: 992px) {
  .book-btn {
	margin: 0 15px 0 0;
	padding: 8px 20px;
  }
}

.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	color: #fff;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 14px;
}

.navbar a i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
	color: var(--gold-color);
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
	border-radius: 4px;
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	color: #444444;
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
	color: var(--gold-color);
}

.navbar .dropdown:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
	left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
	left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
	display: block;
  }
  .navbar ul {
	display: none;
  }
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	border-radius: 6px;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile a {
	padding: 10px 20px;
	font-size: 15px;
	color: #1a1814;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
	color: var(--gold-color);
}

.navbar-mobile .getstarted {
	margin: 15px;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
	color: var(--gold-color);
}

.navbar-mobile .dropdown > .dropdown-active {
	display: block;
}
@media (min-width: 768px) {
	.menu_button {
		border-radius: 20px!important;
		transition: 0.3s;
		color: var(--gold-color)!important;
		background: none;
		padding:5px 10px 5px 10px !important;
		margin-left:20px;
		
	box-shadow: 0 0 1px var(--gold-color), 0 0 20px var(--gold-color)!important;
	}

	.menu_button:hover {
		background: none;
		color: white;
		box-shadow: 0 0 1px #999, 0 0 20px #999!important;
	}
}
.gold {
	color: var(--gold-color)!important;
}
.blockToHide {
	font-size:14px!important;
}
#hero {
	width: 100%;
	height: 100vh;
	position: relative;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

#hero:before {
	content: "";
	background: transparent;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

#hero .container {
	padding-top: 110px;
}

@media (max-width: 992px) {
  #hero .container {
	padding-top: 98px;
  }
}

#hero h1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0;
	font-size: 58px;
	font-weight: 700;
	color: #fff;
	font-family: "Poppins", sans-serif;
	gap: 10px;
	line-height: 1.2;
}

#hero h1 > span:not(.word-rotator) {
	font-size: 78px;
}

.slide-in {
	display: inline-block;
	opacity: 0;
	transform: translateX(-50px);
	animation: slideInOnce 1s ease-out forwards;
	will-change: transform, opacity;
}

@keyframes slideInOnce {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Поетапно закъснение */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.8s; } 
.delay-3 { animation-delay: 1.4s; }
.delay-4 { animation-delay: 2s; }
.delay-5 { animation-delay: 2.6s; }


#hero h1 .word-rotator {
	position: relative;
	display: inline-block;
	text-align: center;
	min-width: 480px;
	min-height:70px;
	overflow: hidden;
	color: var(--gold-color);
	font-size: 58px;
	opacity: 0;
	transform: translateX(-50px);
	animation: slideInOnce 1s ease-out forwards;
	animation-delay: 0.4s;
	will-change: transform, opacity;
}

#hero h1 .word {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	opacity: 0;
	transform: translateX(-50px);
	animation: slideWords 7s linear infinite;   

}

#hero h1 .word:nth-child(1) {
	animation-delay: 1.0s;
}
#hero h1 .word:nth-child(2) {
	animation-delay: 3.0s;
}
#hero h1 .word:nth-child(3) {
	animation-delay: 5.0s;
}

@keyframes slideWords {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  5% {
    opacity: 1;
    transform: translateX(0);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  35% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 0;
    transform: translateX(50px);
  }
}

#hero h2 {
	color: #eee;
	margin: 30px 0 0 0;
	font-size: 18px;
	font-family: "Poppins", sans-serif;
	text-align: center;
}

#hero .btns {
	margin-top: 30px;
	text-align: center;
}

.btn-menu, .btn-book {
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	display: inline-block;
	padding: 12px 30px;
	border-radius: 50px;
	transition: 0.3s;
	line-height: 1;
	border: 2px solid var(--gold-color);
	background: var(--gold-color);
	color: #111;
	box-shadow: 0 0 15px var(--gold-color), 0 0 25px var(--gold-color);
}

.btn-menu:hover, .btn-book:hover {
	background:none;
	color: white;
	box-shadow: 0 0 8px var(--gold-color);
}

.btn-book {
	margin-left: 15px;
}


@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

/* @media (max-height: 500px) {
  #hero {
    height: auto;
  }
  #hero .container {
    padding-bottom: 60px;
  }
}
 */
@media (max-width: 768px) {
	
	#hero {
		margin-top:-55px;
	}

	#hero h1 {
		font-size: 36px;
		gap: 5px;
	}

	#hero h1 .word-rotator {
		font-size: 32px;
		min-width: 250px;
		min-height: 40px;
	}

	#hero h2 {
		font-size: 15px;
		line-height: 24px;
		font-weight: 500;
	}

	#hero h1 > span:not(.word-rotator) {
		font-size: 32px;
	}
  
}

@media (min-width: 992px) {
  #hero h2 {
	max-width: 690px;
	margin-left: auto;
	margin-right: auto;
	display:block;
	line-height:29px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 60px 0;
	overflow: hidden;
}

.section-bg {
	background-color: transparent;
}

.section-title {
	padding-bottom: 40px;
	text-align: center;
}

.section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 1px;
	margin: 0 0 15px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #aaaaaa;
	font-family: "Poppins", sans-serif;
}

.section-title h2::before,
.section-title h2::after {
	content: "";
	width: 40px;
	height: 1px;
	display: inline-block;
	background: rgba(255, 255, 255, 0.5);
	margin: 4px 10px;
}

.section-title p {
	margin: 0;
	margin: 0;
	font-size: 30px;
	font-weight: 300;
	font-family: "Poppins", sans-serif;
	line-height: 33px;
	color: var(--gold-color);
}


/*--------------------------------------------------------------
# how_it_works
--------------------------------------------------------------*/

.how_it_works .box {
	padding: 20px ;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	transition: all ease-in-out 0.3s;
	background: rgba(26, 24, 20, 0.5); 
	border-radius: 15px;
	box-shadow: 0 0 20px 1px #555;
	cursor: pointer;
}
.box-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.icon-circle {
	width: 50px;
	height: 50px;
	background-color:transparent;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	/* border:3px solid #555; */
	box-shadow: 0 0 10px var(--gold-color, #0ff);
}
.icon-circle .icon {
	stroke:  var(--gold-color, #0ff); 
	width: 24px;
	height: 24px;
}
.icon-circle svg {
	stroke: #fff; 
	transition: stroke 0.3s ease;
}
.box:hover .icon-circle svg {
	stroke: #fff; 
}
.box:hover .icon-circle {
	border-color: #fff;
}
.icon-circle2 {
	width: 50px;
	height: 50px;
	background-color:transparent;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	box-shadow: 0 0 10px var(--gold-color, #0ff);
}
.icon-circle2:hover {
	box-shadow: 0 0 10px var(--gold-color, #0ff);
}



.icon-circle-section {
  width: 35px;
  height: 35px;
  background-image: url('https://www.aidentit.com/wp-content/themes/aidentit/assets/img/icons/build.png');
  background-size: contain;
  background-repeat: no-repeat;
  padding: 3px;
  cursor: pointer;
}

.icon-circle-section:hover {
  background-image: url('https://www.aidentit.com/wp-content/themes/aidentit/assets/img/icons/build_hover.png');
}







.box-header span {
	display: block;
	font-size: 22px;
	font-weight: 600;
	color: var(--gold-color, #0ff);
	text-align: center;
}
.how_it_works .box span {
	display: block;
	font-size: 28px;
	font-weight: 600;
	color: var(--gold-color);
}
.how_it_works .box h4 {
	font-size: 24px;
	font-weight: 600;
	padding: 0;
	margin: 20px 0;
	color: rgba(255, 255, 255, 0.8);
}
.how_it_works .box p {
	color: #dadada;
	font-size: 15px;
	margin: 0;
	padding: 0;
}
.how_it_works .box:hover {
	padding:20px;
	cursor: pointer;
	border-radius: 15px;
	box-shadow: 0 0 20px  #888;
}
.how_it_works .box:hover span, .how_it_works .box:hover h4, .how_it_works .box:hover p {
	color: #fff;
}
.how_it_works  .boxes {
	border: 1px solid #444;
	margin: 20px 0;
	padding: 17px;   
	border-radius: 5px;
	font-size: 15px;
	line-height:26px;
}
.blockToHide {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.5s ease, opacity 0.5s ease;
	line-height:26px;
}
.blockToHide.active {
	max-height: 1000px;
	opacity: 1;
}
.toggle-btn .arrow {
	display: inline-block;
	transition: transform 0.3s ease;
	margin-left: 5px;
}
.toggle-btn.active .arrow {
	transform: rotate(180deg);
}
.deliver-row {
	display: flex;
	align-items: center;
	margin-top: 15px;
	gap: 10px;
}
.deliver-row b {
	white-space: nowrap;
	font-weight: 600;
	font-size: 14px;
	color: #fff;
}
.deliver-row .line {
  flex-grow: 1;
  border-top: 2px dashed #666; 
  height: 0; 
  margin-left:20px;
}
.deliver-row .arrow {
	font-size: 16px;
	color: var(--gold-color, #0ff);
	transition: transform 0.3s ease;
}
/*--------------------------------------------------------------
# Use Cases
--------------------------------------------------------------*/

#Use_Cases .section-title {
	padding-bottom: 40px;
	text-align: center;
}

#Use_Cases .section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 1px;
	margin: 0 0 15px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
	font-family: "Poppins", sans-serif;
}

#Use_Cases .section-title h2::before,
#Use_Cases .section-title h2::after {
	content: "";
	width: 40px;
	height: 1px;
	display: inline-block;
	background:	color: rgba(255, 255, 255, 0.8);
	margin: 4px 10px;
}

#Use_Cases .section-title p {
	margin: 0;
	margin: 0;
	font-size: 30px!important;
	font-weight: 300;
	font-family: "Poppins", sans-serif;
	line-height: 33px!important;
	color: var(--gold-color);
}
@media (max-width: 768px) {
	#Use_Cases .section-title p {
		font-size: 30px!important;
		line-height: 33px;
	}
}

.Use_Cases .box {
	padding: 20px 20px 40px 20px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
    background: rgba(26, 24, 20, 0.35);
    border-radius: 15px;
    box-shadow: 0 0 20px 1px #555;
    cursor: pointer;	
}
.title {
	display: block;
	font-size: 28px;
	font-weight: 700;
	color: #fff;
}

.Use_Cases .box h4 {
	font-size: 20px;
	font-weight: 600;
	padding: 0;
	margin: 20px 0;
	color: var(--gold-color);
	font-family: "Poppins", sans-serif;
}

.Use_Cases .box p {
	color: #aaaaaa;
	font-size: 15px;
	margin: 0;
	padding: 0;
}

.Use_Cases .box:hover {
	padding: 10px 20px 50px 20px;
	cursor: pointer;
	border-radius: 15px;
	box-shadow: 0 0 20px  #888;
}

.Use_Cases .box:hover span,  .Use_Cases .box:hover p {
	color:#fff;
}
 .Use_Cases .box:hover h4 {
	color:#fff;
}
 .Use_Cases  span {
	display: block;
	font-size: 16px;
	font-weight: 300;
	padding: 0;
	margin: 20px auto;
	color: #fff;
	font-family: "Poppins", sans-serif;
	width: 60%;
	text-align: center;
}

@media (max-width: 768px) {
	.Use_Cases  span {
		width: 100%;
		padding: 0 10px;
	}
}

#why_us {
	/* background: #efefef; */
	/* cursor: pointer; */
}
.why_us .box {
	padding: 30px 30px 40px 30px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	transition: all ease-in-out 0.3s;
	background: rgba(26, 24, 20, 0.35);
	box-shadow: 0 0 20px 1px #555;
	cursor: pointer;
	border-radius: 9px;
	margin-bottom:20px;
}

.why_us .box span {
	display: block;
	font-size: 22px;
	font-weight: 600;
	color: var(--gold-color);
}

.why_us .box h4 {
	font-size: 26px;
	font-weight: 600;
	padding: 0;
	margin: 20px 0;
	color: rgba(255, 255, 255, 0.8);
	font-family: "Poppins", sans-serif;
}

.why_us .box p {
	color: #aaaaaa;
	font-size: 15px;
	margin: 0;
	padding: 0;
}

.why_us .box:hover {
	padding: 30px 30px 40px 30px;
	box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why_us .box:hover h4, .why_us .box:hover p {
	color: #fff;
}
.why_us .box .icon-text {
	display: flex;
	align-items: center;
	gap: 10px;        
	margin-bottom: 10px; 
}

.why_us .box .icon-text img {
	width: 52px; 
	height: auto;
	filter: brightness(0) invert(1);
	padding:3px;
	border:1px solid rgba(0, 0, 0, 0.4);
	border-radius: 4px;
}
.why_us span {
	display: block;
	font-size: 16px;
	font-weight: 300;
	padding: 0;
	margin: 20px auto;
	color: #fff;
	font-family: "Poppins", sans-serif;
	width: 60%;
	text-align: center;
}

@media (max-width: 768px) {
	.why_us span {
		width: 100%;
		padding: 0 10px;
	}
}
.why_us span.title {
	display:block;
	padding: 0;
	margin-bottom:-30px;	
	color: #fff;
	font: normal 22px "Poppins";
}
.why_us span.content {
	display:block;
	padding: 0;	
	color: rgba(255, 255, 255, 0.8);
	font: normal 15px "Poppins";
	line-height:21px;
}


/*--------------------------------------------------------------
# Use Cases
--------------------------------------------------------------*/

#Ready_To_Transform .section-title {
	padding-bottom: 40px;
	text-align: center;
}

#Ready_To_Transform .section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 1px;
	margin: 0 0 15px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
	font-family: "Poppins", sans-serif;
}

#Ready_To_Transform .section-title h2::before,
#Ready_To_Transform .section-title h2::after {
	content: "";
	width: 40px;
	height: 1px;
	display: inline-block;
	background:	color: rgba(255, 255, 255, 0.8);
	margin: 4px 10px;
}

#Ready_To_Transform .section-title p {
	margin: 0;
	margin: 0;
	font-size: 30px!important;
	font-weight: 300;
	font-family: "Poppins", sans-serif;
	line-height: 33px!important;
	color: var(--gold-color);
}
@media (max-width: 768px) {
	#Ready_To_Transform .section-title p {
		font-size: 30px!important;
		line-height: 33px;
	}
}

.Ready_To_Transform .box {
	padding: 20px 20px 40px 20px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
    background: rgba(26, 24, 20, 0.35);
    border-radius: 15px;
    box-shadow: 0 0 20px 1px #555;
    cursor: pointer;	
}
.title {
	display: block;
	font-size: 28px;
	font-weight: 700;
	color: #fff;
}

.Ready_To_Transform .box h4 {
	font-size: 20px;
	font-weight: 600;
	padding: 0;
	margin: 20px 0;
	color: var(--gold-color);
	font-family: "Poppins", sans-serif;
}

.Ready_To_Transform .box p {
	color: #aaaaaa;
	font-size: 15px;
	margin: 0;
	padding: 0;
}

.Ready_To_Transform .box:hover {
	padding: 10px 20px 50px 20px;
	cursor: pointer;
	border-radius: 15px;
	box-shadow: 0 0 20px  #888;
}

.Ready_To_Transform .box:hover span,  .Ready_To_Transform .box:hover p {
	color:#fff;
}
 .Ready_To_Transform .box:hover h4 {
	color:#fff;
}
 .Ready_To_Transform  span {
	display: block;
	font-size: 16px;
	font-weight: 300;
	padding: 0;
	margin: 20px auto;
	color: #fff;
	font-family: "Poppins", sans-serif;
	width: 60%;
	text-align: center;
}

@media (max-width: 768px) {
	.Ready_To_Transform  span {
		width: 100%;
		padding: 0 10px;
	}
}



/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
}

.menu #menu-flters li:hover, .menu #menu-flters li.filter-active {
  color: var(--gold-color);
}

.menu #menu-flters li:last-child {
  margin-right: 0;
}

.menu .menu-item {
  margin-top: 50px;
}

.menu .menu-img {
  width: 70px;
  border-radius: 50%;
  float: left;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.menu .menu-content {
  margin-left: 85px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .menu-content::after {
  content: "......................................................................"
 "...................................................................."
 "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: #bab3a6;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
  padding-right: 10px;
  background: #1a1814;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: white;
  transition: 0.3s;
}

.menu .menu-content a:hover {
  color: var(--gold-color);
}

.menu .menu-content span {
  background: #1a1814;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
  color: var(--gold-color);
}

.menu .menu-ingredients {
  margin-left: 85px;
  font-style: italic;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
	overflow: hidden;
}

.specials .nav-tabs {
	border: 0;
}

.specials .nav-link {
	border: 0;
	padding: 22px 15px;
	transition: 0.3s;
	color: #fff;
	border-radius: 0;
	border-right: 2px solid var(--gold-color);
	font-weight: 600;
	font-size: 15px;
	/* margin: 10px 0 10px 0; */
}

.specials .nav-link:hover {
	color: var(--gold-color);
}

.specials .nav-link.active {
	color: #1a1814;
	background: var(--gold-color);
	border-color: var(--gold-color);
}

.specials .nav-link:hover {
	border-color: var(--gold-color);
}

.specials .tab-pane.active {
	-webkit-animation: fadeIn 0.5s ease-out;
	animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #fff;
}

.specials .details p {
	color: #aaaaaa;
}

.specials .details p:last-child {
	margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
	border: 0;
	padding: 15px;
  }
}

.photo-wrapper {
	position: relative;
	display: inline-block;
	width: 220px;
	height: 270px;
	border-radius: 50%;
	overflow: hidden;
}

.PhotoStyle {
	aspect-ratio: 4 / 3; 
	border: 10px solid  rgba(205, 164, 94, 0.3); 
	width: 220px;
	height: 270px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.social {
	position: absolute;
	bottom:35px;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 8px;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.social a {
	color: white;
	background: rgba(0, 0, 0, 0.6);
	padding: 6px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s, color 0.3s;
}

.social a:hover {
	background-color: var(--gold-color, #0ff);
	color: #111;
}

.social i {
	font-size: 16px;
}

/*--------------------------------------------------------------
# Book
--------------------------------------------------------------*/
.book .php-email-form {
  width: 100%;
}

.book .php-email-form .form-group {
  padding-bottom: 8px;
}

.book .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.book .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.book .php-email-form .error-message br + br {
  margin-top: 25px;
}

.book .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.book .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.book .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--gold-color);
  border-top-color: #1a1814;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.book .php-email-form input, .book .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: #0c0b09;
  border-color: #625b4b;
  color: white;
}

.book .php-email-form input::-webkit-input-placeholder, .book .php-email-form textarea::-webkit-input-placeholder {
  color: #a49b89;
}

.book .php-email-form input::-moz-placeholder, .book .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.book .php-email-form input::placeholder, .book .php-email-form textarea::placeholder {
  color: #a49b89;
}

.book .php-email-form input:focus, .book .php-email-form textarea:focus {
  border-color: var(--gold-color);
}

.book .php-email-form input {
  height: 44px;
}

.book .php-email-form textarea {
  padding: 10px 12px;
}

.book .php-email-form button[type="submit"] {
  background: var(--gold-color);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book .php-email-form button[type="submit"]:hover {
  background: #d3af71;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.2);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: white;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #d3af71;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #26231d;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--gold-color);
}
.testimonial-text {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}
/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #454035;
  border-bottom: 3px solid #454035;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Finals
--------------------------------------------------------------*/
.final .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.final .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.2);
}

.final .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: white;
}

.final .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0 45px;
}

.final .testimonial-item .quote-icon-left, .final .testimonial-item .quote-icon-right {
  color: #d3af71;
  font-size: 26px;
}

.final .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.final .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.final .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #26231d;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.final .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.final .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.final .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--gold-color);
}
.final-text {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}
/*--------------------------------------------------------------
# team
--------------------------------------------------------------*/

#team .section-title {
	padding-bottom: 40px;
	text-align: center;
}
#team .section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 1px;
	margin: 0 0 15px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #1A272E;
	font-family: "Poppins", sans-serif;
}
#team .section-title h2::before,
#team .section-title h2::after {
	content: "";
	width: 40px;
	height: 1px;
	display: inline-block;
	background: #1A272E;
	margin: 4px 10px;
}
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}


.team .member:hover .member-info {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
	opacity: 1;
	transition: 0.4s;
}

.team .member:hover .member-info-content {
	bottom: 60px;
	transition: bottom 0.4s;
}

.team .member:hover .social {
	bottom: 0;
	transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  background: var(--gold-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #bab3a6;
}

.contact .info .open-hours, .contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--gold-color);
  border-top-color: #1a1814;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: #0c0b09;
  border-color: #625b4b;
  color: white;
}

.contact .php-email-form input::-webkit-input-placeholder, .contact .php-email-form textarea::-webkit-input-placeholder {
  color: #a49b89;
}

.contact .php-email-form input::-moz-placeholder, .contact .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.contact .php-email-form input::placeholder, .contact .php-email-form textarea::placeholder {
  color: #a49b89;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: var(--gold-color);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--gold-color);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #d3af71;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #0c0b09;
  border-top: 1px solid #37332a;
  border-bottom: 1px solid #28251f;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #fff;
}
.social-links {
  display: none;
}
@media (max-width: 768px) {
	.social-links {
		 display: flex;
		margin:20px 0 0 20px;
	}
	.social-links a {
	  font-size: 18px;
	  display: inline-block;
	  background: #28251f;
	  color: #fff;
	  line-height: 1;
	  padding: 8px 0;
	  margin-right: 4px;
	  border-radius: 50%;
	  text-align: center;
	  width: 36px;
	  height: 36px;
	  transition: 0.3s;
	}

	.social-links a:hover {
	  background: var(--gold-color);
	  color: #fff;
	  text-decoration: none;
	}
}
.social-icons {
display:none;
}
@media (max-width: 768px) {
	
	
.social-icons {
  display: flex;
  gap: 12px;
  margin: 20px 0 0 20px;
}

.social-icons .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: #28251f;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  transition: background 0.3s, transform 0.3s;
  text-decoration: none;
  position: relative;
}

.social-icons .icon i {
  font-size: inherit;
  line-height: 1;
  transition: color 0.3s ease;
  transform: translate(-1px, -1px); /* Леко нагоре и наляво */
}
  
.social-icons .icon:hover {
  background: var(--gold-color, #c2a35e);
  transform: scale(1.1);
}

.social-icons .icon:hover i {
  color: #fff;
}


}
#footer .footer-top h4 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
	font-family: "Poppins", sans-serif;
}

#footer .footer-top .footer-links {
  margin-top: 8px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--gold-color);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 2px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--gold-color);
}
#footer .footer-top .footer-newsletter form {
	margin-top: 10px;
	background: #28251f;
	padding: 6px 10px;
	position: relative;
	border-radius: 50px;
	border: 1px solid #454035;
	
}
@media (min-width: 768px) {
	#footer .footer-top .footer-newsletter form {
	margin-top: 10px;
	background: #28251f;
	padding: 6px 10px;
	position: relative;
	border-radius: 50px;
	border: 1px solid #454035;
	width:320px!important;
}
}


#footer .footer-top .footer-newsletter form input[type="email"] {
	border: 0;
	padding: 4px;
	width: calc(100% - 110px);
	background: #28251f;
	color: white;
	outline: none;
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: var(--gold-color);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #d3af71;
}

#footer .copyright {
  text-align: center;
  padding-top: 10px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}


	.social-links_footer {
		margin:20px 0 0 20px;
	}
	.social-links_footer a {
	  font-size: 18px;
	  display: inline-block;
	  background: #28251f;
	  color: #fff;
	  line-height: 1;
	  padding: 8px 0;
	  margin-right: 4px;
	  border-radius: 50%;
	  text-align: center;
	  width: 36px;
	  height: 36px;
	  transition: 0.3s;
	}

	.social-links_footer a:hover {
	  background: var(--gold-color);
	  color: #fff;
	  text-decoration: none;
	}

.form-control::placeholder {
  color: #777!important;
  opacity: 1;  
}

#contactModal .modal-content {
  background-color: #000;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  border: none;
  font-family: "Poppins", sans-serif;
  height: 100%;
  transition: all 0.3s ease;
  padding: 20px;
  max-width: 100%;
  overflow-x: hidden;
}


#contactModal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
}


#contactModal .modal-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

#contactModal .modal-title {
  font-family: "Poppins", sans-serif;
  color: #fff;
}

#contactModal .modal-title-wrapper .main-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}

#contactModal .modal-title-wrapper .modal-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #ccc;
  margin: 0;
  font-family: "Poppins", sans-serif;
}


#contactModal input,
#contactModal select,
#contactModal textarea {
  background-color: #111;
  border: 1px solid #444;
  color: #fff;
  border-radius: 6px;
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
}

#contactModal input::placeholder,
#contactModal textarea::placeholder {
  color: #bbb;
}

#contactModal input:focus,
#contactModal select:focus,
#contactModal textarea:focus {
  outline: none;
  border-color: var(--gold-color);
  box-shadow: 0 0 5px rgba(255, 193, 7, 0.7);
}

#contactModal label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
  color: #ddd;
}


#contactModal button[type="submit"] {
  background-color: #111;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: white;
  border: 2px solid var(--gold-color);
  box-shadow: 0 0 8px var(--gold-color);
  margin-top: 20px;
}

#contactModal button[type="submit"]:hover {
  background: var(--gold-color);
  color: #111;
  box-shadow: 0 0 15px var(--gold-color), 0 0 25px var(--gold-color);
}


#contactModal .btn-close {
  filter: invert(1);
}


.my-3 {
  display: none;
}


#contactModal .form-group {
  margin-bottom: 15px;
}

#contactModal .row {
  gap: 10px 0;
  display: flex;
  flex-wrap: wrap;
}


#contactModal .modal-dialog.modal-right {
  position: fixed;
  top: 0;
  right: 0;
  margin: 0;
  height: 100%;
  transform: none;
  max-width: 500px;
  width: 100%;
  overflow-x: hidden;
}


#contactModal .modal-body {
  overflow-y: auto;
  max-height: calc(100vh - 120px);
  padding-right: 10px;
}


@media (max-width: 767.98px) {
  #contactModal .modal-dialog.modal-right {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 0;
  }

  #contactModal .modal-content {
    height: 100% !important;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }

  #contactModal .modal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    max-height: none;
  }

  #contactModal .row {
    flex-direction: column;
  }

  #contactModal .col-md-6 {
    width: 100%;
  }
}


#contactModal .modal-dialog {
  margin: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

#contactModal form {
  width: 100%;
  overflow-x: hidden;
}

body.modal-open {
  overflow-x: hidden;
}
/*--------------------------------------------------------------
# AIDENTIT RESULTS & SOCIAL PROOF SECTION
--------------------------------------------------------------*/

.testimonials {
  /* Промяна: Премахнат е background: #0c0d13; за да се вижда основния фон на сайта */
  padding: 60px 0;
}

.effect-intro-text {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 800px;
  margin: 15px auto 40px auto;
}

.flow-diagram-row {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-icon {
  width: 70px;
  height: 70px;
  background: rgba(205, 164, 94, 0.1);
  border: 2px solid rgba(205, 164, 94, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.flow-icon i {
  font-size: 2.2rem;
  color: var(--gold-color);
  line-height: 0;
}

.flow-title {
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
}

.flow-arrow {
  color: var(--gold-color);
  font-size: 2rem;
  align-self: center;
  margin: 0;
  padding: 0;
}

.benefits-subtitle {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-top: 60px;
  margin-bottom: 30px;
  color: white;
}

.result-card {
  background: rgba(20, 19, 18, 0.4);
  border: 1px solid rgba(205, 164, 94, 0.2);
  border-radius: 4px;
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}

.result-card:hover {
  background: rgba(30, 29, 28, 0.8);
  border-color: var(--gold-color);
}

.result-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--gold-color);
  line-height: 1;
}

.result-title {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0;
  color: #fff;
}

.result-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Overriding .btn-menu within testimonials for this specific button */
#testimonials .btn-menu {
  background: var(--gold-color);
  color: #111;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--gold-color);
  box-shadow: 0 0 15px var(--gold-color), 0 0 25px var(--gold-color);
}

#testimonials .btn-menu:hover {
  background: none;
  color: white;
  box-shadow: 0 0 8px var(--gold-color);
}
/*--------------------------------------------------------------
# Digital Workforce Section
--------------------------------------------------------------*/
.digital-workforce {
  padding: 60px 0;
  background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent black for depth */
}

.nav-tabs-workforce {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.nav-tabs-workforce .nav-item {
  margin: 0 10px;
}

.nav-tabs-workforce .nav-link {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: #fff;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-tabs-workforce .nav-link i {
  font-size: 22px;
  line-height: 0;
}

.nav-tabs-workforce .nav-link:hover {
  border-bottom-color: rgba(205, 164, 94, 0.5);
  color: #e5be77;
}

.nav-tabs-workforce .nav-link.active {
  border-bottom-color: var(--gold-color);
  color: var(--gold-color);
  background: transparent;
}

.workforce-text-content .for-whom {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.workforce-text-content h4 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.workforce-text-content p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.workforce-text-content .btn-menu {
    border: 2px solid var(--gold-color);
    color: var(--gold-color);
    background: transparent;
}

.workforce-text-content .btn-menu:hover {
    background: var(--gold-color);
    color: #111;
}

.workforce-visual-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.animation-container {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

/* ---== Funding Animation (Looped) ==--- */
.funding-animation .logo-cloud {
  position: absolute;
  width: 100%;
  height: 100%;
}
.funding-animation .logo-item {
  position: absolute;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.3);
  transition: all 1s ease-in-out;
}
.funding-animation .scan-beam {
  position: absolute;
  top: 0;
  left: -10%;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold-color), transparent);
  box-shadow: 0 0 15px 5px var(--gold-color);
  opacity: 0;
}
.funding-animation .final-target {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 4rem;
  color: var(--gold-color);
  opacity: 0;
}
.funding-animation .final-target img {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(3deg); /* Turns white logo to gold */
}

.tab-pane.active .funding-animation .scan-beam { animation: scan 6s ease-in-out infinite; }
.tab-pane.active .funding-animation .irrelevant { animation: fade-out 6s infinite; }
.tab-pane.active .funding-animation .relevant { animation: align-items 6s infinite; color: rgba(255, 255, 255, 0.8); }
.tab-pane.active .funding-animation .final-target { animation: show-target 6s ease-in-out infinite; }

@keyframes scan {
  0% { left: -10%; opacity: 0; }
  10% { left: -10%; opacity: 1; }
  50% { left: 110%; opacity: 1; }
  51%, 100% { left: 110%; opacity: 0; }
}
@keyframes fade-out {
  0%, 30% { opacity: 1; transform: scale(1); }
  50% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(0.8); }
}
@keyframes align-items {
  0%, 40% { transform: none; opacity: 1; }
  60% { left: 75%; transform: translateX(-50%) scale(0.9); opacity: 0; }
  100% { left: 75%; transform: translateX(-50%) scale(0.9); opacity: 0; }
}
@keyframes show-target {
  0%, 50% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
  70%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}


/* ---== Content Animation (Looped) ==--- */
.content-animation .content-input, .content-animation .content-processor, .content-animation .content-output-item {
  position: absolute;
  font-size: 3rem;
  color: #fff;
}
.content-animation .content-input { top: 50%; left: 0; transform: translateY(-50%); }
.content-animation .content-processor { top: 50%; left: 50%; font-size: 4rem; transform: translate(-50%, -50%); color: var(--gold-color); opacity: 0; }
.content-animation .content-output-item { top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0; }

.tab-pane.active .content-animation .content-input { animation: content-slide-in 6s infinite; }
.tab-pane.active .content-animation .content-processor { animation: processor-pulse 2s infinite, processor-fade-in 6s infinite; }
.tab-pane.active .content-animation .linkedin { animation: fan-out-1 6s infinite; }
.tab-pane.active .content-animation .blog { animation: fan-out-2 6s infinite; }
.tab-pane.active .content-animation .tiktok { animation: fan-out-3 6s infinite; }
.tab-pane.active .content-animation .email { animation: fan-out-4 6s infinite; }

@keyframes content-slide-in {
  0%, 100% { left: 0; opacity: 1; transform: translateY(-50%) scale(1); }
  25% { left: 20%; opacity: 0; transform: translateY(-50%) scale(0.8); }
  35%, 90% { left: 20%; opacity: 0; }
}
@keyframes processor-fade-in {
  0%, 90% { opacity: 0; }
  15%, 80% { opacity: 1; }
}
@keyframes fan-out-1 { 0%, 25% { opacity: 0; } 50%, 100% { transform: translate(-150%, -150%); opacity: 1; } }
@keyframes fan-out-2 { 0%, 30% { opacity: 0; } 55%, 100% { transform: translate(50%, -150%); opacity: 1; } }
@keyframes fan-out-3 { 0%, 35% { opacity: 0; } 60%, 100% { transform: translate(-150%, 50%); opacity: 1; } }
@keyframes fan-out-4 { 0%, 40% { opacity: 0; } 65%, 100% { transform: translate(50%, 50%); opacity: 1; } }


/* ---== Knowledge Animation (Looped) ==--- */
.knowledge-animation .knowledge-brain, .knowledge-animation .knowledge-query, .knowledge-animation .knowledge-answer {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 5rem; color: #fff;
}
.knowledge-animation .knowledge-brain { animation: brain-idle 4s infinite ease-in-out; }
.knowledge-animation .knowledge-query { font-size: 3rem; left: 10%; opacity: 0; }
.knowledge-animation .knowledge-answer { font-size: 4rem; color: var(--gold-color); left: 80%; opacity: 0; transform: translate(-50%, -50%) scale(0.5); }

.tab-pane.active .knowledge-animation .knowledge-query { animation: query-in 6s infinite; }
.tab-pane.active .knowledge-animation .knowledge-brain { animation: brain-pulse-loop 6s infinite; }
.tab-pane.active .knowledge-animation .knowledge-answer { animation: answer-out 6s infinite; }

@keyframes query-in {
  0%, 90% { left: 10%; opacity: 0; }
  25%, 75% { left: 40%; opacity: 1; }
}
@keyframes brain-pulse-loop {
  0%, 25%, 55%, 100% { color: #fff; transform: translate(-50%, -50%) scale(1); }
  40% { color: var(--gold-color); transform: translate(-50%, -50%) scale(1.1); }
}
@keyframes answer-out {
  0%, 50%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  65%, 85% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@media (max-width: 991px) {
    .workforce-text-content {
        text-align: center;
    }
    .workforce-visual-content {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
  .nav-tabs-workforce {
    flex-wrap: wrap;
  }
  .nav-tabs-workforce .nav-link {
    font-size: 14px;
    padding: 10px 12px;
  }
  .workforce-text-content h4 {
    font-size: 24px;
  }
}



.contact-form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    height: 100%; /* За да заеме цялото налично място в modal-body */
    min-height: 300px; /* Минимална височина, за да изглежда добре */
}

.contact-form-success .success-icon {
    margin-bottom: 20px;
}

.contact-form-success .success-icon svg {
    color: #18d26e; /* Зелен цвят за успех */
    width: 64px;
    height: 64px;
}

.contact-form-success h3 {
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-form-success p {
    color: #ccc;
    font-size: 16px;
}
/* --- Стил за Online индикатор (ЗЛАТНА ВЕРСИЯ) --- */

.status-indicator {
  display: inline-flex; /* Подрежда точката и текста на един ред */
  align-items: center; /* Центрира ги вертикално */
  background-color: rgba(0, 0, 0, 0.4); /* Тъмен полупрозрачен фон */
  border: 1px solid rgba(232, 158, 58, 0.2); /* Лека рамка в златно */
  border-radius: 20px; /* Заоблени ъгли */
  padding: 3px 10px; /* Отстояния */
  margin-left: 8px; /* Разстояние от '(beta)' */
  vertical-align: middle; /* Подравнява го с текста на логото */
}

.status-dot {
  width: 9px;
  height: 9px;
  background-color: #e89e3a; /* << ПРОМЯНА: Основният цвят е златен */
  border-radius: 50%;
  margin-right: 6px;
  
  /* Анимация за пулсиращ ефект */
  animation: pulse-gold 2s infinite;
}

.status-text {
  font-size: 11px;
  color: #e0e0e0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Ключови кадри за ЗЛАТНАТА анимация */
@keyframes pulse-gold {
  0% {
    transform: scale(0.95);
    /* << ПРОМЯНА: Сянката вече е в златно */
    box-shadow: 0 0 0 0 rgba(232, 158, 58, 0.7); 
  }
  
  70% {
    transform: scale(1);
    /* << ПРОМЯНА: Сянката вече е в златно */
    box-shadow: 0 0 0 7px rgba(232, 158, 58, 0);
  }
  
  100% {
    transform: scale(0.95);
    /* << ПРОМЯНА: Сянката вече е в златно */
    box-shadow: 0 0 0 0 rgba(232, 158, 58, 0);
  }
}
/* ---== NEW: Compliance Animation (Scanner/Shield) ==--- */
.compliance-animation .compliance-doc {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 4rem; color: rgba(255,255,255,0.2);
}
.compliance-animation .compliance-scanner {
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  width: 120px; height: 2px;
  background: var(--gold-color);
  box-shadow: 0 0 15px var(--gold-color);
  opacity: 0;
}
.compliance-animation .compliance-shield {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0);
  font-size: 5rem; color: var(--gold-color);
  filter: drop-shadow(0 0 10px rgba(232, 158, 58, 0.5));
}
.compliance-animation .compliance-status {
  position: absolute; bottom: 20%; left: 50%; transform: translateX(-50%);
  font-family: "Courier New", monospace; font-weight: bold; color: var(--gold-color);
  opacity: 0; letter-spacing: 2px; font-size: 1.2rem;
}

.tab-pane.active .compliance-animation .compliance-doc { animation: doc-pulse 4s infinite; }
.tab-pane.active .compliance-animation .compliance-scanner { animation: scanner-move 3s ease-in-out infinite; }
.tab-pane.active .compliance-animation .compliance-shield { animation: shield-pop 6s ease-in-out infinite; }
.tab-pane.active .compliance-animation .compliance-status { animation: status-fade 6s ease-in-out infinite; }

@keyframes scanner-move {
  0% { top: 30%; opacity: 0; width: 0; }
  20% { top: 30%; opacity: 1; width: 120px; }
  80% { top: 70%; opacity: 1; width: 120px; }
  100% { top: 70%; opacity: 0; width: 0; }
}
@keyframes shield-pop {
  0%, 45% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  50%, 90% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  95%, 100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0; }
}
@keyframes status-fade {
  0%, 50% { opacity: 0; }
  60%, 90% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes doc-pulse {
  0%, 100% { color: rgba(255,255,255,0.2); }
  50% { color: rgba(255,255,255,0.4); }
}

/* ---== NEW: SEO & Ops Animation (Graph/Rocket) ==--- */
.seo-animation .seo-grid-bg {
  position: absolute; bottom: 0; width: 100%; height: 50%;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to top, black, transparent);
  -webkit-mask-image: linear-gradient(to top, black, transparent);
}
.seo-animation .seo-search {
  position: absolute; top: 40%; left: 20%; font-size: 3rem; color: #fff; opacity: 0;
}
.seo-animation .seo-graph-bar {
  position: absolute; bottom: 20%; width: 30px; background: linear-gradient(to top, rgba(232, 158, 58, 0.2), var(--gold-color));
  transform-origin: bottom; transform: scaleY(0);
}
.seo-animation .bar-1 { left: 35%; height: 60px; }
.seo-animation .bar-2 { left: 50%; height: 100px; }
.seo-animation .bar-3 { left: 65%; height: 150px; }
.seo-animation .seo-rocket {
  position: absolute; bottom: 20%; left: 65%; font-size: 3rem; color: #fff; opacity: 0;
}

.tab-pane.active .seo-animation .seo-search { animation: seo-scan 6s infinite; }
.tab-pane.active .seo-animation .bar-1 { animation: grow-bar 6s infinite 1s; }
.tab-pane.active .seo-animation .bar-2 { animation: grow-bar 6s infinite 1.5s; }
.tab-pane.active .seo-animation .bar-3 { animation: grow-bar 6s infinite 2s; }
.tab-pane.active .seo-animation .seo-rocket { animation: rocket-launch 6s infinite 2.5s; }

@keyframes seo-scan {
  0% { transform: scale(0.5); opacity: 0; }
  10%, 30% { transform: scale(1); opacity: 1; }
  40%, 100% { transform: scale(1) translateX(100px); opacity: 0; }
}
@keyframes grow-bar {
  0% { transform: scaleY(0); }
  20%, 80% { transform: scaleY(1); }
  100% { transform: scaleY(0); }
}
@keyframes rocket-launch {
  0% { transform: translateY(0); opacity: 0; }
  10% { transform: translateY(0); opacity: 1; color: var(--gold-color); }
  50% { transform: translateY(-150px) scale(1.2); opacity: 1; }
  100% { transform: translateY(-200px); opacity: 0; }
}