.hero-content{position:relative;z-index:2}.pricing-card{transition:transform .3s cubic-bezier(.4,1.5,.5,1),box-shadow .3s;will-change:transform}.pricing-card:focus-within,.pricing-card:hover{transform:scale(1.07);box-shadow:0 8px 32px #00c3ff33,0 2px 18px #0001;z-index:2}body{margin:0;padding-top:64px}@media (max-width:1200px),(max-width:700px),(max-width:420px){.hero-bg-slide{position:absolute;top:0;left:0;width:150%;height:100%;object-fit:cover;opacity:0;transition:opacity 1.2s cubic-bezier(.23,1.01,.32,1);z-index:0}header.hero{background-size:cover!important;background-position:center center!important;min-height:60vh;height:auto}}@media (max-width:700px){.reviews{padding:2.5rem .5rem 1.5rem;max-width:100vw}.review-list{flex-direction:column;gap:1.2rem;align-items:center}.review-card{width:98vw;max-width:400px;min-width:0;padding:1.2rem .7rem;font-size:1rem}.review-card blockquote{font-size:1.05rem}.review-card img{width:44px;height:44px}}@keyframes quote-pop{0%{opacity:0;transform:scale(.7) translateY(30px)}60%{opacity:1;transform:scale(1.15) translateY(-8px)}80%{transform:scale(.95) translateY(2px)}100%{opacity:1;transform:scale(1) translateY(0)}}
.quote-modal,.quote-modal-content{animation:.7s cubic-bezier(.23,1.01,.32,1) fadeInUp}.quote-modal{display:none;position:fixed;z-index:9999;left:0;top:0;width:100vw;height:100vh;background:rgba(20,20,40,.55);backdrop-filter:blur(2px);justify-content:center;align-items:center}.quote-modal.show{display:flex}.quote-modal-content{background:url(image/main2.png) 0 0/cover;border-radius:22px;box-shadow:0 8px 40px rgba(0,0,0,.18);padding:1.2rem .8rem 1.1rem;max-width:280px;width:94vw;text-align:center;position:relative}.quote-modal-content h2{font-family:'Playfair Display',serif;font-size:2.1rem;color:#574a4a;margin-bottom:.7rem}.quote-modal-content p{color:#493c3c;font-size:1.1rem;margin-bottom:1.2rem}.quote-modal-content input{width:80%;padding:.7rem 1rem;margin-bottom:1rem;border:1.5px solid #00c3ff33;border-radius:8px;font-size:1rem;font-family:inherit;color:#222;outline:0;transition:border .2s}.quote-modal-content input:focus{border:1.5px solid #00c3ff}.quote-modal-content button{background:#101820;color:#fff;border:none;border-radius:30px;font-size:1.1rem;font-weight:700;padding:.7rem 2.2rem;cursor:pointer;box-shadow:0 4px 24px rgba(0,0,0,.13);transition:background .2s,transform .2s}.quote-modal-content button:hover{background:linear-gradient(90deg,#ff1c68,#00c3ff);transform:scale(1.07)}.quote-modal-close{position:absolute;top:1.1rem;right:1.3rem;font-size:2rem;color:#ff1c68;cursor:pointer;font-weight:700;transition:color .2s;z-index:2}.quote-modal-close:hover{color:#00c3ff}@media (max-width:700px){.reviews,.services{padding:2.5rem .5rem 1.5rem;max-width:100vw}.review-list{flex-direction:column;gap:1.2rem;align-items:center}.review-card{width:98vw;max-width:400px;min-width:0;padding:1.2rem .7rem;font-size:1rem}.review-card blockquote{font-size:1.05rem}.review-card img{width:44px;height:44px}.service-list{flex-direction:column;gap:1.2rem;align-items:center;margin-top:4.5rem}}@media (max-width:600px){.hero-title{font-size:1.1rem;margin-top:2.5rem}}
@media (max-width: 1200px) {
	.nav-container {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		position: relative;
	}
	.nav-logo {
		flex: 1 1 auto;
	}
	.nav-toggle {
		order: 2;
		margin-left: auto;
		margin-right: 0;
	}
	.nav-links {
		order: 3;
	}
}
/* Beautiful Hamburger Menu and Sliding Nav for Small Screens */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	background: rgba(255,255,255,0.85);
	border: none;
	border-radius: 50%;
	box-shadow: 0 2px 12px rgba(0,0,0,0.10);
	cursor: pointer;
	z-index: 200;
	transition: background 0.2s, box-shadow 0.2s;
}
.nav-toggle:hover {
	background: linear-gradient(90deg, #00c3ff, #ff1c68);
	box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.nav-toggle .bar {
	width: 26px;
	height: 3.5px;
	background: #493c3c;
	margin: 4px 0;
	border-radius: 2px;
	transition: 0.4s;
}
.nav-toggle.open .bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open .bar:nth-child(2) {
	opacity: 0;
}
.nav-toggle.open .bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1200px) {
	.nav-toggle {
		display: flex;
	}
	.nav-links {
		position: fixed;
		top: 0;
		right: -100vw;
		width: 72vw;
		max-width: 340px;
		height: 100vh;
		background: linear-gradient(120deg, #00c3ff 0%, #ff1c68 100%);
		box-shadow: -2px 0 24px rgba(0,0,0,0.18);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 5rem 2rem 2rem 2rem;
		gap: 2.2rem;
		transition: right 0.4s cubic-bezier(.23,1.01,.32,1);
		z-index: 150;
	}
	.nav-links.open {
		right: 0;
	}
	.nav-links li {
		width: 100%;
	}
	.nav-links a {
		font-size: 1.3rem;
		width: 100%;
		display: block;
		padding: 0.8rem 0;
		color: #fff;
		border-radius: 8px;
		background: rgba(255,255,255,0.08);
		margin-bottom: 0.2rem;
		transition: background 0.2s, color 0.2s;
	}
	.nav-links a:hover, .nav-links a:focus {
		background: #fff;
		color: #ff1c68;
	}
	.nav-container {
		padding: 0.7rem 1rem;
	}
}
.swipe-indicator{display:flex;justify-content:center;align-items:center;margin-bottom:1.2rem;margin-top:.5rem}.swipe-icon{color:#2b2a2a;font-size:1.1rem;background:#fff;border-radius:20px;padding:.4rem 1.2rem;box-shadow:0 2px 8px rgba(0,0,0,.08);font-weight:600;letter-spacing:1px;animation:1.5s infinite swipe-bounce}@keyframes swipe-bounce{0%,100%{transform:translateX(0)}20%{transform:translateX(-12px)}40%{transform:translateX(12px)}60%{transform:translateX(-8px)}80%{transform:translateX(8px)}}.contact-form-anim{display:flex;flex-direction:column;align-items:center;gap:1.5rem;margin-bottom:2.5rem}.contact-socials a,.mail-anim{align-items:center;display:flex}.mail-anim{justify-content:center;margin-bottom:.5rem}.mail-anim i{font-size:3rem;color:#00c3ff;animation:1.5s ease-in-out infinite mail-float;filter:drop-shadow(0 2px 12px #00c3ff66)}@keyframes mail-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-18px) scale(1.12)}}.contact-form{display:flex;flex-direction:column;gap:1rem;width:100%;max-width:600px;background:url(image/main2.png);border-radius:18px;box-shadow:0 2px 16px rgba(0,0,0,.1);padding:2rem 1.5rem;align-items:stretch}@media (min-width:1200px){.contact-form{max-width:800px}}.contact-form input,.contact-form textarea{font-family:inherit;font-size:1rem;padding:.8rem 1rem;border:1.5px solid #00c3ff33;border-radius:8px;outline:0;margin-bottom:.5rem;background:#f8fafd;color:#222;transition:border .2s}.contact-form input:focus,.contact-form textarea:focus{border:1.5px solid #00c3ff}.contact-form textarea{min-height:90px;resize:vertical}.contact-form button{background:#101820;color:#fff;border:none;border-radius:30px;font-size:1.1rem;font-weight:700;padding:.8rem 2.2rem;cursor:pointer;box-shadow:0 4px 24px rgba(0,0,0,.13);transition:background .2s,transform .2s;margin-top:.5rem}.contact-form button:hover{background:linear-gradient(90deg,#ff1c68,#00c3ff);transform:scale(1.07)}.contact{padding:4rem 2rem 2rem;max-width:100%;margin:0 auto 2rem;text-align:center}.about-text h2,.contact-container h2{font-size:2.5rem;margin-bottom:1.2rem;font-family:"EB Garamond",serif;color:#101820}.contact-container p{font-size:1.2rem;margin-bottom:2rem;color:#222}.contact-socials{display:flex;justify-content:center;gap:2rem;flex-wrap:wrap;margin-top:1.5rem}.contact-socials a{color:#00c3ff;font-size:2.1rem;background:#101820;border-radius:50%;width:54px;height:54px;justify-content:center;box-shadow:0 2px 12px rgba(0,0,0,.1);transition:background .2s,color .2s,transform .2s,text-decoration:none}.contact-socials a:hover{background:linear-gradient(90deg,#00c3ff,#ff1c68);color:#fff;transform:scale(1.13)}.about{padding:4rem 2rem 2rem;max-width:1200px;margin:0 auto 2rem}.about-container{display:flex;align-items:center;gap:3rem;flex-wrap:wrap;justify-content:center}.about-text{flex:2;min-width:260px}.about-text p{font-size:1.2rem;margin-bottom:1.5rem;color:#222;line-height:1.7}.about-skills{list-style:none;padding:0;margin:0;display:flex;flex-wrap:wrap;gap:1.2rem}.about-skills li{background:rgba(0,195,255,.08);color:#222;border-radius:18px;padding:.7rem 1.3rem;font-size:1rem;display:flex;align-items:center;gap:.7rem;font-weight:600;box-shadow:0 2px 8px rgba(0,0,0,.06)}.about-skills i{color:#00c3ff;font-size:1.1rem}.about-img{flex:1;min-width:180px;display:flex;align-items:center;justify-content:center}.about-img img{width:180px;height:180px;object-fit:cover;border-radius:50%;box-shadow:0 4px 24px rgba(0,0,0,.13);border:4px solid #00c3ff;background:#fff}@media (max-width:900px){.about-container{flex-direction:column;gap:2rem;align-items:center}.about-img img{width:140px;height:140px}}@media (max-width:700px){.contact-form{padding:1.2rem .5rem}.mail-anim i{font-size:2.2rem}.contact{padding:3rem 1rem 1rem}.contact-socials{gap:1.2rem}.contact-socials a{width:44px;height:44px;font-size:1.5rem}header.hero{background-size:cover!important;background-position:center center!important;min-height:60vh;height:auto;min-width:100%}}@media (max-width:400px){header.hero{position:relative;height:auto;min-height:50vh;padding:2rem 1rem}.hero-content h1{font-size:3.5rem}.hero-content h2{font-size:1.8rem}.hero-content p{font-size:1.1rem}.cta-btn{align-self:center;padding:.7rem 1.8rem;font-size:1rem}}
/* body font */

.eb-garamond-custom {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
/* navbar styles */



/* nav logo font*/

.bitcount-single-custom {
  font-family: "Bitcount Single", system-ui;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "CRSV" 0.5,
    "ELSH" 0,
    "ELXP" 0;
}
/* Navigation Bar Styles */
.navbar {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background: url(image/main2.png);
	box-shadow: none;
	backdrop-filter: none;
	transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
	background: transparent;
	box-shadow: 0 2px 16px rgba(0,0,0,0.10);
	backdrop-filter: blur(6px);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.7rem 2rem;
}
.nav-logo {
	color: #493c3c;
    font-family: "Bitcount Single", system-ui;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-decoration: none;
	transition: color 0.2s;
}
.nav-logo:hover {
	color: #00c3ff;
}
.nav-links {
	list-style: none;
	display: flex;
	gap: 2.5rem;
	margin: 0;
	padding: 0;
}
.nav-links li {
	display: inline-block;
}
.nav-links a {
	color: #1a1919;
    font-family: "EB Garamond", serif;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 1px;
	padding: 0.3rem 0.7rem;
	border-radius: 6px;
	transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a:focus {
	background: linear-gradient(90deg, #00c3ff, #ff1c68);
	color: #fff;
}

body {
	padding-top: 64px;
}

.hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#particles-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Add to style.css */
/* ...existing code... */
.hero-main-text-slideshow {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 3.5rem 1.2rem 2.2rem 1.2rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-slide-text {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(.4,0,.2,1), visibility 0s linear 1s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-slide-text.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s cubic-bezier(.4,0,.2,1), visibility 0s linear 0s;
}

.hero-slide-text h1 {
  font-size: 2.8rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 800;
  color: #171616;
  letter-spacing: 2px;
  text-shadow: 0 4px 32px #00c3ff55, 0 2px 8px #0008;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.hero-block {
  display: inline-block;
  background: rgba(0,195,255,0.13);
  border-radius: 12px;
  padding: 0.25em 0.7em;
  margin: 0.15em 0;
  box-shadow: 0 2px 12px #00c3ff22;
}

.hero-slide-text p {
  font-size: 1.25rem;
  color: #171616;
  font-weight: 500;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px #fff;
  line-height: 1.35;
}

.hero-slide-text p .hero-block {
  background: rgba(0,0,0,0.13);
  color: #171616;
  font-weight: 600;
  border-radius: 8px;
  max-width: 100%;
  padding: 0.18em 0.6em;
  margin: 0.12em 0;
  box-shadow: 0 2px 8px #0002;
}

.hero .cta-btn {
  margin-bottom: 6rem;
  align-self: center;
  display: inline-block;
}
@media (max-width: 700px) {
  header.hero,
  .hero-main-text-slideshow,
  .hero-slide-text {
    min-height: 100vh !important;
    height: 100vh !important;
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 !important;
  }
}

@media (max-width: 700px) {
  .hero-main-text-slideshow {
    padding: 1.5rem 0.5rem 1.2rem 0.5rem;
    min-height: 120px;
	max-width: 100%;
  }
  .hero-slide-text h1 {
    font-size: 3.45rem;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
  }
  .hero-block {
    font-size: 1.05rem;
    padding: 0.18em 0.45em;
    border-radius: 8px;
  }
  .hero-slide-text p {
    font-size: 0.98rem;
    margin-bottom: 1.2rem;
  }
  .hero-slide-text p .hero-block {
    font-size: 0.98rem;
    padding: 0.12em 0.35em;
    border-radius: 6px;
  }
  .hero .cta-btn {
    font-size: 0.98rem;
    padding: 0.7rem 1.5rem;
	margin-bottom: 3rem;
  }
}
/* ...fonts... */
.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Footer */
/* ...existing code... */
:root {
  --footer-bg:#0e1216;
  --footer-fg:#e9f1f7;
  --footer-dim:#b9c3ce;
  --accent:#00c3ff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  box-sizing: border-box;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-fg);
  margin-top: 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.newsletter h3 {
  font-family: "Bebas Neue", system-ui, sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
  margin: 0 0 .4rem;
}
.newsletter p {
  color: var(--footer-dim);
  margin: 0 0 1rem;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .6rem;
  align-items: center;
  max-width: 520px;
}
.newsletter-form input[type="email"] {
  padding: .9rem 1rem;
  border-radius: 10px;
  border: 1px solid #263241;
  background: #121a23;
  color: var(--footer-fg);
  outline: none;
}
.newsletter-form input[type="email"]::placeholder { color:#94a3b8; }
.btn-subscribe {
  padding: .9rem 1.2rem;
  border-radius: 10px;
  border: 0;
  background: linear-gradient(90deg, var(--accent), #ff1c68);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.form-msg {
  grid-column: 1 / -1;
  min-height: 1.2rem;
  font-size: .9rem;
  color: var(--footer-dim);
}
.form-msg.success { color: #38e37d; }
.form-msg.error { color: #ff6b6b; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.5rem;
}
.footer-links .link-col h4 {
  font-size: 1.05rem;
  margin: 0 0 .8rem;
  color: #fff;
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links a {
  color: var(--footer-dim);
  text-decoration: none;
  display: inline-block;
  padding: .28rem 0;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #1e2732;
  padding: 1rem 0 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { margin: 0; color: var(--footer-dim); }
.footer-bottom-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-bottom-links a {
  color: var(--footer-dim);
  text-decoration: none;
}
.footer-bottom-links a:hover { color:#fff; }

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; }
  .newsletter-form { grid-template-columns: 1fr; }
  .btn-subscribe { width: 100%; }
}

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr 1fr; }
}

/* Quote modal */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility 0s linear .25s;
}
.quote-modal.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity .25s ease;
}
.quote-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10,14,18,.65);
  backdrop-filter: blur(3px);
}
.quote-modal__dialog {
  position: relative;
  width: min(92vw, 560px);
  background: #0e1216;
  color: #e9f1f7;
  border: 1px solid #1f2a37;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  padding: 1.2rem;
  transform: translateY(10px) scale(.98);
  transition: transform .25s ease;
}
.quote-modal.is-open .quote-modal__dialog {
  transform: translateY(0) scale(1);
}
.quote-modal__close {
  position: absolute; top: 8px; right: 10px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: #121a23; color: #fff; font-size: 1.4rem; line-height: 1;
}
.quote-modal__dialog h3 {
  margin: .2rem 0 .2rem; font-size: 1.6rem;
}
.quote-modal__subtitle {
  margin: 0 0 .8rem; color: #b9c3ce; font-size: .98rem;
}
.quote-form { display: grid; gap: .8rem; }
.quote-form .field { display: grid; gap: .35rem; }
.quote-form label { font-size: .92rem; color: #cfe3f5; }
.quote-form input, .quote-form select, .quote-form textarea {
  background: #121a23; color: #e9f1f7;
  border: 1px solid #263241; border-radius: 10px;
  padding: .75rem .9rem; outline: none;
}
.quote-form textarea { resize: vertical; }
.quote-form .agree { font-size: .9rem; color: #b9c3ce; display: flex; gap: .5rem; align-items: center; }
.quote-form .agree a { color: #00c3ff; text-decoration: underline; }
.quote-submit {
  background: linear-gradient(90deg,#00c3ff,#ff1c68);
  color: #fff; border: 0; border-radius: 10px;
  padding: .85rem 1rem; font-weight: 700; cursor: pointer;
}
.quote-msg { min-height: 1rem; display: block; margin-top: .2rem; }
.quote-msg.success { color: #38e37d; }
.quote-msg.error { color: #ff6b6b; }

@media (max-width: 480px){
  .quote-modal__dialog { padding: 1rem; }
  .quote-modal__dialog h3 { font-size: 1.35rem; }
}

.carousel-track{position:relative;width:100%;max-width:700px;margin:0 auto 2rem;min-height:340px;display:flex;align-items:center;justify-content:center}.carousel-track .project-card{display:none;width:100%;max-width:700px;min-height:320px;background:rgba(255,255,255,.09);border-radius:18px;box-shadow:0 2px 16px rgba(0,0,0,.13);overflow:hidden;position:absolute;left:0;top:0;right:0;bottom:0;margin:auto;opacity:0;transform:scale(.95);transition:opacity .6s,transform .6s;z-index:1;display:flex;flex-direction:column;justify-content:flex-end}.carousel-track .project-card.active{display:block;opacity:1;transform:scale(1.08);z-index:2}.carousel-track .project-card img{width:100%;height:100%;object-fit:cover;display:block;position:absolute;top:0;left:0;right:0;bottom:0;z-index:0}.carousel-track .project-info{position:relative;z-index:1;padding:1.2rem;background:linear-gradient(0deg,rgba(15,32,39,.85) 80%,rgba(44,83,100,0) 100%);border-radius:0 0 18px 18px;margin-top:auto;color:#fff}.carousel-track .project-info h3{margin:0 0 .5rem;font-size:1.2rem}.slideshow-nav{display:flex;justify-content:center;gap:2rem;margin-top:1.2rem}.slideshow-btn{background:linear-gradient(90deg,#00c3ff,#ff1c68);color:#fff;border:none;border-radius:50%;width:48px;height:48px;font-size:2rem;cursor:pointer;box-shadow:0 2px 12px rgba(0,0,0,.18);transition:background .2s,transform .2s;outline:0;display:flex;align-items:center;justify-content:center}.slideshow-btn:hover{background:linear-gradient(90deg,#ff1c68,#00c3ff);transform:scale(1.12)}@media (max-width:700px){.carousel-track{max-width:98vw;min-height:220px}.carousel-track .project-card{max-width:98vw;min-height:180px}}@media (min-width:1200px){.carousel-track,.carousel-track .project-card{max-width:900px}}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;400&family=Playfair+Display:wght@700&display=swap');

.gradient-text,.hero-content h1{font-size:5rem;letter-spacing:3px;text-shadow:0 4px 32px rgba(0,0,0,.18),0 1px 0 #fff}.cta-btn,.hero-content,header.hero{position:relative}.hero-content,.review-card,.service-card,footer,section h2{text-align:center}body{margin:0;font-family:Montserrat,Arial,sans-serif;background:0 0/cover #fff;color:#1a1919;overflow-x:hidden}.gradient-text{color:#9b3c3c;font-family:"EB Garamond",serif;font-weight:400;margin-top:80px}header.hero{height:100vh;display:flex;align-items:center;justify-content:center;overflow:hidden}@media (max-width:1200px){header.hero{background-size:cover!important;background-position:center center!important;min-height:60vh;height:auto}}@media (max-width:420px){header.hero{background-size:cover!important;background-position:center center!important;min-height:60vh;height:auto}}.hero-content{z-index:2;animation:1.2s cubic-bezier(.23,1.01,.32,1) .2s both fadeInUp;display:flex;flex-direction:column;align-items:center;justify-content:center}.hero-title{font-family:'Playfair Display','EB Garamond',serif;font-size:4.5rem;font-weight:600;color:#fff;letter-spacing:2px;line-height:1.1;margin-top:200px;margin-bottom:2.2rem;text-shadow:0 6px 32px rgba(0,0,0,.22),0 1px 0 #fff;background:linear-gradient(90deg,#00c3ff 10%,#ff1c68 90%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.cta-btn,.hero-content h1,.hero-content h2{color:#fff;font-weight:700;font-family:"EB Garamond",serif}.cta-btn,footer{background:#101820}@media (max-width:900px){.hero-title{font-size:2.7rem}}@media (max-width:600px){.hero-title{font-size:1.7rem}}.hero-content h1{margin:0 0 .5rem}.hero-content h2{font-size:2.5rem;margin-bottom:1.2rem;text-shadow:0 2px 16px rgba(0,0,0,.12)}.hero-content p{font-size:1.4rem;margin-bottom:2.2rem;color:#fff;font-family:"EB Garamond",serif;text-shadow:0 1px 8px rgba(0,0,0,.1)}.cta-btn{padding:.8rem 2.2rem;border:none;border-radius:30px;font-size:1.1rem;cursor:pointer;box-shadow:0 4px 24px rgba(0,0,0,.2);transition:transform .2s,box-shadow .2s;text-decoration:none;align-self:flex-end;margin-top:25.5rem}@media (max-width:700px){header.hero{background-size:cover!important;background-position:center center!important;min-height:60vh;height:auto}.cta-btn{margin-top:15rem}}.cta-btn:hover{background:linear-gradient(90deg,#00c3ff,#ff1c68);transform:scale(1.07);box-shadow:0 8px 32px rgba(0,0,0,.3)}section{padding:4rem 2rem 2rem;max-width:1200px;margin:0 auto}section h2{font-family:"EB Garamond",serif;font-size:2.5rem;margin-bottom:2rem;letter-spacing:1px}.project-list,.review-list,.service-list{display:flex;flex-wrap:wrap;gap:2rem;justify-content:center}.service-card{background:rgba(255,255,255,.05);border-radius:20px;padding:1.05rem .7rem;width:200px;font-family:"EB Garamond",serif;font-weight:600;box-shadow:0 2px 16px rgba(0,0,0,.15);transition:transform .2s,box-shadow .2s;backdrop-filter:blur(4px)}.project-card,.review-card{border-radius:18px;box-shadow:0 2px 16px rgba(0,0,0,.13);position:relative;transition:transform .2s,box-shadow .2s}.service-card:hover{transform:translateY(-10px) scale(1.04) rotateY(6deg);box-shadow:0 8px 32px rgba(0,0,0,.25)}.service-card i{font-size:2.5rem;margin-bottom:1rem;color:#00c3ff}.service-card h3{margin:.5rem 0 1rem;font-size:1.3rem;font-family:"EB Garamond",serif}.project-card{background:rgba(255,255,255,.07);overflow:hidden;width:340px;height:200px}.project-card:hover{transform:scale(1.04) rotateY(-6deg);box-shadow:0 8px 32px rgba(0,0,0,.22)}.project-card img{width:100%;height:180px;object-fit:cover;display:block}.project-info{padding:1.2rem}.project-info h3{margin:0 0 .5rem;font-size:1.2rem}.review-card{background:rgba(255,255,255,.08);padding:1.05rem .7rem;width:100%}.review-stars{margin-bottom:.7rem}.review-stars i{color:gold;font-size:1.1rem;margin:0 1.5px;filter:drop-shadow(0 1px 2px #0002)}.review-card:hover{transform:scale(1.04) rotateY(6deg);box-shadow:0 8px 32px rgba(0,0,0,.22)}.review-card img{width:60px;height:60px;border-radius:50%;object-fit:cover;margin-bottom:1rem;border:2px solid #00c3ff}.review-card blockquote{font-style:italic;margin:0 0 1rem;color:#0e0d0d}.review-card cite{font-size:1rem;color:#0e0d0d}footer{padding:2rem 0 1rem;color:#b0b0b0;margin-top:3rem;border-top:1px solid #222}.footer-content p{margin:.3rem 0;font-size:1rem}@keyframes fadeInUp{0%{opacity:0;transform:translateY(40px)}100%{opacity:1;transform:translateY(0)}}
.review-list.is-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.review-list.is-carousel .review-card {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}
.review-list.is-carousel .review-card.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Arrow buttons */
.reviews-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 0;
}
.reviews-nav .reviews-prev,
.reviews-nav .reviews-next {
  background: linear-gradient(90deg, #00c3ff, #ff1c68);
  color: #fff;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  font-size: 1.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background .2s ease;
}
.reviews-nav .reviews-prev:hover,
.reviews-nav .reviews-next:hover {
  transform: scale(1.08);
}