@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
  --background-1: #0a192f;
  --background-1-transparent: rgba(10, 25, 47, 0.9);
  --background-2: #112240;
  --background-3: #1b2d45;
  --background-4: #233554;

  --foreground-1: #e6f1ff;
  --foreground-2: #8892b0;

  --accent-1: #00b4d8;
  --accent-2: #48cae4;
  --accent-3: #90e0ef;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background-1);
  font-family: 'Roboto', sans-serif;
  color: var(--foreground-1);
  line-height: 1.6;
}

.loading-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-1);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.drone-icon {
  width: 60px;
  height: 60px;
  position: relative;
  animation: fly 3s infinite ease-in-out;
}

.drone-icon::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--accent-1);
  left: 15px;
  top: 15px;
  transform: rotate(45deg);
}

.drone-icon .propeller {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px solid var(--accent-3);
  border-radius: 50%;
  animation: rotateProp 0.2s infinite linear;
}

.drone-icon .propeller::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 4px;
  background: var(--accent-3);
  top: 7px;
  left: -3px;
  border-radius: 2px;
}

.drone-icon .propeller:nth-child(1) { left: 0; top: 0; }
.drone-icon .propeller:nth-child(2) { right: 0; top: 0; }
.drone-icon .propeller:nth-child(3) { left: 0; bottom: 0; }
.drone-icon .propeller:nth-child(4) { right: 0; bottom: 0; }

@keyframes fly {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -20px) rotate(3deg); }
  50% { transform: translate(0, -35px) rotate(0deg); }
  75% { transform: translate(-20px, -20px) rotate(-3deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes rotateProp {
  from { transform: rotate(0deg) translateZ(0); }
  to { transform: rotate(360deg) translateZ(0); }
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 30px;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
}

h4 {
  font-size: 20px;
  line-height: 1.5;
  color: var(--foreground-2);
  font-weight: 400;
}

p {
  color: var(--foreground-2);
  margin-bottom: 20px;
}

button, .button {
  font-family: 'Roboto', sans-serif;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
  background: var(--background-2);
  border: none;
  color: var(--foreground-1);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

button:hover, .button:hover {
  background: var(--background-3);
  transform: translateY(-2px);
}

button.cta, .cta.button {
  background: var(--accent-1);
}

button.cta:hover, .cta.button:hover {
  background: var(--accent-2);
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--background-1-transparent);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 20px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  width: 150px;
  height: 50px;
  background: url('/attached_assets/5EFDA801-1806-439D-A84B-337E406B5B77_1753043057251.png') no-repeat center;
  background-size: contain;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.name {
  font-weight: 700;
  color: var(--foreground-1);
  margin: 0;
}

nav a {
  color: var(--foreground-2);
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-1);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--foreground-1);
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--background-1-transparent);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--background-3);
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .mobile-menu a {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--background-3);
    color: var(--foreground-1);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .mobile-menu a:hover {
    color: var(--accent-1);
  }

  .mobile-menu a:last-child {
    border-bottom: none;
  }

  .mobile-menu.active {
    display: block;
  }

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
  overflow: hidden;
  background: linear-gradient(rgba(10, 25, 47, 0.6), rgba(10, 25, 47, 0.6)), url('attached_assets/image_1752945957164.jpeg') center/cover no-repeat;
}

.hero-video {
  display: none;
}

.hero::before {
  display: none;
}

.header-container {
  max-width: 800px;
}

.buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.features {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 80%;
  max-width: 800px;
  top: 50%;
  transform: translateY(-50%);
}

.close-modal {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 10px;
}

.close-modal:hover {
  color: var(--accent-1);
}

