/* Base */
:root {
  --bg-color: #111;
  --text-color: #f0f0f0;
  --accent-color: #00bcd4;
  --header-color: #292929;
}

.menu-toggle {
  display: none !important; /* hide hamburger */
}


body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

/* Light mode overrides */
body.light-mode {
  --bg-color: #e1f0f2;
  --text-color: #1a1919;

}
/* Header */
header {
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}


/* Logo image styling */
.logo-image {
    height: 100px;
    width: auto;
    transform: scale(1.3); /* Enlarge by 30% */
    transform-origin: center;
}

nav a {
    color: #ccc;
    margin-left: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #fff;
}


/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    
}

.dropbtn:hover {
    color: #fff;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--header-color);
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.5);
    z-index: 1001;
    border-radius: 4px;
    padding: 10px 0;
}

.dropdown-content a {
    color: #ccc;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-content a:hover {
    background-color: #222;
    color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.product {
    margin-bottom: 60px;
    max-width: 800px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto; /* Ensures scroll for tall modals */
    background-color: rgba(0,0,0,0.7);
    padding: 20px; /* Reduce from 60px so top spacing is reasonable */
    box-sizing: border-box;
}

.modal-content {
    background-color: #1a1a1a;
    margin: auto;
    padding: 20px;
    border: 1px solid #444;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    color: #f0f0f0;
    max-height: 100vh; /* Limit height */
    overflow-y: auto; /* Scroll inside modal-content if needed */
    box-sizing: border-box;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: white;
    text-decoration: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('media/hero-fallback.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #aaa;
}

.hero-content h1 {
  color: white;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-content p {
  color: white;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.btn {
    margin-top: 1.5rem;
    padding: 12px 28px;
    background-color: white;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e0e0e0;
}

/* Product Image */
.product-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
}

.product-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.5);
}

.product-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    background-color: #fff;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e0e0e0;
}


/* Contact Form */
.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    margin: 50px auto;
    background: var(--header-color);
    padding: 30px;
    border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.contact input,
.contact button {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border-radius: 5px;
    border: none;
}

.contact input {
    background-color: #222;
    color: #fff;
    border: 1px solid #444;
}

.contact button {
    background-color: #fff;
    color: #000;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact button:hover {
    background-color: #ddd;
}

/* Specs Page */
.specs-page {
    padding: 40px 20px;
}

.specs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.left-column {
    flex: 2;
    min-width: 300px;
}

.right-column {
    flex: 1;
    min-width: 250px;
}

.specs-logo {
    width: 150px;
    display: block;
    margin-bottom: 20px;
}

h2 {
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-top: 30px;
    font-size: 1.4rem;
    color: --text-color;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    padding: 6px 0;
    border-bottom: 1px solid #333;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #444;
    padding: 10px;
    text-align: center;
}

.note {
    font-size: 0.9em;
    color: #888;
}

.carousel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px; 
  margin: 0 auto 20px auto; 
}

.carousel-item {
  display: none;
  text-align: center;
}

.carousel-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.carousel-caption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--test-color);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  border-radius: 50%;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

.carousel-btn:hover {
  background-color: rgba(0,0,0,0.8);
}


/* Dimension Image */
.dimension {
    margin-top: 20px;
    text-align: center;
}

.dimension img {
    max-width: 100%;
    height: auto;
    border: 1px solid #333;
    margin-bottom: 10px;
    border-radius: 8px;
}

.step-program {
  max-width: 1100px;

  padding: 40px;
  background: #101010;
  color: #f5f5f5;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
  font-family: 'Segoe UI', sans-serif;
}

.step-program h1 {
  font-size: 3em;
  color: #00bcd4;
  margin-bottom: 10px;
}

.step-program h2 {
  font-size: 1.5em;
  color: #aaa;
  margin-bottom: 20px;
}

.step-program .intro {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.step-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.step-left, .step-right {
  flex: 1 1 450px;
}

.step-program h3 {
  margin-top: 20px;
  color: #00e5ff;
}

.step-program ul, .step-program ol {
  padding-left: 20px;
  margin-top: 10px;
}

.step-program li {
  margin-bottom: 10px;
}

.step-program .cta {
  text-align: center;
  margin-top: 50px;
}

.step-program .cta .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #00bcd4;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.step-program .cta .btn:hover {
  background: #0097a7;
}
.how-it-works-img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Container for the whole page content */
.step-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
}

