/* style.css */
@import url("theme.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  /* background-color: var(--color-bg-dark); */
  color: var(--text-primary-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

/* =========================================
   2. BACKGROUND WRAPPER
   ========================================= */
.site-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.background-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.background-layer img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: 100%;
  /* opacity: .7; */
  -o-object-fit: cover;
     object-fit: cover;
}

.background-layer .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 101, 52, 0.9), rgba(22, 101, 52, 0.6) 20%, transparent);
}

/* =========================================
   3. HEADER & NAVIGATION
   ========================================= */
.main-header {
  width: 100%;
  position: relative;
  z-index: 50;
  background-color: var(--color-green-800);
  /* border: 1px solid red; */
}

.navbar {
  width: 100%;
  padding: 1rem 1.5rem;
  margin: 0 auto;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand Group */
.brand-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-container {
  background: var(--color-white);
  padding: 0.5rem;
  border-radius: var(--radius-full);
}

.logo-img {
  max-width: 100%;
  display: block;
  height: 4rem;
  width: 4rem;
}

.brand-details {
  color: var(--color-white);
  font-size: 0.75rem;
}

.license-title {
  font-weight: 600;
}

/* Desktop Menu */
.nav-menu {
  display: none;
  gap: 2rem;
}

.menu-link {
  text-decoration: none;
  color: var(--color-white);
  font-weight: 500;
  transition: color 0.3s;
}

.menu-link:hover {
  color: var(--color-green-300);
}

/* Header Buttons */
.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 0.5rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.btn-login {
  background-color: var(--color-green-500);
  color: white;
}

.btn-login:hover {
  background-color: var(--color-green-600);
}

/* Media Query: Show Menu on Desktop */
@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}
/* =========================================
   4. HERO SECTION
   ========================================= */
.hero-section {
  /* margin-top: 5rem; */
  width: 100%;
  margin-top: 3rem !important;
  padding: 0 1rem;
  margin: 0 auto;
  max-width: var(--container-width-xl);
  position: relative;
  z-index: 10;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  /* padding-top: 4rem; */
}

.hero-text-area {
  color: white;
  text-align: center;
  margin-bottom: 3rem;
}

.main-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.main-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  /* margin-top: 1rem; */
  color: var(--color-blue-200);
  font-size: 1.1rem;
}

/* Glass Card inside Hero */
.hero-glass-card {
  /* width:80% ; */
  background: rgba(0, 0, 0, 0.5);
  /* backdrop-filter: blur(10px); */
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
  text-align: left;
}

.glass-heading {
  font-family: var(--font-heading);
  color: var(--color-green-300);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-features {
  list-style: none;
}

.hero-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--color-blue-50);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-primary {
  background-color: var(--color-green-500);
  color: white;
  padding: 0.75rem 1.5rem;
}