.tile {
  background: var(--background-2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.tile:hover {
  transform: translateY(-5px);
}

.tile .text {
  padding: 30px;
}

.tile .button {
  background: var(--accent-1);
  color: var(--foreground-1);
  transition: all 0.3s ease;
}

.tile .button:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
}

.media {
  height: 200px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.media:hover .service-image {
  transform: scale(1.1);
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.about {
  padding: 100px 20px;
  background: var(--background-2);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.team-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

.contact {
  padding: 100px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input, textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--background-3);
  background: var(--background-2);
  color: var(--foreground-1);
}

textarea {
  height: 150px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item h4 {
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 20px;
}

footer {
  background: var(--background-2);
  padding: 50px 20px;
}

footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.service-page {
    padding: 120px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-page ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-page li {
    margin: 10px 0;
    color: var(--foreground-2);
}

.service-page .hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    margin: 20px 0;
}

.service-page .content {
    max-width: 800px;
    margin: 40px auto;
}



.portfolio {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.portfolio-tab {
    padding: 12px 24px;
    background: var(--background-2);
    border: none;
    color: var(--foreground-2);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.portfolio-tab.active {
    background: var(--accent-1);
    color: var(--foreground-1);
}

.portfolio-content {
    display: none;
}

.upload-section {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--background-2);
    border-radius: 12px;
    border: 2px dashed var(--accent-1);
}

.upload-button {
    background: var(--accent-1);
    color: var(--foreground-1);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.upload-button:hover {
    background: var(--accent-2);
    transform: translateY(-2px);
}

.portfolio-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    max-height: 300px;
}

.upload-progress {
    padding: 20px;
    text-align: center;
    color: var(--accent-1);
    font-weight: 500;
}

.loading {
    background: var(--background-2);
    border-radius: 8px;
    opacity: 0.7;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item.video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.portfolio-item.model {
    position: relative;
}

.model-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground-1);
    font-weight: 500;
}

.portfolio-item.loading {
    background: var(--background-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--accent-1);
}

.upload-progress {
    color: var(--accent-1);
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

.upload-progress::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-1);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent-1);
    color: var(--foreground-1);
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {

  nav {
    padding: 10px 0;
  }

  .nav-inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    padding: 0 15px;
  }

  .left {
    flex-direction: row;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .name {
    font-size: 14px;
    display: none;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .right .cta.button {
    display: none;
  }

  h1 {
    font-size: 28px;
    padding: 0 20px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 16px;
  }

  .hero {
    height: 80vh;
    padding: 0 15px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .features {
    padding: 60px 15px;
  }

  .row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tile .text {
    padding: 20px;
  }

  .about {
    padding: 60px 15px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact {
    padding: 60px 15px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .portfolio {
    padding: 60px 15px;
  }

  .portfolio-nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .portfolio-tab {
    padding: 8px 16px;
    font-size: 14px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  footer {
    padding: 40px 15px;
  }

  footer .inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .service-page {
    padding: 100px 15px 60px;
  }

  .blog-page {
    padding: 100px 15px 60px;
  }

  .blog-post {
    padding: 100px 15px 60px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 0 10px;
  }

  .logo {
    width: 35px;
    height: 35px;
  }

  .right .cta.button {
    padding: 6px 12px;
    font-size: 12px;
  }

  h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  h2 {
    font-size: 20px;
  }

  .hero {
    height: 70vh;
    padding: 0 10px;
  }

  .features,
  .about,
  .contact,
  .portfolio {
    padding-left: 10px;
    padding-right: 10px;
  }

  .tile .text {
    padding: 15px;
  }

  .portfolio-nav {
    flex-direction: column;
    align-items: center;
  }

  .portfolio-tab {
    width: 100%;
    max-width: 200px;
    text-align: center;
  }

  footer .inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
}
.webodm-container {
    margin: 2rem 0;
    padding: 1rem;
    background: var(--background-2);
    border-radius: 8px;
}

.webodm-container iframe {
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* CSS Variables */
:root {
  --primary: #0066cc;
  --secondary: #f5f7fa;
  --accent-1: #00a8ff;
  --accent-2: #0078d4;
  --foreground-1: #ffffff;
  --foreground-2: #f0f4f8;
  --foreground-3: #d6dee6;
  --background-1: #121829;
  --background-2: #1e293b;
  --background-3: #334155;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: #334155;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-media-container {
  max-width: 90%;
  max-height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.lightbox-close:hover {
  color: var(--accent-1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 20px 15px;
  cursor: pointer;
  z-index: 10000;
  transition: background 0.3s ease;
}

.lightbox-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-caption {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 16px;
  text-align: center;
  max-width: 80%;
}

.lightbox-counter {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 30px;
  }

  .lightbox-nav {
    font-size: 20px;
    padding: 15px 10px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-caption {
    bottom: 60px;
    font-size: 14px;
  }

  .lightbox-counter {
    bottom: 20px;
    font-size: 12px;
  }
}