/* =====================
   Variables & Base
====================== */
:root {
  --primary: #0fff;
  --bg: #000;
  --text: #fff;
  --accent-shadow: 0 0 12px rgba(0, 255, 255, 0.7);
  --transition-speed: 0.4s;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Urbanist', Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
}
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* =====================
   Navbar
====================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #111;
  border-bottom: 1px solid #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.7);
  transition: background 0.3s, box-shadow 0.3s;
  height: 60px;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  height: 60px;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 60px;
}

.logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  white-space: nowrap;
  overflow: visible;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-toggle {
  display: none;
  color: #fff;
  background: none;
  border: none;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin-right: 0.5rem;
  align-items: center;
  justify-content: center;
}

.nav-menu.desktop-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  height: 60px;
}

.nav-menu.desktop-menu li {
  display: flex;
  align-items: center;
  height: 60px;
}

.nav-menu.desktop-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0 0.5rem;
  transition: color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
  display: flex;
  align-items: center;
  gap: 0.6em; /* Add this line for spacing between icon and text */
  height: 60px;
}

.nav-menu.desktop-menu a i {
  margin-right: 0.3em; /* Optional: extra space after icon */
  font-size: 1.15em;
}

.nav-menu.desktop-menu a.active {
  color: #0fff;
  font-weight: 700;
  border-bottom: 2px solid #0fff;
}

@media (max-width: 900px) {
  .nav-menu.desktop-menu {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-drawer {
    display: block;
  }
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: -260px;
  width: 250px;
  height: 100vh;
  background: #000;
  padding: 2rem 1rem;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.8);
  transition: left 0.3s;
  z-index: 9999;
}

.nav-drawer.active {
  left: 0;
}

#drawer-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
  transition: opacity 0.3s;
}
#drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.close-drawer {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  color: white;
  font-size: 2rem;
  border: none;
  cursor: pointer;
}

/* --- Mobile Nav Drawer Enhancements --- */
.nav-drawer {
  background: #111;
  box-shadow: 2px 0 16px rgba(0, 255, 255, 0.12);
  padding-top: 3.5rem;
}

#nav-drawer .nav-menu {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}
#nav-drawer .nav-menu li {
  width: 100%;
}
#nav-drawer .nav-menu a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
#nav-drawer .nav-menu a.active {
  background: #0fff2a22;
  color: #0fff;
}
#nav-drawer .nav-menu a:hover {
  background: #0fff1a18;
  color: #0fff;
}
#nav-drawer .nav-menu i {
  min-width: 22px;
  text-align: center;
  font-size: 1.2em;
}

.close-drawer {
  top: 1.2rem;
  right: 1.2rem;
  color: #0fff;
  background: none;
  border: none;
  font-size: 2.4rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.close-drawer:hover {
  background: #0fff2a22;
}

#drawer-overlay.active {
  background: rgba(0,255,255,0.10);
  opacity: 1;
}

@media (max-width: 900px) {
  #nav-drawer .nav-menu a {
    font-size: 1.18rem;
    padding: 1rem 1.5rem;
  }
  .close-drawer {
    font-size: 2.4rem;
    width: 48px;
    height: 48px;
  }
}

/* =====================
   Header & Main Layout
====================== */
header {
  text-align: center;
  padding: 4rem 1rem 2rem;
}

header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.highlight {
  color: var(--primary);
  text-shadow: var(--accent-shadow);
}

.intro {
  margin-top: 1rem;
  font-size: 1.2rem;
  opacity: 0.85;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem 1.5rem 4rem;
}

/* =====================
   Sections
====================== */
.section {
  margin-bottom: 3.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section.active, .section.revealed {
  opacity: 1;
  transform: translateY(0);
}
.section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--primary);
  text-shadow: var(--accent-shadow);
}
.section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 800px;
  line-height: 1.6;
}
.section ul {
  list-style: none;
  padding-left: 0;
  max-width: 600px;
}
.section ul li {
  font-size: 1.1rem;
  padding: 0.6rem 0 0.6rem 2.2rem;
  position: relative;
  cursor: default;
  transition: color var(--transition-speed);
}
.section ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  text-shadow: var(--accent-shadow);
}
.section ul li:hover {
  color: var(--primary);
  text-shadow: var(--accent-shadow);
}