.btn-transparent {
  background-color: rgba(56, 189, 248, 0.1);
  color: var(--color-blue-200);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

/* Mission Card (Green floating card) */
.mission-card-wrapper {
  /* margin-top: ; */
  display: flex;
  /* justify-content: start; */
}

.mission-card {
  scale: 0.8;
  background: rgba(22, 101, 52, 0.1);
  color: white;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  margin-top: 2rem;
  border: 1px solid rgba(201, 201, 201, 0.4039215686);
}

.mission-logo-offset {
  margin-top: -5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.mission-logo-circle {
  background: white;
  padding: 1rem;
  border-radius: 50%;
}

.mission-logo-circle img {
  max-width: 100%;
  display: block;
  width: 4rem;
  height: 4rem;
}

.mission-title {
  font-family: var(--font-heading);
  color: var(--color-green-200);
  margin-bottom: 0.5rem;
  text-align: center;
}

.mission-desc {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--color-green-100);
}

.mission-benefits {
  list-style: none;
}

.mission-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.decorative-leaf {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  padding: 1rem;
}

.decorative-leaf img {
  max-width: 100%;
  display: block;
  width: 5rem;
  transform: rotate(15deg);
}

.hero-slider-wrapper {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
  max-width: var(--container-width-xl);
  margin-top: 2rem;
  /* width: 100%; */
  padding-bottom: 4rem;
  position: relative;
  z-index: 20;
}

.slider-label {
  color: var(--color-green-200);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-window {
  width: 100%;
  overflow: hidden;
  /* Glassmorphism styling */
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem 0 1rem 0;
  /* Mask to fade edges */
  /* mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); */
  /* -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); */
}

.slider-track {
  display: flex;
  width: -moz-max-content;
  width: max-content; /* Ensures track is wide enough for all slides */
  gap: 2.6rem;
  animation: scroll-infinite 20s linear infinite;
}

.slide-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 150px; /* Fixed width for consistent spacing */
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.slide-item:hover {
  opacity: 1;
}

.slide-item img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.slide-item span {
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Infinite Scroll Animation */
@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Move left by half the track width (since we duplicated items) */
    /* Adjust this percentage based on how many items you have. 
       If you have 5 items + 5 duplicates, typically moving -50% works roughly 
       if gaps are calculated perfectly, otherwise use px calculation 
       (width of item + gap) * count */
    transform: translateX(calc(-1 * (150px + 2rem) * 5));
  }
}
/* Pause animation on hover for better UX */
.slider-track:hover {
  animation-play-state: paused;
}

/* Desktop Adjustments for Hero */
@media (min-width: 1024px) {
  .footer-layout {
    flex-direction: row !important;
  }
  .hero-section {
    flex-direction: row;
    align-items: start;
  }
  .hero-text-area {
    width: 55%;
    text-align: left;
  }
  .main-subtitle {
    justify-content: flex-start;
  }
  .hero-actions {
    flex-direction: row;
  }
  .mission-card-wrapper {
    /* margin-left: 100px; */
    flex-direction: column;
    width: 50%;
    gap: 0;
    /* justify-content: center; */
    align-items: center;
  }
  .mission-card {
    width: 100%;
    max-width: 400px;
  }
}
/* =========================================
   5. ABOUT SECTION
   ========================================= */
.about-section {
  padding: var(--section-spacing) 0;
  color: var(--color-gray-700);
  background-color: var(--color-white);
}

.about-section > .container {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
  max-width: var(--container-width-xl);
}

.about-grid {
  display: grid;
  gap: 3rem;
}

.label-small {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-green-700);
  display: block;
  margin-bottom: 0.5rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--color-green-800) ;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.text-highlight {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.text-paragraph {
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-dark {
  background-color: var(--color-bg-dark);
  color: white;
  border-radius: var(--radius-full);
}

/* Images */
.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  height: 300px;
}

.frame-img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Features Row below About */
.about-features-row {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

.feature-block {
  display: flex;
  gap: 1rem;
}

.icon-lg {
  font-size: 2.5rem;
}

.text-green {
  color: var(--color-green-600);
}

.text-blue {
  color: var(--color-blue-600);
}

.text-brown {
  color: #795548;
}

.feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary-light);
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--color-gray-600);
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .about-features-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* =========================================
   6. DRONE SERVICES SECTION
   ========================================= */
.drone-services-section {
  padding: var(--section-spacing) 0;
  background-color: var(--color-bg-light);
}

.drone-services-section > .container {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
  max-width: var(--container-width-xl);
}

.drone-services-section .services-grid-layout {
  display: grid;
  gap: 3rem;
}

.offerings-list {
  color: var(--color-green-800) ;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.offering-item {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.icon-circle {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
}

.bg-green {
  background-color: var(--color-green-500);
}

.bg-blue {
  background-color: var(--color-blue-500);
}

.offering-title {
  font-family: var(--font-heading);
  color: var(--color-bg-dark);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.offering-desc {
  font-size: 0.9rem;
  color: var(--color-gray-600);
}

.link-arrow {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-green-700);
  font-weight: 600;
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .drone-services-section .services-grid-layout {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }
  /* Swap order so image is left on desktop */
  .services-grid-layout .image-frame {
    order: -1;
  }
}
/* =========================================
   7. IMPACT SECTION
   ========================================= */
.impact-section {
  padding: var(--section-spacing) 0;
}

.impact-section > .container {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
  max-width: var(--container-width-xl);
}

.impact-section .centered-intro {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem auto;
}

.impact-grid {
  display: grid;
  gap: 1.5rem;
}

.impact-item {
  border: 1px solid var(--color-green-300);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-white-2);
  transition: all 0.4s ease;
}

.impact-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px -5px var(--color-green-300);
  border-color: var(--color-green-400);
}

.impact-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary-light);
}

.impact-desc {
  font-size: 0.9rem;
  color: var(--color-gray-600);
}

/* Media Row */
.impact-media-row {
  overflow-x: scroll;
  /* display: grid; */
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1rem 0;
}

.impact-media-row .media-card {
  flex: 0 0 auto;
  min-width: 300px;
  width: auto;
  max-width: 300px;
  border: 1px solid var(--color-green-500);
  /* opacity: 0.85; */
  border-radius: var(--radius-md);
  padding: 0.2rem;
  box-shadow: 0 0 10px rgba(60, 202, 112, 0.26), 0 0 20px rgba(34, 197, 94, 0.2);
  transition: all 0.3s ease;
}

