:root {
  --primary-color: #313f92; /* A deep blue/indigo for 'Nexus' */
  --secondary-color: #4fc9f9; /* A contrasting orange for 'Velocity' */
  --text-color: #333;
  --background-color: #f4f4f9;
  --footer-bg: #222;
  --footer-text: #ddd;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
}

/* --- Header & Main Content --- */
header {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h2 {
  font-weight: 400;
  font-size: 1.2em;
  color: var(--text-color);
  padding: 0 20px 40px;
  text-align: center;
}

/* --- Navbar Styling --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1em;
  font-weight: 600;
  color: #1a1a1a;
}

.logo i {
  font-size: 1.8em;
  color: #4a5568;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-item {
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.95em;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover {
  color: #0d6efd;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-actions-mobile {
  display: none;
}

.nav-login {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.95em;
  transition: color 0.3s;
}

.nav-login:hover {
  color: #0d6efd;
}

.nav-btn-primary {
  background: #0d6efd;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(13, 110, 253, 0.2);
}

.nav-btn-primary:hover {
  background: #0b5ed7;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1000;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #1a1a1a;
  transition: all 0.3s ease;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 30px;
  }
}

@media (max-width: 968px) {
  .nav-actions-mobile {
    display: block;
  }

  .nav-actions-desktop {
    display: none;
  }

  .navbar {
    padding: 20px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 30px 0 120px 0;
    gap: 0;
    transform: none;
    left: -100%;
    z-index: 999;
    height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 1.5rem 0;
  }

  .nav-actions-mobile {
    list-style: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
  }

  .nav-actions-mobile .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 20px;
  }

  .nav-actions-desktop {
    display: none;
  }

  .nav-login {
    padding: 12px 0;
  }

  .nav-btn-primary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 480px) {
  .nav-btn-primary {
    padding: 10px 24px;
    font-size: 0.9em;
  }

  .nav-login {
    font-size: 0.9em;
  }
}

/* --- Hero Section Styling --- */
.hero-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  padding: 100px 20px;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-caption {
  color: #0d6efd;
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-heading {
  font-size: 3.5em;
  color: #1a1a1a;
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-description {
  color: #1a1a1a;
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 550px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-btn {
  padding: 16px 40px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-btn-primary {
  background: #0d6efd;
  color: white;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
  border: none;
}

.hero-btn-primary:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.hero-btn-secondary {
  background: white;
  color: #1a1a1a;
  border: 2px solid #e0e0e0;
}

.hero-btn-secondary:hover {
  background: #f8f9fa;
  border-color: #0d6efd;
  color: #0d6efd;
  transform: translateY(-2px);
}

.hero-btn-secondary i {
  font-size: 0.85em;
}

.hero-reviews {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.review-card {
  background: white;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
  flex: 1;
  max-width: 250px;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #10b981;
  font-size: 1em;
}

.review-stars-orange {
  color: #f59e0b;
}

.review-rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rating-number {
  font-size: 1.4em;
  font-weight: 700;
  color: #1a1a1a;
}

.rating-count {
  font-size: 0.85em;
  color: #999;
}

.review-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}

.review-brand i {
  color: #666;
  font-size: 1.1em;
}

.review-brand span {
  font-size: 0.9em;
  color: #666;
  font-weight: 500;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 0;
  position: relative;
  z-index: 1;
  object-fit: cover;
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-image {
    order: -1;
  }

  .hero-content {
    text-align: center;
  }

  .hero-caption {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-reviews {
    justify-content: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-heading {
    font-size: 2.8em;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px;
  }

  .hero-heading {
    font-size: 2.2em;
  }

  .hero-description {
    font-size: 1em;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .review-card {
    max-width: 100%;
  }

  .hero-reviews {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.8em;
  }

  .hero-caption {
    font-size: 0.8em;
  }

  .review-card {
    padding: 16px 20px;
  }

  .rating-number {
    font-size: 1.2em;
  }
}

/* --- Scrolling Ribbon Section --- */
.scrolling-ribbon {
  background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.ribbon-track {
  display: flex;
  width: fit-content;
  animation: scroll 30s linear infinite;
}

.ribbon-content {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 15px;
  white-space: nowrap;
}

.ribbon-item {
  color: white;
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ribbon-separator {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2em;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.scrolling-ribbon:hover .ribbon-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .ribbon-item {
    font-size: 0.95em;
  }

  .ribbon-content {
    gap: 20px;
  }

  .ribbon-track {
    animation: scroll 25s linear infinite;
  }
}

main {
  flex-grow: 1;
  padding: 50px 20px;
}

/* --- Countdown Timer Styling --- */
.countdown-container {
  background: var(--primary-color);
  color: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  margin: 30px auto;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.countdown-container h3 {
  margin-bottom: 20px;
  font-size: 1.5em;
}

.timer {
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

.time-box {
  background: var(--secondary-color);
  padding: 15px 10px;
  border-radius: 8px;
  font-size: 0.8em;
  flex: 1;
  min-width: 70px;
  text-transform: uppercase;
}

.time-box span {
  display: block;
  font-size: 2.5em;
  font-weight: 700;
}

/* --- Services List --- */
.services {
  margin: 40px auto;
  max-width: 600px;
}

.services h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.services ul {
  list-style: none;
  padding: 0;
  font-size: 1.1em;
  line-height: 1.8;
}

/* --- Subscribe Form --- */
.cta {
  font-size: 1.2em;
  color: var(--primary-color);
  margin-top: 20px;
}

.subscribe-form {
  margin: 15px auto 40px;
  max-width: 400px;
  display: flex;
}

.subscribe-form input {
  padding: 10px;
  flex-grow: 1;
  border: 2px solid var(--primary-color);
  border-right: none;
  border-radius: 5px 0 0 5px;
  font-size: 1em;
}

.subscribe-form button {
  background: var(--secondary-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s;
}

.subscribe-form button:hover {
  background-color: #519aef; /* Lighter shade on hover */
}

/* --- FAQ Section --- */
.faq-section {
  padding: 80px 20px;
  background: #f4f4f9;
}

.faq-title {
  text-align: center;
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-subtitle {
  text-align: center;
  font-size: 1.2em;
  color: #666;
  margin-bottom: 60px;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.faq-item-left {
  grid-template-columns: 250px 1fr;
}

.faq-item-right {
  grid-template-columns: 1fr 250px;
}

.faq-number {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.faq-number:hover {
  transform: translateY(-5px);
}

.faq-number .number {
  font-size: 4em;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.faq-number p {
  font-size: 1.1em;
  font-weight: 500;
  margin: 0;
}

.faq-item:nth-child(2) .faq-number {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
}

.faq-item:nth-child(3) .faq-number {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.faq-item:nth-child(4) .faq-number {
  background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
}

.faq-content {
  background: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-icon {
  position: absolute;
  top: -20px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.faq-icon i {
  color: white;
  font-size: 1.5em;
}

.faq-item:nth-child(2) .faq-icon {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
}

.faq-item:nth-child(3) .faq-icon {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.faq-item:nth-child(4) .faq-icon {
  background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
}

.faq-content h3 {
  font-size: 1.4em;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 600;
  padding-right: 70px;
}

.faq-content p {
  color: #666;
  line-height: 1.7;
  font-size: 1em;
  margin: 0;
}

@media (max-width: 968px) {
  .faq-item,
  .faq-item-left,
  .faq-item-right {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-item-right .faq-number {
    order: -1;
  }

  .faq-number {
    max-width: 400px;
    margin: 0 auto;
  }

  .faq-content {
    padding: 40px 25px 25px;
  }

  .faq-icon {
    top: -25px;
    right: 50%;
    transform: translateX(50%);
  }

  .faq-content h3 {
    padding-right: 0;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 15px;
  }

  .faq-title {
    font-size: 2em;
  }

  .faq-subtitle {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .faq-container {
    gap: 30px;
  }

  .faq-number .number {
    font-size: 3em;
  }

  .faq-content h3 {
    font-size: 1.2em;
  }
}

/* --- Call to Action Section --- */
.cta-section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a3e 0%, #0f0f2e 50%, #1a1a3e 100%);
  overflow: hidden;
  text-align: center;
}

.cta-background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  top: -150px;
  left: -100px;
  animation: float 8s ease-in-out infinite;
}

.cta-shape-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  bottom: -100px;
  right: -80px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-20px) translateX(20px);
  }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5em;
  color: white;
  margin-bottom: 15px;
  font-weight: 600;
}

.cta-content p {
  font-size: 1.3em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-icon {
  font-size: 1.2em;
}

.cta-btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.cta-btn-solid {
  background: white;
  color: #1a1a3e;
  border: 2px solid white;
}

.cta-btn-solid:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 20px;
  }

  .cta-content h2 {
    font-size: 2em;
  }

  .cta-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .cta-shape-1,
  .cta-shape-2 {
    width: 250px;
    height: 250px;
  }
}

/* --- Footer --- */
footer {
  background: white;
  color: var(--text-color);
}

.footer-main {
  background: #f8f9fa;
  padding: 60px 20px 40px;
  border-top: 3px solid var(--primary-color);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  text-align: left;
}

.footer-column h3 {
  color: var(--primary-color);
  font-size: 1.8em;
  margin-bottom: 8px;
  font-weight: 700;
  text-align: left;
}

.footer-tagline {
  color: var(--secondary-color);
  font-size: 0.95em;
  margin-bottom: 25px;
  font-weight: 500;
  text-align: left;
}

.footer-about h4,
.footer-column h4 {
  color: var(--text-color);
  font-size: 1.1em;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: left;
}

.footer-about p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95em;
  text-align: left;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95em;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(3px);
}

.footer-links a::before {
  content: "▸ ";
  color: var(--secondary-color);
  margin-right: 5px;
}

.contact-details p {
  color: #666;
  margin-bottom: 15px;
  font-size: 0.95em;
  line-height: 1.6;
}

.contact-details strong {
  color: var(--text-color);
  font-weight: 600;
}

.newsletter {
  margin-top: 25px;
}

.newsletter h5 {
  color: var(--text-color);
  font-size: 1em;
  margin-bottom: 15px;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icons i {
  font-size: 1.1em;
}

.footer-bottom {
  background: var(--footer-bg);
  padding: 20px;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--secondary-color);
}

.footer-bottom-links .separator {
  color: #666;
}

.footer-copyright {
  color: var(--footer-text);
  font-size: 0.85em;
}

.footer-copyright p {
  margin: 0;
}

@media (max-width: 968px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 20px 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-column h3 {
    font-size: 1.5em;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* --- Our Services Section --- */
.our-services {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.our-services h3 {
  font-size: 2.5em;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.services-subtitle {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #666;
  font-size: 1.05em;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-box {
  text-align: left;
  padding: 0;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 2em;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.service-box:hover .service-icon {
  background: var(--primary-color);
  transform: scale(1.05);
}

.service-box:hover .service-icon i {
  color: white;
}

.service-box h4 {
  font-size: 1.3em;
  color: var(--text-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.service-box p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 968px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .our-services {
    padding: 50px 15px;
  }

  .our-services h3 {
    font-size: 2em;
  }

  .services-subtitle {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-box {
    text-align: center;
  }

  .service-icon {
    margin: 0 auto 20px;
  }
}

/* --- Why You Need These Services Section --- */
/* --- Why Need Services Section --- */
.why-need-services {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-caption {
  color: #0d6efd;
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.why-title {
  font-size: 2.8em;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.why-subtitle {
  font-size: 1.1em;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd 0%, #0b5ed7 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(13, 110, 253, 0.15);
}

.why-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card-icon i {
  font-size: 2em;
  color: white;
}

.why-card-title {
  font-size: 1.5em;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 700;
}

.why-card-description {
  font-size: 1em;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 968px) {
  .why-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .why-title {
    font-size: 2.2em;
  }

  .why-subtitle {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .why-need-services {
    padding: 60px 20px;
  }

  .why-header {
    margin-bottom: 40px;
  }

  .why-title {
    font-size: 1.8em;
  }

  .why-card {
    padding: 30px 25px;
  }

  .why-card-icon {
    width: 70px;
    height: 70px;
  }

  .why-card-icon i {
    font-size: 1.8em;
  }

  .why-card-title {
    font-size: 1.3em;
  }
}

.why-card p {
  color: var(--text-color);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-cards {
    flex-direction: column;
    gap: 0px;
  }

  .why-card {
    padding: 20px;
  }

  .why-card h4 {
    font-size: 1.3em;
  }
}

/* --- Our Works Section --- */
.our-works {
  padding: 60px 20px;
  background: white;
  text-align: center;
}

.our-works h3 {
  font-size: 2em;
  color: var(--text-color);
  margin-bottom: 50px;
  font-weight: 600;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.work-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.work-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.work-card:hover .work-card-image img {
  transform: scale(1.05);
}

.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(79, 201, 249, 0.7) 0%,
    rgba(49, 63, 146, 0.7) 100%
  );
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px;
}

.play-button {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.play-button i {
  color: var(--primary-color);
  font-size: 1.2em;
  margin-left: 3px;
}

.work-card:hover .play-button {
  transform: scale(1.1);
  background: var(--secondary-color);
}

.work-card:hover .play-button i {
  color: white;
}

.work-card-content {
  padding: 25px 20px;
  text-align: left;
}

.work-card-content h4 {
  font-size: 1.3em;
  color: var(--text-color);
  margin-bottom: 8px;
  font-weight: 600;
}

.work-card-content p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .works-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .our-works h3 {
    font-size: 1.5em;
    margin-bottom: 30px;
  }

  .work-card-image {
    height: 200px;
  }

  .work-card-content {
    padding: 20px 15px;
  }

  .work-card-content h4 {
    font-size: 1.1em;
  }
}

/* --- Testimonials Section --- */
.testimonials {
  padding: 80px 20px;
  background: #f8f9fa;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 3em;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.trustpilot-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1em;
}

.rating-score {
  font-weight: 700;
  color: var(--text-color);
}

.trustpilot-star {
  color: #00b67a;
  font-size: 1.3em;
}

.trustpilot-logo {
  font-weight: 700;
  color: var(--text-color);
}

.review-count {
  color: #666;
}

.testimonials-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.testimonials-sidebar {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 20px;
}

.quote-icon {
  font-size: 4em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.testimonials-sidebar h3 {
  font-size: 1.8em;
  color: var(--text-color);
  margin-bottom: 30px;
  line-height: 1.3;
  font-weight: 600;
}

.testimonial-nav {
  display: flex;
  gap: 15px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.testimonial-prev,
.testimonial-next {
  width: 50px;
  height: 50px;
  border: 2px solid #ddd;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.2em;
  color: var(--text-color);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: scale(1.05);
}

.testimonials-slider {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc(33.333% - 14px);
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0.6;
  transform: scale(0.95);
  transition: all 0.3s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-text {
  color: var(--text-color);
  line-height: 1.6;
  font-size: 1em;
  flex-grow: 1;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
}

.testimonial-rating i {
  color: #00b67a;
  font-size: 1.1em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1em;
  color: var(--text-color);
  margin-bottom: 3px;
  font-weight: 600;
}

.time-posted {
  color: #999;
  font-size: 0.9em;
}

@media (max-width: 1200px) {
  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonials-sidebar {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }

  .testimonial-card {
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .testimonials-header h2 {
    font-size: 2em;
  }

  .testimonials {
    padding: 50px 15px;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .testimonials-sidebar {
    padding: 30px 20px;
  }

  .testimonials-sidebar h3 {
    font-size: 1.4em;
  }

  .quote-icon {
    font-size: 3em;
  }
}

/* --- Why Choose NexaVelos Section --- */
.why-choose-nexavelos {
  padding: 80px 20px;
  background: var(--background-color);
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-choose-content {
  text-align: left;
}

.why-choose-label {
  color: var(--primary-color);
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.why-choose-content h2 {
  font-size: 2.5em;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.why-choose-description {
  color: #666;
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 40px;
}

.why-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.why-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.8em;
  transition: all 0.3s ease;
}

.why-feature-box:hover .feature-icon {
  background: var(--primary-color);
  color: white;
  transform: scale(1.05);
}

.feature-text h4 {
  font-size: 1.2em;
  color: var(--text-color);
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-text p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.6;
}

.why-choose-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 968px) {
  .why-choose-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .why-choose-nexavelos {
    padding: 60px 20px;
  }

  .why-choose-content h2 {
    font-size: 2em;
  }

  .why-features-grid {
    grid-template-columns: 1fr;
  }
}

/* --- WhatsApp Floating Action Button --- */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  margin-top: 3px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: #fff;
  color: #333;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4),
      0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }

  .whatsapp-tooltip {
    display: none;
  }
}