/* Header styling for the page */
.step-header {
  text-align: center;
  margin-bottom: 2rem;
}


.step-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #00bcd4;
}

.step-header h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.first-letter {
  color: #00bcd4;
  font-weight: bold;
}

/* Section styling */
.step-section {
  background: #1e1e1e; /* Or any background color to highlight the section */
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.step-section h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #00bcd4; /* Accent color */
}

/* Flex styling for image and content */
.section-content {
  color: var(--header-color);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
}

/* Image styling */
.section-img {
  flex: 1 1 300px;
  max-width: 40%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* List styling */
.step-section ul {
  color: #f0f0f0;
  flex: 1 1 300px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-section ul li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* CTA button styling */
.cta {
  text-align: center;
  margin-top: 2rem;
}

.cta .btn {
  background: #00bcd4;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.cta .btn:hover {
  background: #0097a7;
}

/* Expandable image styling (optional cursor) */
.expandable {
  cursor: zoom-in;
}

/* Lightbox overlay */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

/* Lightbox image */
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  border-radius: 8px;
}

/* Close button */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}


/* About Styles */
.about-us {
  padding: 40px 20px;
  background-color: var(--bg-color); /* match your dark mode */
  color: var(--text-color);
  max-width: 900px;
  margin: auto;
}

.about-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00bcd4;
}

.about-section .intro {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-list {
  list-style: none;
  padding-left: 0;
}

.about-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00bcd4;
  font-size: 1rem;
}

/* FAQ Styles */
.faqs-container {
  max-width: 800px;
  margin: 100px auto 50px;
  padding: 0 20px;
  font-family: 'Roboto', sans-serif;
}

.faqs-container h1 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #00bcd4;
  text-align: center;
}

.faq {
  border-bottom: 1px solid #444;
  margin-bottom: 20px;
}

.question {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-color);
  width: 100%;
  text-align: left;
  padding: 15px 0;
  cursor: pointer;
  transition: color 0.3s;
}

.question:hover {
  color: #00bcd4;
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-color);
}

.answer p {
  padding: 10px 0;
  margin: 0;
}

/* Toggle open state */
.faq.active .answer {
  max-height: none;
}

.raptor-step {
  padding: 20px;
  background: var(--bg-color);
  font-family: Arial, sans-serif;
}

.raptor-step h1 {
  text-align: center;
  margin-bottom: 30px;
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}

.platform h2 {
  color: #00bcd4;
  margin-bottom: 15px;
}

.card {
  background: var(--header-color);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 20px;
  text-align: center;
  padding: 15px;
}

.card h3 {
  margin: 10px 0;
  font-size: 1.2rem;
  color: #f0f0f0;
}

.card p {
  font-size: 0.95rem;
  color: #f0f0f0;
}

.card button {
  margin-top: 10px;
  padding: 8px 15px;
  border: none;
  background: #00bcd4;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.card button:hover {
  background: #00aad4;
}

@media (max-width: 900px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }
}
.card img {
  width: 100%;
  max-width: 280px;   /* Set a nice fixed width */
  height: auto;       /* Keep the original aspect ratio */
  display: block;
  margin: 0 auto;
  border-bottom: 1px solid #ddd;
}



/* Footer */
footer {
    background: var(--header-color);
    color: #777;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    border-top: 1px solid #222;
}

/* Mobile */
/* MOBILE NAVIGATION */

@media (max-width: 768px) {
  .menu-toggle { display: block !important; }

  nav {
    display: none; 
    flex-direction: column;
    width: auto;
    right: 10px;
  background: var(--header-color);
    position: absolute; 
    top: 100%; 
  min-width: 200px;
  border-radius: 8px;
  padding: 5px 0;
  }

  nav.active {
    display: flex; 
  }

  nav a, .dropdown {
    margin: 0; 
     padding: 12px 20px;
    border: none;
    text-align:left;
    width:100%;
    }

  /* dropdown toggle for mobile */
  .dropdown-content {
    position: relative;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    background: #222;
  }

  .dropdown.active .dropdown-content {
    display: flex;
    flex-direction: column;
  }
  
  nav {
  transition: max-height 0.3s ease;
  overflow: hidden;
  max-height: 0;
}

nav.active {
  max-height: 500px; /* or large enough to fit links */
}

.get-in-touch{
margin-left: 20px;
}


}