.impact-media-row .media-card:hover {
  /* box-shadow: 0 0 15px rgba(45, 209, 105, 0.39), 0 0 30px rgba(34, 197, 94, 0.3); */
  border-color: var(--color-green-400);
  transform: translateY(-2px);
}

.media-card img {
  max-width: 100%;
  display: block;
  border-radius: calc(var(--radius-md) - 0.25rem);
  height: 150px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.media-caption {
  font-weight: 600;
  margin-top: 0.5rem;
  color: var(--text-primary-light);
  font-size: 0.9rem;
}

.action-row {
  text-align: center;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .impact-media-row {
    overflow-x: auto;
    overflow-y: hidden;
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: repeat(4, 1fr);
  }
  .impact-media-row .media-card {
    /* flex: 0 0 auto; */
    /* width: 300px; */
    min-width: 100%;
    max-width: 300px;
  }
}
/* =========================================
   8. TECH SERVICES (BOTTOM)
   ========================================= */
.tech-services-section {
  padding: var(--section-spacing) 0;
  background-color: var(--color-bg-light);
}

.tech-services-section > .container {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
  max-width: var(--container-width-xl);
}

.tech-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  margin-bottom: 3rem;
}

.banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-bg img,
.banner-bg video {
  max-width: 100%;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.5);
}

.banner-content {
	color: var(--color-green-400);
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
}

.banner-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.banner-subtitle {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.tech-intro-text {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
  color: var(--color-gray-600);
}

.tech-cards-grid {
  display: grid;
  gap: 1.5rem;
}

.tech-card {
  transition: all 0.4s ease;
  background: var(--color-white-2);
  border: 1px solid var(--color-green-300);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  position: relative;
}

.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px -5px var(--color-green-300);
  border-color: var(--color-green-400);
}

.card-icon {
  font-size: 2rem;
  color: var(--color-green-500);
  margin-bottom: 1rem;
}

.card-head {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  color: var(--text-primary-light);
}

.coming-soon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-block;
  background: linear-gradient(135deg, var(--color-green-500) 0%, var(--color-green-600) 100%);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(34, 197, 94, 0.3);
  font-family: var(--font-body);
  line-height: 1.2;
  z-index: 10;
}

.card-body {
  font-size: 0.9rem;
  color: var(--color-gray-600);
}

@media (min-width: 768px) {
  .tech-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .nav-actions .btn-login {
    display: none;
  }
  .coming-soon {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }
}
/* =========================================
   9. FOOTER
   ========================================= */
.main-footer {
  background-color: var(--color-bg-dark);
  color: white;
  padding-top: 1rem;
  padding-bottom: 0.75rem;
  border-top: 4px solid var(--color-green-600);
  font-size: 0.85rem;
  line-height: 1.4;
}

.main-footer > .container {
  width: 100%;
  padding: 1rem 1.5rem;
  margin: 0;
  max-width: 100%;
}

.footer-layout {
  flex-direction: row;
  display: flex;
  gap: 3rem;
  margin-bottom: 0.75rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 4.5rem;
  height: 4.5rem;
  background-color: var(--color-white);
  border-radius: 50%;
  padding: 0.75rem;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-content {
  display: flex;
  flex-direction: column;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-green-400);
  margin: 0;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.footer-slogan {
  color: var(--color-blue-200);
  max-width: 20rem;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  line-height: 1.3;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-green-500);
  display: inline-block;
  padding-bottom: 0.25rem;
}

.contact-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-contact {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.footer-social-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background-color: var(--color-green-500);
  color: var(--color-white);
  border-color: var(--color-green-500);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(34, 197, 94, 0.3);
}

.social-link svg {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-links a {
  text-decoration: none;
  color: inherit;
}

.contact-row {
  text-decoration: none;
  color: inherit;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.4;
}

.contact-row .material-symbols-outlined {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-row:hover {
  color: var(--color-green-300);
}

.footer-copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.footer-copyright > .container {
  width: 100%;
  padding: 0 1.5rem;
  margin: 0;
  max-width: 100%;
}

@media (min-width: 768px) {
  .footer-layout {
    flex-direction: row;
    gap: 4rem;
  }
  .footer-brand {
    flex: 0 0 auto;
  }
  .footer-contact {
    flex: 1;
  }
}
/*# sourceMappingURL=style.css.map */