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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #ffffff;
  color: #111827;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

h1, h2, h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 8vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 2.5rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #f3f4f6;
}
.navbar .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.navbar .logo .logo-icon {
  color: #3b82f6;
}
.navbar .logo .logo-text {
  line-height: 1.1;
}
.navbar .nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.navbar .nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7280;
}
.navbar .nav-links a:hover {
  color: #111827;
}
.navbar .nav-links a.btn-nav {
  padding: 0.6rem 1.5rem;
  background: #000000;
  color: white;
  border-radius: 4px;
}
.navbar .nav-links a.btn-nav:hover {
  opacity: 0.8;
}
@media (max-width: 900px) {
  .navbar .nav-links {
    display: none;
  }
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero .hero-bg .video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.9) 100%);
}
.hero .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.hero .hero-content .eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #6b7280;
  margin-bottom: 2rem;
  display: block;
}
.hero .hero-content h1 {
  margin-bottom: 2rem;
}
.hero .hero-content p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 3rem;
}

section {
  padding: 6rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  margin-bottom: 6rem;
}
.section-header h2 {
  margin-bottom: 1.5rem;
}
.section-header p {
  color: #6b7280;
  max-width: 500px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-list {
  display: grid;
  gap: 3rem;
}
.stats-list li {
  display: flex;
  gap: 1.5rem;
}
.stats-list li .stat-icon {
  font-size: 1.5rem;
  color: #3b82f6;
}
.stats-list li strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Outfit", sans-serif;
}
.stats-list li span {
  color: #6b7280;
  font-size: 0.95rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-item .item-bg {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.portfolio-item .item-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-item h3 {
  margin-bottom: 0.75rem;
}
.portfolio-item p {
  color: #6b7280;
  font-size: 0.95rem;
}
.portfolio-item:hover .item-bg img {
  transform: scale(1.05);
}

.contact-container {
  text-align: center;
}

.contact-highlight {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 6rem;
}
@media (max-width: 768px) {
  .contact-highlight {
    grid-template-columns: 1fr;
  }
}
.contact-highlight .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6b7280;
  margin-bottom: 1rem;
}
.contact-highlight .value, .contact-highlight .phone-number {
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

footer {
  padding: 6rem 0;
  border-top: 1px solid #f3f4f6;
}
footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #6b7280;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}/*# sourceMappingURL=Style.css.map */