/* ===========================
   Base
   =========================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #000;
    color: #f5f5f5;
}

/* ===========================
   Header
   =========================== */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(0,0,0,0.75);
}

.header__left {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.header__social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    transition: 0.3s ease;
}

.header__social a:hover {
    background: #fff;
    color: #000;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    position: relative;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    animation: bgZoom 18s ease-in-out infinite alternate;
}

@keyframes bgZoom {
    from { background-size: 100%; }
    to { background-size: 108%; }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.85));
    z-index: 0;
}

.hero__wrapper {
    position: relative;
    z-index: 1;
    padding: 25px 0;
    text-align: center;
}

/* ===========================
   Hero Icon
   =========================== */

.hero__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.25);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    background: #e0e0e0;
    padding: 14px;
}

.hero__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================
   Hero Text + Accent Line
   =========================== */

.hero__title_inner {
    opacity: 0;
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero__title {
    font-family: 'Work Sans', sans-serif;
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 6px 0;
    text-shadow: 0 0 12px rgba(0,0,0,0.6);
}

.hero__text {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 0 12px rgba(0,0,0,0.6);
}

.highlight {
    color: #ff8800;
    font-weight: 600;
}

.hero__title_inner::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: #ff8800;
    margin: 32px auto 0;
    animation: lineGrow 1s ease forwards;
    animation-delay: 1s;
}

@keyframes lineGrow {
    from { width: 0; }
    to { width: 80px; }
}

/* ===========================
   Countdown Timer (Unique Style)
   =========================== */

.countdown__module {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 18px;
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 0.6s;
}

.count-box {
    background: rgba(255,255,255,0.08);
    padding: 12px 16px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    text-align: center;
    min-width: 70px;
}

.count-box span {
    font-size: 24px;
    font-weight: 700;
    color: #ff8800;
}

.count-box label {
    font-size: 12px;
    opacity: 0.8;
}

/* ===========================
   Services
   =========================== */

.services {
    margin-top: -60px;
}

.service-wrapper {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.service {
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 6px;
    max-width: 320px;
    transition: 0.35s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

.service:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

.service__title {
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}

/* ===========================
   About
   =========================== */

.about {
    background: #fff;
    color: #333;
    padding: 60px 0;
    text-align: center;
}

.about h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 26px;
    margin-bottom: 16px;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 767px) {
    .hero__title { font-size: 30px; }
    .hero__icon { width: 55px; height: 55px; }
    .countdown__module { gap: 10px; }
    .count-box { min-width: 55px; padding: 10px; }
}
.crane-text {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 1.5em;
  font-weight: bold;
  color: #ffffff; /* white text */
  text-align: center;
  justify-content: center; /* center horizontally */
  width: 100%;
  margin-top: 20px;
  text-shadow: 0 0 8px #ff6600, 0 0 16px #ff6600, 0 0 24px #ff9933; /* glowing effect */
}

.crane-text span {
  opacity: 0;
  transform: translateY(-100px); /* start above */
  animation: dropIn 0.8s ease forwards;
}

/* Sequential drop delays */
.crane-text span:nth-child(1) { animation-delay: 0.2s; }
.crane-text span:nth-child(2) { animation-delay: 0.4s; }
.crane-text span:nth-child(3) { animation-delay: 0.6s; }
.crane-text span:nth-child(4) { animation-delay: 0.8s; }
.crane-text span:nth-child(5) { animation-delay: 1s; }
.crane-text span:nth-child(6) { animation-delay: 1.2s; }
.crane-text span:nth-child(7) { animation-delay: 1.4s; }
.crane-text span:nth-child(8) { animation-delay: 1.6s; }

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