/* =====================
   Founder Section
====================== */
.founder-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}
.founder-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.founder-image img {
  width: 220px !important;
  height: 220px !important;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--accent-shadow);
}
.founder-image .image-placeholder {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0fff33, #00ffff);
  border-radius: 20px;
  box-shadow: var(--accent-shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bg);
  user-select: none;
  transition: box-shadow var(--transition-speed);
}
.founder-image .image-placeholder:hover {
  box-shadow: 0 0 25px var(--primary), 0 0 40px var(--primary);
}
.founder-bio {
  flex: 1 1 400px;
  max-width: 600px;
}
.founder-bio h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: var(--primary);
  text-shadow: var(--accent-shadow);
}
.founder-bio p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* =====================
   Product Suite, Why Choose, Testimonials
====================== */
.product-suite-image {
  text-align: center;
  padding: 2rem 1rem;
}
.product-suite-image img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
  transition: transform 0.3s ease;
}
.product-suite-image img:hover {
  transform: scale(1.02);
}
.why-choose {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.why-text {
  flex: 1 1 300px;
}
.why-image {
  flex: 1 1 300px;
  text-align: center;
}
.why-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials-section {
  text-align: center;
}
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2.5rem 0;
  justify-content: center;
}
.testimonial-card {
  background: #111;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 1.5rem 1.2rem;
  max-width: 320px;
  min-width: 220px;
  flex: 1 1 220px;
  color: #fff;
}
.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 1rem;
}
.testimonial-card span {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: #0aaa;
  font-size: 1rem;
}

/* =====================
   Footer
====================== */
footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  opacity: 0.6;
  border-top: 1px solid rgba(15, 255, 255, 0.2);
  background: #000;
  color: #fff;
}
footer .contact-form {
  max-width: 400px;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
footer .contact-form label {
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: #ccc;
}
footer .contact-form input,
footer .contact-form textarea {
  padding: 0.6rem 1rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  box-shadow: 0 0 5px rgba(15, 255, 255, 0.15);
  transition: box-shadow 0.3s ease;
}
footer .contact-form input:focus,
footer .contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 10px #0fff;
}
footer .contact-form button {
  background-color: #0fff;
  color: #000;
  font-weight: 700;
  padding: 0.6rem 1rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 1rem;
}
footer .contact-form button:hover {
  background-color: #00e6e6;
  box-shadow: 0 0 15px #0fff;
}
footer .footer-rights {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 1rem;
  user-select: none;
}

/* Social Icons Footer Styles */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.2em;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 1.5rem;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.social-icon:hover,
.social-icon:focus {
  background: rgba(0,255,204,0.12);
  color: var(--primary);
  box-shadow: 0 0 12px 2px var(--primary);
  outline: none;
}
.social-icon.instagram:hover { color: #e1306c; box-shadow: 0 0 12px 2px #e1306c; }
.social-icon.twitter:hover { color: #fff; background: #222; box-shadow: 0 0 12px 2px #fff; }
.social-icon.tiktok:hover { color: #000; background: #fff; box-shadow: 0 0 12px 2px #000; }
.social-icon.whatsapp:hover { color: #25d366; box-shadow: 0 0 12px 2px #25d366; }
.social-icon.email:hover {
  color: #0fffc0;
  box-shadow: 0 0 12px 2px #0fffc0;
  background: rgba(0,255,204,0.18);
}

/* Style the email link like a social icon */
.footer-email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 1.5rem;
  margin-right: 0.5em;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  text-decoration: none !important;
}
.footer-email-link:hover,
.footer-email-link:focus {
  background: rgba(0,255,204,0.12);
  color: var(--primary);
  box-shadow: 0 0 12px 2px var(--primary);
  outline: none;
}

/* Company Profile Link Style */
.company-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: #181818;
  color: #0fff;
  border: 2px solid #0fff;
  border-radius: 8px;
  padding: 0.5em 1.2em;
  font-weight: 600;
  font-size: 1.08rem;
  margin: 1.2em 0 0.5em 0;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,255,255,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.company-profile-link i {
  color: #e74c3c;
  font-size: 1.2em;
}
.company-profile-link:hover, .company-profile-link:focus {
  background: #0fff;
  color: #000;
  box-shadow: 0 0 16px 2px #0fff;
  text-decoration: none;
}

/* =====================
   Responsive
====================== */
@media (max-width: 900px) {
  .nav-menu.desktop-menu {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-drawer {
    display: block;
  }
  .founder-content {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .founder-image img {
    width: 280px !important;
    height: 280px !important;
    max-width: 280px !important;
  }
}
.product-suite-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 700px) {
  .product-suite-flex {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .product-suite-flex img {
    max-width: 180px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.social-icons a,
.social-icon {
  text-decoration: none !important;
}
