@charset "utf-8";
/* CSS Document 

Tooplate 2156 Graphite Creative

https://www.tooplate.com/view/2156-graphite-creative

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #1a1a1a;
	color: #d0d0d0;
	line-height: 1.6;
    --silver: #c0c0c0;
    --matte-grey: #2a2a2a;
    --glass-white: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
    --metallic-gradient: linear-gradient(145deg, #e6e6e6, #8e8e8e);
    --matte-finish: #1a1a1a;
}

@keyframes glassReveal {
    from { opacity: 0; transform: translateY(40px) scale(0.95); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* HEADER */
header {
	height: 70px;
	background-color: rgba(18, 18, 18, 0.7);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 25px;
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	max-width: 1100px;
	z-index: 1000;
	box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.header-container {
	max-width: 100%;
	margin: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-area {
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
	text-decoration: none;
	color: #d0d0d0;
	transition: all 0.3s ease;
}

.logo-area:hover {
	opacity: 0.8;
}

.logo-vector {
	width: 38px;
	height: 38px;
	background: var(--metallic-gradient);
	border-radius: 6px;
	clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	color: #000;
	font-size: 15px;
	flex-shrink: 0;
}

.logo-text h1 {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.5px;
	line-height: 1;
}

.logo-text p {
	font-size: 9px;
	color: var(--silver);
	margin-top: 2px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-weight: 700;
}

/* NAVIGATION */
nav {
	display: flex;
	gap: 16px;
	align-items: center;
}

nav a {
	padding: 10px 0;
	display: flex;
	align-items: center;
	background-color: transparent;
	color: #d0d0d0;
	text-decoration: none;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color 0.3s ease;
	position: relative;
}

nav a:hover,
nav a.active {
	color: #fff;
}

nav a::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 0;
	height: 3px;
	background-color: var(--silver);
	transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
	width: 100%;
}

nav a:last-child {
	background: var(--metallic-gradient);
	color: #121212;
	padding: 10px 20px;
	border-radius: 50px;
	margin-left: 15px;
	font-weight: 800;
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

nav a:last-child::after {
	display: none;
}

nav a:last-child:hover {
	background-color: #fff;
	transform: translateY(-1px);
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
}

.menu-toggle span {
	width: 28px;
	height: 3px;
	transition: all 0.3s ease;
	background-color: var(--silver);
}

/* MAIN SECTIONS */
main {
	min-height: calc(100vh - 200px);
}

/* HERO SECTION */
.section-hero {
	min-height: 600px;
	display: flex;
	align-items: center;
	padding: 60px;
	background-color: #1a1a1a;
	position: relative;
	overflow: hidden;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	gap: 60px;
	align-items: center;
}

.hero-left {
	flex: 1;
	z-index: 2;
}

.hero-line {
	width: 100px;
	height: 3px;
	background: #555;
	margin: 0 0 30px 0;
}

.hero-left h2 {
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 24px;
	letter-spacing: -0.5px;
}

.hero-left p {
	font-size: 18px;
	color: #999;
	margin-bottom: 40px;
	line-height: 1.8;
}

.cta-button {
	display: inline-block;
	padding: 18px 50px;
	background-color: #333;
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	border: none;
	border-left: 2px solid #555;
	border-bottom: 2px solid #555;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

.cta-button::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #444;
	transition: height 0.3s ease;
	z-index: -1;
}

.cta-button:hover {
	color: white;
}

.cta-button:hover::before {
	height: 20%;
}

/* IMAGE SLIDER - FIXED WITH FADE ANIMATION */
.slider-container {
	flex: 1;
	position: relative;
	height: 400px;
	overflow: hidden;
	border: 1px solid #2a2a2a;
	background-color: #222;
	background-image: linear-gradient(135deg, #222 0%, #2a2a2a 100%);
}

.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #1a1a1a;
}

.slide.active {
	opacity: 1;
	z-index: 5;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.dot {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.dot.active {
	background-color: white;
	transform: scale(1.2);
}

/* SERVICES SECTION - REDESIGNED WITH NUMBERS */
.section-services {
	padding: 120px 60px;
	background-color: #121212;
	border-top: 1px solid #2a2a2a;
}

.services-container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: 52px;
	font-weight: 800;
	margin-bottom: 80px;
	text-align: center;
	letter-spacing: -0.5px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 0;
}

.service-card {
	padding: 40px;
	background-color: transparent;
	border-right: 1px solid #2a2a2a;
	border-bottom: 1px solid #2a2a2a;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-card:nth-child(3n) {
	border-right: none;
}

.service-card:nth-last-child(-n+3) {
	border-bottom: none;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: linear-gradient(180deg, #555 0%, #333 100%);
	transition: height 0.3s ease;
}

.service-card:hover::before {
	height: 100%;
}

.service-number {
	font-size: 48px;
	font-weight: 300;
	color: #333;
	margin-bottom: 20px;
	font-family: 'Courier New', monospace;
	position: relative;
	display: inline-block;
}

.service-card:hover .service-number {
	color: #555;
}

.service-number::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #555;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.service-card:hover .service-number::after {
	transform: scaleX(1);
}

.service-card h3 {
	font-size: 24px;
	margin-bottom: 16px;
	font-weight: 700;
}

.service-card p {
	color: #999;
	font-size: 15px;
	line-height: 1.8;
}

/* PORTFOLIO SECTION */
.section-portfolio {
	padding: 120px 60px;
	background-color: #1a1a1a;
	border-top: 1px solid #2a2a2a;
}

.portfolio-container {
	max-width: 1200px;
	margin: 0 auto;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.portfolio-item {
	aspect-ratio: 16/10;
	background: #222;
	border: 1px solid #2a2a2a;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.portfolio-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #000 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.portfolio-item:hover::before {
	opacity: 0.4;
}

.portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.portfolio-item:hover img {
	transform: scale(1.05);
}

.portfolio-label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px;
	background: linear-gradient(180deg, transparent 0%, rgba(18, 18, 18, 0.98) 100%);
	transform: translateY(20px);
	transition: transform 0.3s ease;
	z-index: 2;
}

.portfolio-item:hover .portfolio-label {
	transform: translateY(0);
}

.portfolio-label h3 {
	font-size: 18px;
	margin-bottom: 6px;
	font-weight: 700;
}

.portfolio-label p {
	font-size: 13px;
	color: #777;
}

/* ABOUT SECTION */
.section-about {
	padding: 120px 60px;
	background-color: #121212;
	border-top: 1px solid #2a2a2a;
}

.about-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: flex-start;
}

.about-visual {
	position: relative;
}

.about-image-wrapper {
	position: relative;
	padding-bottom: 30px;
}

.main-about-img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 4px;
	filter: grayscale(40%);
	transition: all 0.5s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-about-img:hover {
	filter: grayscale(0%);
	border-color: var(--silver);
}

.experience-badge {
	position: absolute;
	bottom: 0;
	right: -20px;
	background: var(--metallic-gradient);
	color: #121212;
	padding: 25px;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 15px 35px rgba(0,0,0,0.3);
	z-index: 5;
}

.exp-number {
	font-size: 32px;
	font-weight: 900;
	line-height: 1;
}

.exp-text {
	font-size: 10px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	margin-top: 5px;
	white-space: nowrap;
}

.about-content h3 {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 30px;
	letter-spacing: -0.5px;
}

.about-content p {
	color: #999;
	margin-bottom: 24px;
	line-height: 1.9;
	font-size: 15px;
}

.about-content p a {
	color: #d0d0d0;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.about-content p a:hover {
	color: white;
}

.about-blocks {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.about-block {
	padding: 30px;
	background-color: #222;
	border-left: 4px solid #555;
	border-top: 1px solid #2a2a2a;
	border-right: 1px solid #2a2a2a;
	border-bottom: 1px solid #2a2a2a;
}

.block-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 12px;
}

.block-icon {
	font-size: 24px;
}

.about-block h4 {
	font-size: 16px;
	margin-bottom: 0;
	font-weight: 700;
	color: #d0d0d0;
}

.about-block p {
	font-size: 13px;
	color: #777;
	margin-bottom: 0;
}

/* CONTACT SECTION - IMPROVED 2 COLUMN DESIGN */
.section-contact {
	padding: 150px 60px;
	background-color: #0f0f0f;
	background-image: 
		radial-gradient(circle at 50% 50%, rgba(255, 180, 0, 0.05) 0%, transparent 50%),
		linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
	background-size: 100% 100%, 50px 50px, 50px 50px;
	border-top: 1px solid #2a2a2a;
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.contact-header {
	margin-bottom: 80px;
}

.status-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 10px;
	font-weight: 800;
	color: var(--silver);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

.status-dot {
	width: 6px;
	height: 6px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 0 10px #fff;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% { opacity: 1; }
	50% { opacity: 0.3; }
	100% { opacity: 1; }
}

.contact-interface {
	max-width: 900px;
	margin: 0 auto 60px;
	position: relative;
}

.glass-board {
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 80px 40px;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.hud-corner {
	position: absolute;
	width: 20px;
	height: 20px;
	border-color: var(--silver);
	border-style: solid;
	opacity: 0.5;
}

.top-left { top: 20px; left: 20px; border-width: 2px 0 0 2px; }
.top-right { top: 20px; right: 20px; border-width: 2px 2px 0 0; }
.bottom-left { bottom: 20px; left: 20px; border-width: 0 0 2px 2px; }
.bottom-right { bottom: 20px; right: 20px; border-width: 0 2px 2px 0; }

.board-scanner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #fff, transparent);
	opacity: 0.3;
	box-shadow: 0 0 15px rgba(255,255,255,0.5);
	animation: scan 4s linear infinite;
}

@keyframes scan {
	0% { top: 0; }
	100% { top: 100%; }
}

.interface-content {
	display: flex;
	flex-direction: column;
	gap: 50px;
	position: relative;
	z-index: 2;
}

.info-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 0.3s ease;
}

.info-row:hover {
	transform: scale(1.02);
}

.info-label {
	font-family: 'Courier New', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: #777;
	margin-bottom: 60px;
}

.info-value {
	font-size: 32px;
	font-weight: 200;
	color: #fff;
	text-decoration: none;
	letter-spacing: -1px;
	transition: color 0.3s ease, text-shadow 0.3s ease;
}

a.info-value:hover {
	color: #fff;
	text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

span.info-value {
	font-size: 24px;
	color: #d0d0d0;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-link {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: rgba(18, 18, 18, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	padding: 8px 20px 8px 8px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	z-index: 2000;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.whatsapp-link:hover {
	transform: scale(1.05) translateY(-5px);
	background: #fff;
}

.whatsapp-icon {
	width: 35px;
	height: 35px;
	background: #fff;
	border-radius: 50%;
	padding: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.whatsapp-link span {
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.whatsapp-link:hover span {
	color: #121212;
}


.terminal-btn {
	display: inline-block;
	padding: 15px 40px;
	border: 1px solid var(--silver);
	color: var(--silver);
	text-decoration: none;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all 0.3s ease;
}

.terminal-btn:hover {
	background: #fff;
	color: #121212;
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.form-group input,
.form-group textarea {
	padding: 14px 16px;
	background-color: #222;
	border: 1px solid #333;
	color: #d0d0d0;
	font-family: inherit;
	font-size: 14px;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #555;
	background-color: #2a2a2a;
}

.form-group textarea {
	min-height: 120px;
	resize: vertical;
}

.submit-btn {
	padding: 16px 40px;
	background-color: #333;
	color: white;
	border: none;
	border-left: 2px solid #555;
	border-bottom: 2px solid #555;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 10px;
	align-self: flex-start;
	position: relative;
	overflow: hidden;
	clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

.submit-btn::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #444;
	transition: height 0.3s ease;
	z-index: -1;
}

.submit-btn:hover {
	color: white;
}

.submit-btn:hover::before {
	height: 20%;
}

/* FOOTER */
footer {
	background-color: #121212;
	border-top: 1px solid #2a2a2a;
	padding: 40px 60px;
	text-align: center;
	color: #777;
	font-size: 13px;
}

footer a {
	color: #999;
	text-decoration: none;
	transition: color 0.3s ease;
}

footer a:hover {
	color: #d0d0d0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
	header {
		padding: 0 40px;
	}

	nav {
		gap: 12px;
	}

	nav a {
		padding: 0 20px;
		font-size: 13px;
	}

	.section-hero {
		padding: 60px 40px;
	}

	.hero-container {
		flex-direction: column;
	}

	.hero-left {
		width: 100%;
		max-width: 600px;
	}

	.slider-container {
		height: 350px;
		width: 100%;
		max-width: 600px;
		flex: none;
	}

	.section-services,
	.section-portfolio,
	.section-about,
	.section-contact {
		padding: 80px 40px;
	}

	.hero-left h2 {
		font-size: 40px;
	}

	.section-title {
		font-size: 36px;
		margin-bottom: 60px;
	}

	.about-container {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.about-visual {
		order: 2;
	}

	.main-about-img {
		height: 350px;
	}

	.experience-badge {
		right: 20px;
		padding: 15px;
	}

	.contact-container {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.contact-info {
		padding-right: 0;
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-card:nth-child(2n) {
		border-right: none;
	}

	.service-card:nth-child(3n) {
		border-right: 1px solid #2a2a2a;
	}
}

/* Tablet landscape specific fixes */
@media (max-width: 1024px) and (orientation: landscape) {
	.slider-container {
		height: 300px;
	}
}

/* iPad Pro and larger tablets */
@media (min-width: 769px) and (max-width: 1024px) {
	.slider-container {
		height: 380px;
		margin: 0 auto;
	}
}

/* PORTFOLIO POPUP/MODAL */
.portfolio-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
}

.portfolio-modal.active {
	display: flex;
}

.modal-content {
	background-color: #1a1a1a;
	border: 1px solid #2a2a2a;
	max-width: 900px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	display: flex;
	gap: 40px;
	padding: 40px;
}

.modal-image {
	width: 50%;
	flex-shrink: 0;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border: 1px solid #2a2a2a;
	align-self: flex-start;
}

.modal-content>.modal-details {
	width: 50%;
	display: flex;
	flex-direction: column;
}

.modal-details h3#modalTitle {
	font-size: 28px;
	margin-bottom: 8px;
	font-weight: 700;
	color: #d0d0d0;
}

.modal-details p#modalCategory {
	color: #999;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	margin: 0 0 20px 0;
	text-transform: uppercase;
	padding-bottom: 20px;
	border-bottom: 1px solid #2a2a2a;
}

.modal-details p#modalDescription {
	color: #999;
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 20px;
}

.modal-details ul {
	list-style: none;
	margin-bottom: 30px;
	padding-left: 0;
}

.modal-details li {
	color: #999;
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 12px;
	padding-left: 24px;
	position: relative;
}

.modal-details li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #555;
	font-size: 20px;
	font-weight: bold;
}

.modal-visit-btn {
	display: inline-block;
	padding: 14px 40px;
	background-color: #333;
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	border: none;
	border-left: 2px solid #555;
	border-bottom: 2px solid #555;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	z-index: 10;
	clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

.modal-visit-btn::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #444;
	transition: height 0.3s ease;
	z-index: -1;
}

.modal-visit-btn:hover {
	color: white;
}

.modal-visit-btn:hover::before {
	height: 20%;
}


.modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	color: #d0d0d0;
	font-size: 28px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 20;
	padding: 0;
	pointer-events: auto;
}

.modal-close:hover {
	color: white;
	transform: rotate(90deg);
}

@media (max-width: 768px) {
	.modal-content {
		flex-direction: column;
		gap: 20px;
		padding: 50px 20px 30px 20px;
		max-height: 85vh;
	}

	.modal-content>.modal-image {
		width: 100%;
		order: 2;
	}

	.modal-content>.modal-details {
		width: 100%;
		order: 1;
	}

	.modal-details h3#modalTitle {
		font-size: 22px;
		margin-bottom: 8px;
	}

	.modal-details p#modalCategory {
		font-size: 13px;
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.modal-details p#modalDescription {
		font-size: 14px;
		margin-bottom: 15px;
	}

	.modal-details li {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.modal-visit-btn {
		padding: 12px 32px;
		font-size: 13px;
	}
}

/* Scrollbar styling for modal */
.modal-content::-webkit-scrollbar {
	width: 6px;
}

.modal-content::-webkit-scrollbar-track {
	background: #121212;
}

.modal-content::-webkit-scrollbar-thumb {
	background: #333;
	border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
	background: #444;
}

@media (max-width: 768px) {
	header {
		height: auto;
		padding: 15px 20px;
		justify-content: space-between;
	}

	.logo-vector {
		width: 40px;
		height: 40px;
		font-size: 12px;
	}

	.logo-text h1 {
		font-size: 18px;
	}

	.logo-text p {
		font-size: 6px;
	}

	nav {
		display: none;
		position: fixed;
		top: 80px;
		right: 20px;
		left: auto;
		background-color: #121212;
		flex-direction: column;
		padding: 20px;
		gap: 10px;
		border-bottom: 1px solid #2a2a2a;
		max-height: calc(100vh - 80px);
		overflow-y: auto;
		z-index: 999;
		width: auto;
	}

	nav.active {
		display: flex;
	}

	/* Scrollbar styling for mobile menu */
	nav::-webkit-scrollbar {
		width: 6px;
	}

	nav::-webkit-scrollbar-track {
		background: #1a1a1a;
	}

	nav::-webkit-scrollbar-thumb {
		background: #333;
		border-radius: 3px;
	}

	nav::-webkit-scrollbar-thumb:hover {
		background: #444;
	}

	nav a {
		width: auto;
		height: 50px;
		flex-shrink: 0;
		padding: 0 24px;
		min-width: 150px;
	}

	.menu-toggle {
		display: flex;
	}

	.menu-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translateY(9px);
	}

	.menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translateY(-9px);
	}

	.section-hero {
		padding: 40px 20px;
		min-height: auto;
	}

	.hero-container {
		gap: 40px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.hero-left {
		width: 100%;
	}

	.hero-left h2 {
		font-size: 32px;
	}

	.hero-left p {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.cta-button {
		padding: 14px 40px;
		font-size: 14px;
	}

	.slider-container {
		height: 300px;
		min-height: 300px;
		width: 100%;
		max-width: none;
		position: relative;
		display: block;
		flex: none;
	}

	.slide {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	.slider-dots {
		bottom: 10px;
	}

	.dot {
		width: 10px;
		height: 10px;
	}

	.section-services,
	.section-portfolio,
	.section-about,
	.section-contact {
		padding: 60px 20px;
	}

	.section-title {
		font-size: 28px;
		margin-bottom: 40px;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.service-card {
		border-right: none;
		border-bottom: 1px solid #2a2a2a;
	}

	.service-card:last-child {
		border-bottom: none;
	}

	.portfolio-grid {
		grid-template-columns: 1fr;
	}

	.info-value {
		font-size: 20px;
	}

	.glass-board {
		padding: 60px 20px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.form-group.full-width {
		grid-column: span 1;
	}

	footer {
		padding: 30px 20px;
		font-size: 11px;
	}
}