/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  font-family: "Inria Serif", serif;
  overflow-y: scroll; /* keeps layout stable */
}
body::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

/* Navbar styling */
.nav-links a.active {
  color: #0066ff; /* Highlight color */
  position: relative;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent; /* ✅ No background color */
  padding: 15px 40px;
  position: absolute; /* ✅ Makes it overlay the hero section */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* ✅ Keeps navbar above hero */
}

.logo img {
  height: 60px;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0066ff;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000;
  padding: 10px 0;
  border-radius: 6px;
  display: none;
  flex-direction: column;
  min-width: 240px;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu a {
  color: #fff;
  font-weight: 500;
  display: block;
}

.dropdown-menu a:hover {
  color: #0066ff;
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Contact button */
.contact-btn {
  background-color: #001aff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #0033ff;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.bar {
  position: absolute;
  left: 50%;
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background-color: #fff;
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

/* Bar positions */
.bar:nth-child(1) {
  transform: translate(-50%, -8px);
}
.bar:nth-child(2) {
  transform: translate(-50%, 0);
}
.bar:nth-child(3) {
  transform: translate(-50%, 8px);
}

/* Active state (Close X) */
.menu-toggle.active .bar:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

/* Responsive Styles */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: rgba(0, 0, 0, 0.95); /* ✅ Slight transparency for mobile menu */
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 25px 0;
    gap: 25px;
    display: none;
    border-top: 1px solid #111;
  }

  .nav-links.active {
    display: flex;
  }

  /* Center and clean dropdown */
  .dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-menu {
    position: static;
    background-color: transparent;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding-top: 5px;
  }

  .dropdown-menu li {
    padding: 0;
  }

  /* Show dropdown when parent tapped or hovered */
  .dropdown:hover .dropdown-menu {
    display: flex;
  }

  /* Contact button centered */
  .contact-btn {
    background-color: #001aff;
    text-align: center;
    padding: 12px 25px;
  }
}/* Hero Section */




.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 4%;
  overflow: hidden; /* hide overflow from video */
}

/* Background Video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(50%) contrast(120%);
}

/* Text Section */
.hero-content {
  position: relative; /* above video */
  z-index: 2;
  max-width: 700px;
  padding: 3px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: "Inria Serif", serif;
}

.hero p {
  font-size: 1.3rem;
  color: #b3b3b3;
  line-height: 1.3;
  margin-top: 10px;
}
.hero h1 span {
  color: #3b82f6;
  text-decoration: none;
}
/* Responsive Hero */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .hero-content {
    padding: 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }
}




/* About Title */
.about-title h1 {
  font-size: 7rem;
  font-weight: 800;
  color: #262626;
  margin-left: 60px;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.about {
  padding: 60px 20px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
  flex-wrap: wrap;
}

/* Image */
.about-image img {
  width: 100%;
  max-width: 600px;
 
  object-fit: cover;
}
.about-image {
  flex: 1.2;   /* gives slightly more space to image */
}
/* Content */
.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
  color: #ffffff;
}

.highlight {
  color: #1a73e8;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 600px;
  color: #cfcfcf;
}

