header{
    position: absolute;
}

.hero-section .floating {
	animation: floating 3s ease-in-out infinite;
}

.rose-gold-gradient {
	background: linear-gradient(135deg, #e0b298 0%, #d4a276 100%);
}

.rose-gold-text {
	background: linear-gradient(135deg, #e0b298 0%, #d4a276 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.btn-hover-effect {
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: all 0.4s ease;
}

.btn-hover-effect:before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: all 0.6s ease;
}

.btn-hover-effect:hover:before {
	left: 100%;
}

.animated-border {
	position: relative;
}

.animated-border:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(135deg, #e0b298 0%, #d4a276 100%);
	transition: width 0.3s ease;
}

.animated-border:hover:after {
	width: 100%;
}

.card-3d {
	transform-style: preserve-3d;
	transition: all 0.5s ease;
}

.card-3d:hover {
	transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
}

.card-3d:hover .card-shine {
	opacity: 1;
}

.card-shine {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 40%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0) 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.parallax-bg {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: transparent;
	border: 2px solid #e0b298;
	opacity: 0.7;
}

.swiper-pagination-bullet-active {
	background: #e0b298;
	opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
	color: #e0b298;
}

.custom-scrollbar::-webkit-scrollbar {
	width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
	background: #0a0a0a;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #e0b298 0%, #d4a276 100%);
	border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #d4a276 0%, #e0b298 100%);
}

.hero-text-animation {
	animation: fadeInUp 1s ease forwards;
	opacity: 0;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.main-banner {
	background: url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.main-banner .banner-overlay {
	background: rgba(0, 0, 0, 0.5);
	background: rgba(26, 27, 80, 0.95);
	padding-top: 100px;
	min-height: 100vh;
}

.btn-hover-effect {
	transition: all 0.3s ease;
}

.btn-hover-effect:hover {
	box-shadow: 0 0 15px rgba(224, 178, 152, 0.5);
	transform: translateY(-2px);
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: grid;
}

.card-shine {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 40%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0) 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.service-card {
	transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
	transform-style: preserve-3d;
	background: linear-gradient(145deg, #0f0f0f, #0a0a0a);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.service-card:hover {
	transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
	border-color: #e0b298;
}

.service-card:hover .card-shine {
	opacity: 1;
}

.service-card:hover .service-icon {
	transform: scale(1.1) rotate(10deg);
}

.service-card .service-icon {
	transition: all 0.3s ease;
}

.social-icon:hover {
	transform: translateY(-5px) rotate(10deg);
}

.gradient-bg {
	background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.input-focus-effect {
	transition: all 0.3s ease;
}

.input-focus-effect:focus {
	box-shadow: 0 0 0 2px rgba(224, 178, 152, 0.5);
}

.hero-btn-sm {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-btn-sm:before {
	animation: pulse 2s infinite;
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

@keyframes pulse {
	0% {
		left: 100%;
	}
	50% {
		right: 100%;
	}
}