/* Import a luxury font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global Styles */
body {
  background-color: #0D0D0D;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Form Section */
.schedule-meeting {
  max-width: 500px;
  width: 90%;
  background-color: #1C1C1C;
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid #0b00d7; /* Blue border */
  box-shadow: 0 4px 8px rgba(17, 0, 66, 0.2); /* Light blue glow */
  margin: 2rem auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.schedule-meeting:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(153, 0, 255, 0.3);
}
.schedule-meeting h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}
.schedule-meeting form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.schedule-meeting input[type="text"],
.schedule-meeting input[type="email"],
.schedule-meeting select,
.schedule-meeting textarea {
  flex: 1;
  background-color: #0D0D0D;
  border: none;
  outline: none;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 1rem;
}
.schedule-meeting ::placeholder {
  color: #666;
}
.schedule-meeting select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='white' d='M0 0 L10 0 L5 6 Z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 0.6rem 0.6rem; /* custom dropdown arrow */
}

.schedule-meeting button {
  background-color: #0b00d7;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.schedule-meeting button:hover {
  background-color: #0b00d7;
}

/* Footer */
.site-footer {
  background-color: #111;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #333;
}
.site-footer p {
  color: #777;
  font-size: 0.9rem;
}


/* Footer Base */
.site-footer {
  background-color: #141414; /* Dark background */
  color: #fff;
  padding: 40px 0;
  font-family: sans-serif;
}

/* Footer Container */
.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer Columns */
.footer-column {
  flex: 1;
  margin: 0 20px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-column p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.6rem;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-column a:hover {
  text-decoration: underline;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 10px;
}

.social-links img {
  width: 40px;
  height: 40px;
}


.technologies .command {
  margin-bottom: 2.5rem; /* Space after command block */
}

.technologies .core-tech,
.technologies .compatibility {
  margin-top: 3rem;
  margin-bottom: 2rem;
}


/* Make video, image, or iframe scale perfectly inside the card */
.technologies .visual-journey-card iframe,
.technologies .visual-journey-card video,
.technologies .visual-journey-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}
/*full background image "dorne"*/
body.full-bg {
  background: url('drone.png') no-repeat center center fixed;
  background-size: cover;
}
/* Ensure sections are transparent so background shows through */
.section {
  background: transparent;
}