/* Responsive */
@media (max-width: 768px) {
  .about-title h1 {
    font-size: 3rem;
    text-align: center;
    margin-left: 0;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .about-content p {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .about-image img {
    max-width: 100%;
  }
}






.solutions-section {
  text-align: center;
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.solutions-title {
  font-size: 7rem;
  font-weight: 800;
  color: #262626;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.solutions-subtitle {
  color: #ccc;
  font-size: 1rem;
  max-width: 800px;
  margin: 20px auto 60px;
}

.solutions-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.solution-card {
  background-color: #121212;
  border-radius: 10px;
  padding: 30px;
  width: 45%;
  min-width: 320px;
  text-align: left;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.solution-card h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.solution-card p {
  color: #bbb;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.solution-card h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}

.solution-card ul {
  color: #ccc;
  list-style-type: disc;
  padding-left: 20px;
}

.solution-card li {
  margin-bottom: 8px;
}

/* ------------------ Responsive Styles ------------------ */

/* For tablets and medium screens */
@media (max-width: 992px) {
  .solutions-title {
    font-size: 5rem;
  }

  .solutions-subtitle {
    font-size: 0.95rem;
    max-width: 600px;
  }

  .solution-card {
    width: 80%;
  }
}

/* For mobile screens */
@media (max-width: 600px) {
  .solutions-title {
    font-size: 3rem;
  }

  .solutions-subtitle {
    font-size: 0.9rem;
    margin: 15px auto 40px;
  }

  .solutions-container {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .solution-card {
    width: 100%;
    padding: 20px;
  }

  .solution-card h2 {
    font-size: 1.3rem;
  }

  .solution-card p {
    font-size: 0.9rem;
  }

  .solution-card ul {
    padding-left: 15px;
  }
}












.container {
  display: flex;
  justify-content: space-between;
  padding: 60px;
  gap: 50px;
  padding-top: 100px;
  
}

.left-section {
  flex: 1;
  max-width: 600px;
}

.left-section h1 {
  font-size: 7rem; /* reduced for smaller screens */
  font-weight: 800;
  color: #262626;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.left-section h2 {
  font-size: 24px;
  margin: 20px 0 10px;
  font-weight: normal;
  color: #fff;
}

.highlight {
  color: #3a82f7;
}

.left-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #aaa;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.impact-box {
  background-color: #111;
  padding: 20px;
  border-radius: 10px;
  font-size: 14px;
  color: #ccc;
  border: 1px solid #222;
}

.right-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}

.right-section img {
  max-width: 100%;
  
}
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    padding: 40px 30px;
  }

  .left-section h1 {
    font-size: 4.5rem;
  }

  .left-section h2 {
    font-size: 20px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .right-section {
    margin-top: 5px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 30px 20px;
  }

  .left-section h1 {
    font-size: 3.5rem;
  }

  .left-section h2 {
    font-size: 18px;
  }

  .left-section p {
    font-size: 14px;
  }

  .impact-box {
    font-size: 13px;
    padding: 16px;
  }

  .right-section img {
    width: 100%;
    height: auto;
    padding-top: 1px;
  }
}



.sybrox-edge {
  text-align: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0 2rem; /* keeps spacing on small screens */

}

/* Title Section */
.title {
  font-size: 7rem;
  font-weight: 800;
  color: #262626;
  font-family: 'Inter', sans-serif;
  text-align: right;
  margin-bottom: 2rem;
  width: 100%;
  align-self: flex-end;
  padding-right: 2rem;
  line-height: 1.1;
}

/* Responsive title scaling */
@media (max-width: 1200px) {
  .title {
    font-size: 5rem;
    text-align: center;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 2.5rem;
  }
}

/* Cards Grid */
.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  justify-content: center;
  align-items: start;
  width: 100%;
}

/* Responsive grid layout */
@media (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* Card Styling */
.card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

/* Black & white image effect */
.card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.6);
  transition: all 0.6s ease;
}

/* Hover: color + zoom */
.card:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

/* Text inside cards */
.card p {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  transition: opacity 0.3s ease;
}

/* Fade-in on hover */
.card:hover p {
  opacity: 1;
}






/* Footer Styles */
.footer {
  background-color: #000000;
  padding: 60px 5%;
  color: #d8d8d8;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cfcfcf;
  max-width: 450px;
}

.footer-col {
  width: 200px;
  margin-left: 40px;
}

/* === Headings with Half Underline === */
.footer-col h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block; /* ensures underline fits text width */
}

/* create the underline */
.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50%; /* 👈 half-width underline */
  height: 2px;
  background-color: #424242; /* accent color */
  border-radius: 2px;
}

/* Lists */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col ul li i {
  color: #707070;
  font-size: 1rem;
  min-width: 18px;
  text-align: center;
}

.footer-col ul li a {
  color: #bfc4cf;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #b5b5b5;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-col {
    margin-left: 0;
  }

  .footer-about {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 10px;
  }

  .footer-col {
    margin: 0 auto;
    width: auto;
  }

  .footer-col h3 {
    margin-top: 20px;
  }

  /* center underline on small screens */
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col ul li {
    justify-content: center;
  }

  .footer-about {
    max-width: 100%;
    margin: 0 auto;
  }
}
