* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

/* Header Styles */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.36);
	backdrop-filter: blur(2px);
	padding: 20px 0;
	transition: all 0.3s ease;
}

.header.white-header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.white-header .nav-link,
.header.white-header .logo-main,
.header.white-header .logo-sub,
.header.white-header .language {
	color: #333;
}

.header.white-header .mobile-menu-toggle span {
	background: #333;
}

.navbar {
	width: 100%;
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-left,
.nav-right {
	display: flex;
	align-items: center;
	gap: 40px;
}

.nav-link {
	color: white;
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: #e91e63;
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	height: 2px;
	background: #e91e63;
}

.logo {
	text-align: center;
}

.logo-main {
	display: block;
	color: white;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 4px;
	line-height: 1;
}

.logo-sub {
	display: block;
	color: white;
	font-size: 10px;
	font-weight: 300;
	letter-spacing: 2px;
	margin-top: 2px;
	opacity: 0.9;
}

.language {
	display: flex;
	align-items: center;
	gap: 8px;
	color: white;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
}

.flag {
	width: 24px;
	height: 16px;
	object-fit: cover;
	border-radius: 2px;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 2px;
	background: white;
	transition: all 0.3s ease;
}

/* Hero Section */
.hero {
	padding-top:50px;
	position: relative;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, 
		rgba(45, 55, 45, 0.85) 0%, 
		rgba(35, 45, 35, 0.9) 30%, 
		rgba(25, 35, 25, 0.85) 70%, 
		rgba(45, 55, 45, 0.8) 100%);
	z-index: -1;
}

.hero-content {
	position: relative;
	width: 100%;
	max-width: 1400px;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hero-main {
	flex: 1;
}

.hero-title {
	color: black;
	margin-bottom: 60px;
}

.title-line1 {
	display: block;
	font-size: 120px;
	font-weight: 300;
	line-height: 0.9;
	letter-spacing: 8px;
}

.title-line2 {
	display: block;
	font-size: 80px;
	font-weight: 300;
	line-height: 1;
	letter-spacing: 12px;
	margin-top: 10px;
}

.features-container {
	display: flex;
	gap: 30px;
	margin-bottom: 80px;
	flex-wrap: wrap;
}

.feature-circle {
	width: 160px;
	height: 160px;
	border: 3px solid #3757d4;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: white;
	position: relative;
	transition: all 0.3s ease;
	background-color:#ffffff6b;
}

.feature-circle:hover {
	transform: scale(1.05);
	border-color: #152564;
}

.feature-number {
	font-size: 36px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 8px;
	color:#000000;
}

.feature-text {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 1.2;
	color:#000000;
}

.feature-text-center {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 1.3;
	color:#000000;
}



.new-project {
	position: absolute;
	bottom: 100px;
	right: 40px;
}

.new-project-text {
	color: black;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 2px;
	writing-mode: vertical-rl;
	text-orientation: mixed;
}

.hero-pagination {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
}

.pagination-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.pagination-dot.active {
	background: white;
	transform: scale(1.2);
}

.pagination-dot:hover {
	background: rgba(255, 255, 255, 0.6);
}

/* Projects Section */
.projects-section {
	padding: 100px 0 0;
	background: #f8f9fa;
	position: relative;
}

.section-header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 60px;
	gap: 30px;
}

.section-line {
	width: 100px;
	height: 2px;
	background: #333;
}

.section-line-right {
	width: 100px;
	height: 2px;
	background: #e91e63;
}

.section-title {
	font-size: 36px;
	font-weight: 600;
	color: #333;
	text-align: center;
	white-space: nowrap;
}

.projects-slider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin-bottom: 60px;
}

.slider-btn {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid #ddd;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #666;
}

.slider-btn:hover {
	background: #e91e63;
	color: white;
	border-color: #e91e63;
}

.projects-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px;
}

.project-slide {
	opacity: 0.5;
	transform: scale(0.8);
	transition: all 0.3s ease;
}

.project-slide.active {
	opacity: 1;
	transform: scale(1);
}

.project-logo {
	text-align: center;
	padding: 20px;
}

.project-name {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-top: 15px;
	line-height: 1.2;
}

.project-name span {
	font-weight: 400;
	color: #666;
}

.projects-building {
	margin-top: 40px;
}

.building-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

/* About Section */
.about-section {
	padding: 100px 0;
	background: white;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 60px;
}

.about-text {
	flex: 1;
}

.about-text h2 {
	font-size: 42px;
	font-weight: 600;
	color: #333;
	margin-bottom: 30px;
}

.about-text p {
	font-size: 18px;
	color: #666;
	margin-bottom: 40px;
	line-height: 1.8;
}

.about-features {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 20px;
}

.feature-icon {
	font-size: 32px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8f9fa;
	border-radius: 50%;
}

.feature-info h4 {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
}

.feature-info p {
	font-size: 14px;
	color: #666;
	margin: 0;
}

.about-image {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-image img {
	max-width: 100%;
	border-radius: 10px;
}

/* Services Section */
.services-section {
	padding: 100px 0;
	background: #f8f9fa;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.service-card {
	background: white;
	padding: 40px 30px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.service-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
}

.service-card p {
	color: #666;
	font-size: 16px;
}

/* Contact CTA */
.contact-cta {
	padding: 80px 0;
	background: linear-gradient(135deg, #001be2 0%, #4654ba 100%);
	color: white;
	text-align: center;
}

.cta-content h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 20px;
}

.cta-content p {
	font-size: 18px;
	margin-bottom: 30px;
	opacity: 0.9;
}

.cta-button {
	display: inline-block;
	background: white;
	color: #001be2;
	padding: 15px 40px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
}

.cta-button:hover {
	background: #f8f9fa;
	transform: translateY(-2px);
}

/* Footer */
.footer {
	background: #2c3e50;
	color: white;
	padding: 60px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-logo .logo-main {
	color: white;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 3px;
	display: block;
}

.footer-logo .logo-sub {
	color: white;
	font-size: 10px;
	letter-spacing: 1.5px;
	display: block;
	margin-top: 5px;
}

.footer-section h4 {
	color: white;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.footer-section p {
	color: #bdc3c7;
	line-height: 1.6;
	margin-bottom: 15px;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 10px;
}

.footer-section ul li a {
	color: #bdc3c7;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: #e91e63;
}

.contact-info p {
	margin-bottom: 10px;
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.social-links a {
	color: #bdc3c7;
	text-decoration: none;
	transition: color 0.3s ease;
}

.social-links a:hover {
	color: #e91e63;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid #34495e;
	color: #bdc3c7;
}

/* Projects Page Styles */
.projects-hero {
	padding: 120px 0 60px;
	background: #f8f9fa;
}

.page-title {
	font-size: 48px;
	font-weight: 600;
	color: #333;
	text-align: center;
	white-space: nowrap;
}

.projects-main-slider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px;
	margin-top: 60px;
}

.main-slider-btn {
	background: white;
	border: 2px solid #ddd;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #666;
}

.main-slider-btn:hover {
	background: #e91e63;
	color: white;
	border-color: #e91e63;
}

.main-projects-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 80px;
}

.main-project-slide {
	opacity: 0.4;
	transform: scale(0.7);
	transition: all 0.5s ease;
}

.main-project-slide.active {
	opacity: 1;
	transform: scale(1);
}

.project-logo-large {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 30px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	min-width: 400px;
}

.project-icon {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8f9fa;
	border: 2px solid #ddd;
}

.project-icon.gold {
	background: linear-gradient(135deg, #D4AF37, #FFD700);
	border-color: #D4AF37;
}

.icon-s {
	font-size: 48px;
	font-weight: 700;
	color: white;
}

.icon-text {
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	color: #666;
}

.icon-text .small {
	font-size: 10px;
}

.icon-text .subtitle {
	font-size: 8px;
	color: #999;
}

.project-info h2 {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	margin-bottom: 5px;
}

.project-info h3 {
	font-size: 20px;
	font-weight: 400;
	color: #666;
	margin-bottom: 10px;
}

.project-subtitle {
	font-size: 12px;
	color: #999;
	letter-spacing: 1px;
}

.projects-building-section {
	padding: 0;
	background: #f8f9fa;
}

.building-container {
	width: 100%;
	overflow: hidden;
}

.projects-building-image {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

/* Project Details */
.project-details {
	padding: 100px 0;
	background: white;
}

.project-detail-card {
	display: none;
	margin-bottom: 60px;
}

.project-detail-card.active {
	display: block;
}

.project-content {
	display: flex;
	align-items: center;
	gap: 60px;
}

.project-text {
	flex: 1;
}

.project-text h2 {
	font-size: 36px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
}

.project-location {
	font-size: 16px;
	color: #e91e63;
	margin-bottom: 20px;
	font-weight: 500;
}

.project-description {
	font-size: 18px;
	color: #666;
	line-height: 1.8;
	margin-bottom: 30px;
}

.project-features {
	margin-bottom: 40px;
}

.feature {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid #eee;
}

.feature:last-child {
	border-bottom: none;
}

.feature-label {
	font-weight: 600;
	color: #333;
	font-size: 16px;
}

.feature-value {
	color: #666;
	font-size: 16px;
}

.project-buttons {
	display: flex;
	gap: 20px;
}

.btn-primary {
	background: #001be2;
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-primary:hover {
	background: #001be285;
	transform: translateY(-2px);
}

.btn-secondary {
	background: transparent;
	color: #001be2;;
	padding: 15px 30px;
	border: 2px solid #001be2;;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-secondary:hover {
	background: #001be285;
	color: white;
}

.project-image {
	flex: 1;
}

.project-image img {
	width: 100%;
	border-radius: 10px;
}

/* Contact Page Styles */
.contact-hero {
	padding: 120px 0 60px;
	background: #f8f9fa;
}

.contact-header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	gap: 30px;
}

.contact-subtitle {
	text-align: center;
	font-size: 18px;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.contact-content {
	padding: 80px 0;
	background: white;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.contact-form-section h2 {
	font-size: 32px;
	font-weight: 600;
	color: #333;
	margin-bottom: 30px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 15px;
	border: 2px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	transition: border-color 0.3s ease;
	font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #e91e63;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.checkbox-group {
	flex-direction: row;
	align-items: center;
	gap: 15px;
}

.checkbox-label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 14px;
	color: #666;
}

.checkbox-label input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 0;
}

.submit-btn {
	align-self: flex-start;
	padding: 18px 40px;
	font-size: 16px;
}

.contact-info-section h2 {
	font-size: 32px;
	font-weight: 600;
	color: #333;
	margin-bottom: 30px;
}

.contact-info-card {
	background: #f8f9fa;
	padding: 40px;
	border-radius: 10px;
	margin-bottom: 40px;
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 30px;
}

.info-item:last-child {
	margin-bottom: 0;
}

.info-icon {
	font-size: 24px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	border-radius: 50%;
	flex-shrink: 0;
}

.info-content h4 {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.info-content p {
	color: #666;
	line-height: 1.6;
	margin: 0;
}

.social-media h4 {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-bottom: 20px;
}

.social-link {
	display: inline-block;
	padding: 12px 20px;
	background: #f8f9fa;
	color: #666;
	text-decoration: none;
	border-radius: 5px;
	margin-right: 10px;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: #001be2;
	color: white;
}

.map-section {
	padding: 80px 0 40px;
	background: #f8f9fa;
}

.map-section h2 {
	text-align: center;
	font-size: 32px;
	font-weight: 600;
	color: #333;
	margin-bottom: 40px;
}

.map-container {
	height: 400px;
	background: #ddd;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.map-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-content {
	text-align: center;
	color: #666;
}

.map-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.map-content h3 {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
}

.map-content p {
	font-size: 16px;
	margin-bottom: 25px;
	line-height: 1.6;
}

.map-button {
	background: #e91e63;
	color: white;
	padding: 12px 25px;
	border: none;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.map-button:hover {
	background: #ad1457;
}

.contact-cta-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	color: white;
	text-align: center;
}

.contact-cta-section .cta-content h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 20px;
}

.contact-cta-section .cta-content p {
	font-size: 18px;
	margin-bottom: 40px;
	opacity: 0.9;
}

.cta-phones {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.phone-link {
	display: flex;
	align-items: center;
	gap: 15px;
	background: rgba(255, 255, 255, 0.1);
	padding: 20px 30px;
	border-radius: 10px;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.phone-link:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.phone-icon {
	font-size: 24px;
}

.phone-number {
	font-size: 18px;
	font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.container {
		padding: 0 30px;
	}

	.nav-container {
		padding: 0 30px;
	}

	.hero-content {
		padding: 0 30px;
	}

	.title-line1 {
		font-size: 100px;
	}

	.title-line2 {
		font-size: 70px;
	}

	.features-container {
		gap: 20px;
	}

	.feature-circle {
		width: 140px;
		height: 140px;
	}

	.feature-number {
		font-size: 32px;
	}

	.projects-container {
		gap: 40px;
	}

	.project-logo-large {
		min-width: 350px;
	}
}

@media (max-width: 968px) {
	.nav-left,
	.nav-right {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.hero-content {
		flex-direction: column;
		text-align: center;
		gap: 40px;
	}

	.title-line1 {
		font-size: 80px;
	}

	.title-line2 {
		font-size: 60px;
	}

	.features-container {
		justify-content: center;
		gap: 15px;
	}

	.feature-circle {
		width: 120px;
		height: 120px;
	}

	.feature-number {
		font-size: 28px;
	}

	.feature-text,
	.feature-text-center {
		font-size: 12px;
	}

	.new-project {
		position: static;
		writing-mode: horizontal-tb;
	}

	.new-project-text {
		writing-mode: horizontal-tb;
		text-orientation: initial;
	}

	.about-content {
		flex-direction: column;
		gap: 40px;
	}

	.project-content {
		flex-direction: column;
		gap: 40px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.projects-main-slider {
		gap: 30px;
	}

	.main-projects-container {
		gap: 40px;
	}

	.project-logo-large {
		min-width: 300px;
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}

	.cta-phones {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 20px;
	}

	.nav-container {
		padding: 0 20px;
	}

	.hero-content {
		padding: 0 20px;
	}

	.logo-main {
		font-size: 28px;
		letter-spacing: 3px;
	}

	.logo-sub {
		font-size: 9px;
		letter-spacing: 1.5px;
	}

	.title-line1 {
		font-size: 60px;
		letter-spacing: 4px;
	}

	.title-line2 {
		font-size: 45px;
		letter-spacing: 6px;
	}

	.features-container {
		gap: 10px;
	}

	.feature-circle {
		width: 100px;
		height: 100px;
		border-width: 2px;
	}

	.feature-number {
		font-size: 22px;
	}

	.feature-text,
	.feature-text-center {
		font-size: 10px;
	}

	

	.new-project-text {
		font-size: 20px;
	}

	.section-title {
		font-size: 28px;
	}

	.page-title {
		font-size: 36px;
	}

	.projects-container {
		gap: 20px;
	}

	.main-projects-container {
		gap: 20px;
	}

	.project-logo-large {
		min-width: 280px;
		padding: 20px;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media (max-width: 480px) {
	.features-container {
		grid-template-columns: 1fr 1fr;
		display: grid;
		gap: 15px;
		justify-items: center;
	}

	.feature-circle {
		width: 110px;
		height: 110px;
	}

	.title-line1 {
		font-size: 50px;
	}

	.title-line2 {
		font-size: 38px;
	}

	.hero-title {
		margin-bottom: 40px;
	}

	.features-container {
		margin-bottom: 40px;
	}

	.section-header {
		flex-direction: column;
		gap: 15px;
	}

	.section-line,
	.section-line-right {
		width: 50px;
	}

	.projects-slider {
		flex-direction: column;
		gap: 30px;
	}

	.main-projects-container {
		flex-direction: column;
	}

	.project-logo-large {
		min-width: 250px;
	}
}

/* Animation Effects */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-title {
	animation: fadeInUp 1s ease-out 0.5s both;
}

.features-container {
	animation: fadeInUp 1s ease-out 0.8s both;
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: #e91e63;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #ad1457;
}

/* Project Detail Page Styles */

/* Project Header */
.project-header {
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(15px);
}

.project-header .nav-link,
.project-header .logo-main,
.project-header .logo-sub,
.project-header .language {
	color: white;
}

/* Project Hero */
.project-hero {
	position: relative;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.project-hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
}

.project-hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, 
		rgba(0, 0, 0, 0.4) 0%, 
		rgba(0, 0, 0, 0.6) 50%, 
		rgba(0, 0, 0, 0.4) 100%);
	z-index: -1;
}

.project-hero-content {
	position: relative;
	text-align: center;
	color: white;
	z-index: 1;
}

.project-logo-overlay {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.project-logo-icon {
	width: 120px;
	height: 120px;
	border: 3px solid white;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
}

.logo-s {
	font-size: 60px;
	font-weight: 700;
	color: white;
}

.project-title {
	font-size: 48px;
	font-weight: 300;
	letter-spacing: 4px;
	margin: 0;
}

.project-brand {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 3px;
	opacity: 0.9;
}

.project-pagination {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
}

/* Project Navigation */
.project-nav {
	background: white;
	border-bottom: 1px solid #eee;
	position: sticky;
	top: 90px;
	z-index: 100;
}

.project-nav-menu {
	display: flex;
	justify-content: center;
	gap: 40px;
	padding: 20px 0;
}

.project-nav-link {
	color: #666;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	padding: 10px 20px;
	border-radius: 25px;
	transition: all 0.3s ease;
	position: relative;
}

.project-nav-link:hover,
.project-nav-link.active {
	color: #e91e63;
	background: rgba(233, 30, 99, 0.1);
}

/* Project Overview */
.project-overview {
	padding: 80px 0;
	background: white;
}

.overview-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	align-items: start;
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 30px;
	font-size: 14px;
}

.breadcrumb a {
	color: #666;
	text-decoration: none;
}

.breadcrumb a:hover {
	color: #e91e63;
}

.breadcrumb span {
	color: #ccc;
}

.overview-content h2 {
	font-size: 42px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
}

.project-location {
	font-size: 18px;
	color: #001be2;
	margin-bottom: 30px;
	font-weight: 500;
}

.project-description {
	margin-bottom: 40px;
}

.project-description p {
	font-size: 16px;
	color: #666;
	line-height: 1.8;
	margin-bottom: 20px;
}

.project-highlights {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}

.highlight-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 10px;
}

.highlight-icon {
	font-size: 32px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	border-radius: 50%;
	flex-shrink: 0;
}

.highlight-content h4 {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
}

.highlight-content p {
	font-size: 14px;
	color: #666;
	margin: 0;
}

.info-card {
	background: #f8f9fa;
	padding: 30px;
	border-radius: 15px;
	position: sticky;
	top: 140px;
}

.info-card h3 {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	margin-bottom: 25px;
	text-align: center;
}

.info-list {
	margin-bottom: 30px;
}

.info-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
}

.info-item:last-child {
	border-bottom: none;
}

.info-label {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

.info-value {
	font-size: 14px;
	color: #333;
	font-weight: 600;
	text-align: right;
}

.price-info {
	text-align: center;
	padding: 25px;
	background: white;
	border-radius: 10px;
	margin-bottom: 25px;
}

.price-label {
	font-size: 14px;
	color: #666;
	margin-bottom: 10px;
}

.price-value {
	font-size: 28px;
	font-weight: 700;
	color: #e91e63;
	margin-bottom: 5px;
}

.price-note {
	font-size: 12px;
	color: #999;
}

.contact-buttons {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

/* Apartment Types */
.apartment-types {
	padding: 80px 0;
	background: #f8f9fa;
}

.apartment-tabs {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 50px;
}

.apartment-tab {
	background: white;
	border: 2px solid #ddd;
	padding: 15px 30px;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 600;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
}

.apartment-tab.active,
.apartment-tab:hover {
	background: #e91e63;
	border-color: #e91e63;
	color: white;
}

.apartment-content {
	position: relative;
}

.apartment-type-content {
	display: none;
}

.apartment-type-content.active {
	display: block;
}

.apartment-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.apartment-plan img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.apartment-details h3 {
	font-size: 32px;
	font-weight: 600;
	color: #333;
	margin-bottom: 30px;
}

.apartment-specs {
	margin-bottom: 30px;
}

.spec-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid #eee;
}

.spec-item:last-child {
	border-bottom: none;
}

.spec-label {
	font-size: 16px;
	color: #666;
	font-weight: 500;
}

.spec-value {
	font-size: 16px;
	color: #333;
	font-weight: 600;
}

.apartment-features h4 {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
}

.apartment-features ul {
	list-style: none;
	padding: 0;
}

.apartment-features li {
	padding: 8px 0;
	color: #666;
	position: relative;
	padding-left: 20px;
}

.apartment-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #e91e63;
	font-weight: bold;
}

/* Social Facilities */
.social-facilities {
	padding: 80px 0;
	background: white;
}

.facilities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.facility-card {
	background: #f8f9fa;
	padding: 40px 30px;
	border-radius: 15px;
	text-align: center;
	transition: transform 0.3s ease;
}

.facility-card:hover {
	transform: translateY(-5px);
}

.facility-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.facility-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
}

.facility-card p {
	color: #666;
	font-size: 16px;
}

/* Project Location */
.project-location {
	padding: 20px 0;
	background: #f8f9fa;
	border-radius:15px;
}

.location-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-top: 50px;
}

.location-info h3 {
	font-size: 32px;
	font-weight: 600;
	color: #333;
	margin-bottom: 20px;
}

.location-info p {
	font-size: 16px;
	color: #666;
	line-height: 1.8;
	margin-bottom: 30px;
}

.location-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.location-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: white;
	border-radius: 10px;
}

.location-icon {
	font-size: 24px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e91e63;
	color: white;
	border-radius: 50%;
	flex-shrink: 0;
}

.location-text h4 {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
}

.location-text p {
	font-size: 14px;
	color: #666;
	margin: 0;
}

.location-map {
	height: 400px;
}

.location-map .map-placeholder {
	height: 100%;
	border-radius: 15px;
}

/* Project Gallery */
.project-gallery {
	padding: 80px 0;
	background: white;
}

.gallery-tabs {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.gallery-tab {
	background: #f8f9fa;
	border: none;
	padding: 15px 25px;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 500;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
}

.gallery-tab.active,
.gallery-tab:hover {
	background: #e91e63;
	color: white;
}

.gallery-content {
	position: relative;
}

.gallery-grid {
	display: none;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

.gallery-grid.active {
	display: grid;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	cursor: pointer;
	transition: transform 0.3s ease;
}

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

.gallery-item.large {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 250px;
}

.gallery-item.large img {
	min-height: 400px;
}

/* Project Contact */
.project-contact {
	padding: 80px 0;
	background: #f8f9fa;
}

.project-contact .contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.project-contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-card {
	background: white;
	padding: 40px;
	border-radius: 15px;
	margin-bottom: 30px;
}

.contact-card h3 {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	margin-bottom: 25px;
	text-align: center;
}

.contact-details {
	margin-bottom: 30px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 20px;
}

.contact-item:last-child {
	margin-bottom: 0;
}

.contact-icon {
	font-size: 20px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e91e63;
	color: white;
	border-radius: 50%;
	flex-shrink: 0;
}

.contact-text p {
	color: #666;
	line-height: 1.6;
	margin: 0;
}

.quick-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.action-btn {
	background: #f8f9fa;
	border: 1px solid #ddd;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: left;
}

.action-btn:hover {
	background: #e91e63;
	color: white;
	border-color: #e91e63;
}

.payment-info {
	background: white;
	padding: 30px;
	border-radius: 15px;
}

.payment-info h4 {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-bottom: 20px;
	text-align: center;
}

.payment-options {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.payment-option {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 10px;
}

.payment-icon {
	font-size: 24px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e91e63;
	color: white;
	border-radius: 50%;
	flex-shrink: 0;
}

.payment-text h5 {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
}

.payment-text p {
	font-size: 14px;
	color: #666;
	margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.overview-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.apartment-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.location-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.project-contact .contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.gallery-item.large {
		grid-column: span 1;
		grid-row: span 1;
	}
}

@media (max-width: 968px) {
	.project-nav-menu {
		flex-wrap: wrap;
		gap: 20px;
	}

	.project-nav-link {
		font-size: 14px;
		padding: 8px 16px;
	}

	.project-title {
		font-size: 36px;
	}

	.overview-content h2 {
		font-size: 32px;
	}

	.apartment-tabs {
		flex-wrap: wrap;
		gap: 15px;
	}

	.apartment-tab {
		padding: 12px 20px;
		font-size: 14px;
	}

	.project-highlights {
		grid-template-columns: 1fr;
	}

	.location-features {
		grid-template-columns: 1fr;
	}

	.facilities-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.gallery-tabs {
		gap: 10px;
	}

	.gallery-tab {
		padding: 12px 20px;
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.project-hero {
		height: 70vh;
	}

	.project-title {
		font-size: 28px;
		letter-spacing: 2px;
	}

	.project-logo-icon {
		width: 80px;
		height: 80px;
	}

	.logo-s {
		font-size: 40px;
	}

	.project-nav {
		top: 80px;
	}

	.project-nav-menu {
		padding: 15px 0;
		gap: 15px;
	}

	.overview-content h2 {
		font-size: 28px;
	}

	.apartment-details h3 {
		font-size: 24px;
	}

	.location-info h3 {
		font-size: 24px;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.facilities-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.project-overview,
	.apartment-types,
	.social-facilities,
	.project-location,
	.project-gallery,
	.project-contact {
		padding: 60px 0;
	}

	.project-title {
		font-size: 24px;
	}

	.project-nav-menu {
		justify-content: flex-start;
		overflow-x: auto;
		padding: 15px 20px;
	}

	.project-nav-link {
		white-space: nowrap;
		flex-shrink: 0;
	}

	.info-card {
		position: static;
		margin-bottom: 30px;
	}

	.apartment-tabs {
		justify-content: flex-start;
		overflow-x: auto;
		padding: 0 20px;
	}

	.apartment-tab {
		white-space: nowrap;
		flex-shrink: 0;
	}

	.gallery-tabs {
		justify-content: flex-start;
		overflow-x: auto;
		padding: 0 20px;
	}

	.gallery-tab {
		white-space: nowrap;
		flex-shrink: 0;
	}
}

/* Smooth scrolling for project navigation */
html {
	scroll-behavior: smooth;
}

/* Animation effects */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.project-logo-overlay {
	animation: fadeInUp 1s ease-out 0.5s both;
}

.highlight-item,
.facility-card,
.location-item {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover,
.facility-card:hover,
.location-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}