.container {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.section {
  margin-bottom: 80px;
}

h1, h2, h3 {
  margin-bottom: 20px;
}

p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.b2g-section {
  background: linear-gradient(to right, #0b0f2c, #01030a);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 60px;
}


.team-member {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 250px;
  text-align: center;
}

.b2g-logo {
  max-width: 200px;
  display: block;
  margin: 20px auto;
}
.b2g-logo {
  transition: transform 0.3s ease;
}

.b2g-logo:hover {
  transform: scale(1.05);
}

.value-logo {
  max-width: 400px;
  display: block;
  margin: 40px auto;}

.site-footer {
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.footer-column {
  margin-bottom: 30px;
}

.main-content h2 {
  text-align: center;
  color: #0b00d7;
  margin-bottom: 1rem;
}
.index h2 {
  text-align: center;
  color: #0b00d7; /* Deep purple */
  margin-bottom: 1rem;
}

/* Base reset and typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Header / Navigation */
.site-header {
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, #000000, #0b00d7);
  padding: 0.6rem 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: #f2f2f2;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}


/* Space out Mission, Values, Team & B2G cards */
.value-list,
.use-case-cards,
.container mission-section {
  justify-content: center;    /* keep them centered */
  gap: 3.5rem;                /* increase space between cards */
  margin-top: 2rem;
  margin-bottom: 2rem;        /* add bottom space under the row */
}


/* Extra padding inside each card */
.team-member,
.use-case-card {
  padding: 2rem;              /* more interior white‐space */
}


/* Contact Section (if reused) */
.contact.section {
  padding: 4rem 1rem;
  text-align: center;
}
.contact h2 {
  color: #0b00d7;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.schedule-meeting {
  background-color: #111;
  padding: 2rem;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto 3rem;
  box-shadow: 0 0 10px rgba(162, 89, 255, 0.2);
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
input, select, textarea {
  flex: 1 1 calc(50% - 0.5rem);
  padding: 0.75rem;
  background-color: #222;
  color: white;
  border: none;
  border-radius: 5px;
}
button[type="submit"] {
  background-color: #0b00d7;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  margin: 1rem auto 0;
  display: block;
}
.location-card {
  max-width: 700px;
  margin: 2rem auto;
  background-color: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(180, 107, 255, 0.15);
}
.location-card img {
  width: 100%;
  display: block;
}

/* Footer base */
.site-footer {
  background-color: #111;
  color: #bbb;
  text-align: center;
  padding: 2rem 1rem;
}

/* Align columns */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Column styling */
.footer-column {
  flex: 1 1 200px;
}

/* Center the LinkedIn logo under Contact */
.footer-column ul.social-links {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.footer-column ul.social-links li.linkedin-logo {
  list-style: none;
}

/* Resize and add hover effect */
.footer-column ul.social-links img {
  width: 40px;    /* adjust to your desired size */
  height: 40px;
  transition: transform 0.2s ease;
}

.footer-column ul.social-links img:hover {
  transform: scale(1.1);
}


.use-case-group {
  margin-top: 4rem;
}

.use-case-group h3 {
  text-align: left;
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.analysis {
  margin-top: 2rem;
  background: #000; 
  padding: 1.5rem;
  border-radius: 12px;
  color: #ccc;
}



.partners-section {
  padding: 4rem 1rem;
  background: linear-gradient(to right, #0b0f2c, #01030a);
}

.partners-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
}

.partners-section p {
  margin-bottom: 2rem;
  color: #111;
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-logo img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ===== Mobile Responsive (up to 768px) ===== */
@media (max-width: 768px) {

  /* General Section Padding */
  .section {
    padding: 2rem 1rem;
  }
/* Hero Header */
.hero-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: black; /* Text color */
  padding: 1rem 2rem;
  max-width: 90%;
  background: rgba(255, 255, 255, 0.75); /* Light background for contrast */
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: black;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.primary-btn,
.secondary-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  background-color: black; /* Button background */
  color: white; /* Button text */
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid black;
  color: black;
}
@media (max-width: 768px) {
  .hero-overlay {
    bottom: 3%;
    padding: 1rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }
}


/* Optional: Add background overlay for better readability */
.hero-overlay::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}



  /* Split Layout → Stacked */
  .split-layout .flex-container {
    flex-direction: column;
  }
  .text-side,
  .image-side {
    flex: 1 1 100%;
  }

  /* Cards Grid → Single column */
  .cards,
  .use-case-cards,
  .partners-logos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Value List → Stack */
  .value-list {
    grid-template-columns: 1fr;
  }

  /* Video & Illustration Blocks */
  .video-block,
  .value-image {
    width: 100%;
    margin: 0 auto 2rem;
  }

  /* Footer Columns → Stack */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}




.value-grid-section {
  background: linear-gradient(to right, #0b0f2c, #01030a);
  padding: 3rem 1rem;
  border-radius: 12px;
  color: white;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-card:hover {
  transform: translateY(-4px);
  background-color: rgba(255, 255, 255, 0.08);
}

.value-card i {
  font-size: 1.8rem;
  color: #0b00d7;
}



/* Responsive Design */
@media (max-width: 768px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}





body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #fff;
}
.section {
  padding: 4rem 2rem;
}
.section:nth-of-type(even) {
  background-color: #0d0d0d;
}
.section:nth-of-type(odd) {
  background-color: #1a1a1a;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
.mt-20 {
  margin-top: 20px;
}
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}
.flex-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.text-side, .image-side {
  flex: 1 1 45%;
}
.image-side img {
  max-width: 100%;
  border-radius: 12px;
}
.value-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.value-list li {
  background: #222;
  padding: 1rem;
  border-radius: 10px;
}
.b2g-section img, .mission-section img {
  max-width: 100%;
  border-radius: 12px;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 10px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

  
  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-overlay {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 90%;
    max-width: 700px;
    padding: 1rem;
    border-radius: 10px;
  }
  
  .hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
.hero-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
}

.demo-cta-container {
  position: absolute;
  bottom: 40px;
  top: 75%;
  text-align: center;
  z-index: 2;
  color: #fff;
}

.cta-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-subtext {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.cta-demo-button {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #00112f, #011b4f);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(15, 98, 254, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-demo-button:hover {
  transform: translateY(5px);
  box-shadow: 0 12px 28px rgba(15, 98, 254, 0.4);
}




/* AI-R Edge Section */
.ai-edge-section {
  padding: 40px 20px;
  background: linear-gradient(to right, #0b0f2c, #01030a);
  border-radius: 16px;
  margin: 40px auto;
  max-width: 960px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.ai-edge-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ai-edge-text {
  flex: 1 1 50%;
  color: white;
  padding: 20px;
}

.ai-edge-text h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.ai-edge-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cfd8e5;
}

.ai-edge-image {
  flex: 1 1 40%;
  text-align: right;
  padding: 20px;
}

.ai-edge-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .ai-edge-container {
    flex-direction: column;
    text-align: center;
  }

  .ai-edge-text,
  .ai-edge-image {
    flex: 1 1 100%;
    padding: 10px;
  }

  .ai-edge-image {
    text-align: center;
  }
}

/* ──────────────────────────────────────────────────────────
   Reset & Base
────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0d0d0d;
  color: #e0e0e0;
}

/* ──────────────────────────────────────────────────────────
   Container & Title
────────────────────────────────────────────────────────── */
.use-case-group {
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 0 1rem;
}

.group-title {
  font-size: 2rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.75rem;
}

/* ──────────────────────────────────────────────────────────
   Cards Grid
────────────────────────────────────────────────────────── */
.use-case-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* ──────────────────────────────────────────────────────────
   Single Card
────────────────────────────────────────────────────────── */
.use-case-card {
  background-color: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* ──────────────────────────────────────────────────────────
   Card Image
────────────────────────────────────────────────────────── */
.use-case-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* ──────────────────────────────────────────────────────────
   Card Text
────────────────────────────────────────────────────────── */
.card-content {
  padding: 1.5rem;
}

.card-content h4 {
  font-size: 1.4rem;
  color: #00ffc3; /* neon accent */
  margin-bottom: 0.75rem;
}

.card-content p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.5;
}


/*drone title*/
.page-title {
  text-align: center;
  font-size: 4rem;        /* extra‑large heading */
  margin: 2rem 0 1rem;    /* space above & below */
  font-weight: 700;       /* nice and bold */
  line-height: 1.2;
}



/* ──────────────────────────────────────────────────────────
   Reset & Base
────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0d0d0d;
  color: #e0e0e0;
  line-height: 1.5;
}

/* ──────────────────────────────────────────────────────────
   Page Title
────────────────────────────────────────────────────────── */
.page-title {
  text-align: center;
  font-size: 3rem;
  color: darkblue;
  margin: 2rem 0;
}
/* ──────────────────────────────────────────────────────────
   Card Header (title + underline)
────────────────────────────────────────────────────────── */
.card-header {
  background: linear-gradient(135deg, #1f2a36, #0d131f);
  padding: 1rem 1.5rem;
}
.card-header h4 {
  font-size: 1.25rem;
  color: #ffffff;
  position: relative;
}
.card-header h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: #ff9900;
  margin-top: 6px;
  border-radius: 2px;
}

/* ──────────────────────────────────────────────────────────
   Card Media (image)
────────────────────────────────────────────────────────── */
.card-media img {
  display: block;
  width: 100%;
  height: auto;
}

/* ──────────────────────────────────────────────────────────
   Card Body (text + link)
────────────────────────────────────────────────────────── */
.card-body {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-body p {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.explore {
  font-size: 1rem;
  font-weight: 600;
  color: #4aa3ff;
  display: inline-flex;
  align-items: center;
}
.explore .arrow {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.2s ease;
}
.explore:hover .arrow {
  transform: translateX(4px);
}



html {
  scroll-behavior: smooth;
}



body {
  background-color: #0b1120;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  margin: 0;
  padding: 0;
}

.use-case-section {
  padding: 80px 40px;
  border-bottom: 1px solid #1f2937;
}

.use-case-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.use-case-text {
  flex: 1;
  min-width: 300px;
}

.use-case-text h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #ffffff;
}

.use-case-text p {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 24px;
  max-width: 500px;
}

.cta-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

.cta-link:hover {
  text-decoration: underline;
}

.use-case-image {
  flex: 1;
  min-width: 300px;
}

.use-case-image img {
  width: 70%;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
}


/* use cases and benefits texts*/
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 60px auto 40px;
    color: #ffffff;
    max-width: 1200px;
  }
  .use-case-section,
  .use-case-group {
    padding: 0 20px;
  }
  .use-case-group .container {
    max-width: 1200px;
    margin: 0 auto;
  }



  :root {
      --bg-dark: #0a0f2c;
      --bg-light: #132042;
      --primary: #e1e6f9;
      --accent: #b46bff;
      --text: #e1e6f9;
      --placeholder: #8693b1;
    }

    body {
      margin: 0;
      padding: 0;
      background-color: var(--bg-dark);
      color: var(--text);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    a {
      text-decoration: none;
      color: var(--primary);
    }

    .site-header {
      background: linear-gradient(90deg, #0a0f2c 0%, #132042 100%);
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #1e2d55;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-img {
      height: 40px;
    }

    .brand-name {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--primary);
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }

    .nav-links li a {
      color: var(--text);
      font-weight: 500;
    }

    .cta-button-header {
      padding: 0.5rem 1rem;
      background-color: var(--primary);
      border-radius: 6px;
      color: #132042;
      font-weight: bold;
    }

    .contact.section {
      padding: 4rem 1rem;
      text-align: center;
    }

    .contact h2 {
      font-size: 2.2rem;
      margin-bottom: 2rem;
      color: var(--accent);
    }

    form#contactForm {
      max-width: 700px;
      margin: 0 auto;
      background-color: var(--bg-light);
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 0 30px rgba(75, 141, 255, 0.15);
    }

    .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    input, textarea, select {
      flex: 1 1 100%;
      padding: 0.75rem;
      background: #1b254d;
      color: var(--text);
      border: 1px solid #2c3760;
      border-radius: 8px;
      font-size: 1rem;
    }

    input::placeholder, textarea::placeholder {
      color: var(--placeholder);
    }

    .form-row input[type="text"],
    .form-row input[type="email"],
    .form-row select {
      flex: 1 1 calc(50% - 0.5rem);
    }

    button[type="submit"] {
      background: var(--primary);
      color: #1b254d;
      padding: 0.8rem 2rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin-top: 1rem;
      font-size: 1rem;
      transition: background 0.3s ease;
    }

    button:hover {
      background: #3b75d0;
    }

    .contact-info {
      margin-top: 3rem;
      font-size: 1.1rem;
      line-height: 1.6;
      color: #d1d9f0;
    }

    .location-card {
      max-width: 700px;
      margin: 2rem auto;
      background-color: var(--bg-light);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 0 20px rgba(75, 141, 255, 0.1);
    }

    .location-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    footer.site-footer {
      background-color: var(--bg-light);
      color: #a2b1d1;
      padding: 2rem 1rem;
      text-align: center;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1000px;
      margin: 0 auto;
      gap: 2rem;
    }

    .footer-column h3 {
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin-bottom: 0.5rem;
    }

    .social-links img {
      width: 24px;
    }

    @media (max-width: 768px) {
      .nav-links {
        flex-direction: column;
        gap: 1rem;
      }

      .form-row input[type="text"],
      .form-row input[type="email"],
      .form-row select {
        flex: 1 1 100%;
      }

      .footer-container {
        flex-direction: column;
        align-items: center;
      }
    }



    .technologies.section {
  background-color: #0b0f1a;
  color: #ffffff;
  padding: 5rem 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  color: #70a2ff;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-description {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  text-align: center;
  color: #ccc;
  font-size: 1.1rem;
}

.command {
  font-style: italic;
  background-color: #111d33;
  border-left: 4px solid #70a2ff;
  padding: 1rem 1.5rem;
  margin: 2rem auto;
  max-width: 700px;
  color: #9ecbff;
  font-size: 1.1rem;
}

.use-case-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.use-case-card {
  background-color: #111d33;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(112, 162, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(112, 162, 255, 0.25);
}

.use-case-card h3 {
  color: #70a2ff;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.use-case-card p {
  color: #ccd6f6;
  font-size: 1rem;
}

.video-section {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.visual-journey-card {
  background-color: #111d33;
  border-radius: 12px;
  overflow: hidden;
  max-width: 800px;
  box-shadow: 0 0 30px rgba(112, 162, 255, 0.2);
}

.use-case-video {
  width: 100%;
  display: block;
  border-bottom: 2px solid #70a2ff;
}

.visual-journey-card .card-content {
  padding: 1.5rem;
  text-align: center;
}

.visual-journey-card h2 {
  color: #70a2ff;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.visual-journey-card p {
  color: #c0d3f5;
  font-size: 1rem;
}


  .video-section {
    max-width: 640px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
  }

  .youtube-card {
    position: relative;
    width: 100%;
  }

  /* 16:9 Responsive Container */
  .video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
  }

  .video-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
  }

  /* Centered Play Button */
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%);
    background: url('https://upload.wikimedia.org/wikipedia/commons/e/e1/YouTube_play_button_icon_(2013-2017).svg') no-repeat center;
    background-size: contain;
    opacity: 0.85;
    transition: transform 0.2s;
  }

  .video-container:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
  }

  .youtube-info {
    margin-top: 12px;
    text-align: left;
  }

  .video-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
  }

  .video-channel {
    font-size: 14px;
    color: #666;
    margin: 4px 0 0 0;
  }

  /* Embed Container */
  .embed-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    display: none;
  }

  .embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  .video-section {
    max-width: 640px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
  }

  .youtube-card {
    position: relative;
    width: 100%;
    cursor: pointer;
  }

  .video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    overflow: hidden;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .video-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%);
    background: url('https://upload.wikimedia.org/wikipedia/commons/e/e1/YouTube_play_button_icon_(2013-2017).svg') no-repeat center;
    background-size: contain;
    opacity: 0.85;
    transition: transform 0.2s;
  }

  .youtube-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
  }

  .youtube-info {
    margin-top: 12px;
    text-align: left;
  }

  .video-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
  }

  .video-channel {
    font-size: 14px;
    color: #666;
    margin: 4px 0 0 0;
  }

  .embed-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    display: none;
  }

  .embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }