
:root{
  --primary:#f59e0b;
  --primary-dark:#d97706;
  --dark:#0f172a;
  --muted:#64748b;
  --surface:#ffffff;
  --surface-2:#f8fafc;
  --border:#e5e7eb;
  --shadow:0 18px 44px rgba(2, 6, 23, .10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family: Inter, Arial, Helvetica, sans-serif;
  color:#111827;
  background:#fff;
}
a{text-decoration:none}
.topbar{
  background:#111827;
  color:#e5e7eb;
  font-size:.92rem;
}
.topbar a{color:#fff}
.logo{
  width: auto;
  height: auto;
}
.header{
  background:rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  box-shadow:0 1px 0 rgba(15,23,42,.05);
}
.navbar-brand img{height:56px}
.nav-link{
  color:#111827 !important;
  font-weight:700;
}
.nav-link.active,.nav-link:hover{color:var(--primary) !important}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-brand{
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
  border-radius:999px;
  padding:.92rem 1.45rem;
  font-weight:800;
}
.btn-brand:hover{
  background:var(--primary-dark);
  border-color:var(--primary-dark);
  color:#fff;
}
.btn-outline-light.rounded-pill{font-weight:700}
.section{padding:92px 0}
.section-header{margin-bottom:46px}
.section-subtitle{
  display:inline-block;
  color:var(--primary);
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.82rem;
}
.section-title{
  font-size:clamp(1.9rem, 3vw, 2.6rem);
  line-height:1.1;
  font-weight:800;
  color:var(--dark);
  margin:.45rem 0 .95rem;
}
.section-description{
  color:var(--muted);
  max-width:760px;
}
.hero{
  position:relative;
  margin-top:124px;
}
.hero-video-wrap{
  position:relative;
  min-height:88vh;
  overflow:hidden;
}
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter: brightness(1.25) contrast(1.1);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(2,6,23,0.35), rgba(2,6,23,0.15));
}
.hero-content{
  position:relative;
  z-index:2;
  min-height:88vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  background:rgba(255,255,255,.13);
  color:#fff;
  border:1px solid rgba(255,255,255,.15);
  padding:.55rem .85rem;
  border-radius:999px;
  margin-bottom:1rem;
  font-weight:700;
}
.hero h1{
  font-size:clamp(3rem, 8vw, 7rem);
  font-weight:900;
  line-height:1.02;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 20px rgba(72,202,228,0.25);


  background: linear-gradient(
    90deg,
    #00b4d8 0%,
    #1ec2e0 10%,
    #48cae4 20%,
    #6fd6ea 30%,
    #90e0ef 40%,
    #74d9ed 50%,
    #48cae4 60%,
    #2a9fde 70%,
    #0077b6 80%,
    #0096c7 90%,
    #00b4d8 100%
  );

  background-size: 300% 100%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  animation: waveFlow 7s linear infinite;
}
.hero p{
  color:#e5e7eb;
  font-size:clamp(1rem, 4vw, 3rem);
  max-width:690px;
  margin: 0 auto;
  text-align: center;
}
.hero-strip{
  margin-top:-48px;
  position:relative;
  z-index:3;
}
.hero-strip .card{
  border:0;
  border-radius:22px;
  box-shadow:var(--shadow);
}
.info-card,.service-card,.testimonial-card,.team-card,.contact-card,.quote-card,.project-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
}
.info-card,.contact-card,.testimonial-card,.team-card{padding:28px;height:100%}
.info-card .icon,.service-card .icon{
  width:62px;height:62px;border-radius:18px;
  display:grid;place-items:center;
  background:rgba(245,158,11,.12);
  color:var(--primary);
  font-size:1.5rem;
  margin-bottom:1rem;
}
.service-card{
  padding:32px;
  height:100%;
  transition:transform .25s ease, box-shadow .25s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 52px rgba(2,6,23,.14);
}
.service-card .num{
  color:rgba(245,158,11,.24);
  font-size:2.5rem;
  font-weight:800;
  line-height:1;
}
.service-card h4{margin:.9rem 0 .8rem;font-weight:800}
.service-card p{color:var(--muted);margin:0}
.media-photo{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  border-radius:28px;
  box-shadow:var(--shadow);
}
.feature-list{
  list-style:none; padding:0; margin:1.2rem 0 0;
}
.feature-list li{
  display:flex; gap:.8rem; margin-bottom:1rem; color:#334155;
}
.feature-list i{color:var(--primary); font-size:1.2rem}
.stats{
  background:linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color:#fff;
}
.stat-item{text-align:center;padding:24px 18px}
.stat-item .value{font-size:2.8rem;font-weight:800;line-height:1}
.stat-item .label{color:#cbd5e1;margin-top:.55rem}
.project-filters{
  display:flex; flex-wrap:wrap; gap:.8rem; justify-content:center;
  margin-bottom:2rem;
}
.project-filters button{
  border:1px solid var(--border); background:#fff; color:#0f172a;
  border-radius:999px; padding:.72rem 1rem; font-weight:800;
}
.project-filters button.active,.project-filters button:hover{
  background:var(--primary); color:#fff; border-color:var(--primary);
}
.project-card{overflow:hidden;height:100%}
.project-card img{
  width:100%;
  height:270px;
  object-fit:cover;
  display:block;
}
.project-card .project-body{padding:22px}
.project-card .tag{
  display:inline-block;
  background:rgba(245,158,11,.12);
  color:var(--primary-dark);
  padding:.35rem .7rem;
  border-radius:999px;
  font-size:.82rem;
  font-weight:800;
  margin-bottom:.8rem;
}
.project-card p{color:var(--muted);margin:0}
.quote-section{background:var(--surface-2)}
.quote-card{padding:34px}
.form-control,.form-select{
  border-radius:14px;
  padding:.98rem 1rem;
  border:1px solid #dbe2ea;
}
.form-control:focus,.form-select:focus{
  border-color:#f59e0b;
  box-shadow:0 0 0 .25rem rgba(245,158,11,.14);
}
.team-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:1rem;
}
.team-role{color:var(--primary);font-weight:700}
.page-hero{
  margin-top:124px;
  padding:95px 0 72px;
  background:linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color:#fff;
}
.breadcrumb a{color:#fff; opacity:.9}
.map-embed{
  width:100%;
  min-height:360px;
  border:0;
  border-radius:24px;
  box-shadow:var(--shadow);
}
.footer{
  background:#0b1220;
  color:#cbd5e1;
  padding:72px 0 24px;
}
.footer h5{color:#fff;font-weight:800;margin-bottom:1rem}
.footer a{color:#cbd5e1}
.footer .copyright{
  padding-top:26px;
  margin-top:26px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#94a3b8;
}
.small-muted{color:var(--muted)}
@media (max-width:991.98px){
  .hero{margin-top:110px}
  .hero-video-wrap,.hero-content{min-height:78vh}
  .hero-strip{margin-top:-28px}
}
@keyframes waveFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}
.carousel-shell {
  position: relative;
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.carousel-wrapper.dragging {
  cursor: grabbing;
}

.carousel-wrapper.dragging .premium-card {
  pointer-events: none;
}

.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  align-items: stretch;
  padding: 10px 0;
}

.scroll-item {
  flex: 0 0 85%;
}

@media (min-width: 768px) {
  .scroll-item {
    flex: 0 0 320px;
  }
}

@media (min-width: 1200px) {
  .scroll-item {
    flex: 0 0 360px;
  }
}

.premium-card {
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  padding: 30px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
  transform: scale(0.96);
  opacity: 0.82;
  user-select: none;
}

.premium-card.is-active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.10);
}

.premium-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.12);
  opacity: 1;
}

.premium-card .icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef1f4 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.premium-card h5 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.small-muted {
  color: #6c757d;
  line-height: 1.65;
}

.scroll-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

.scroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.10);
}

.fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 3;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 100%);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0) 100%);
}

@media (max-width: 767px) {
  .fade {
    width: 35px;
  }
}
