/* ===== RESET & GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9fbfd;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo img {
  width: 180px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #007bff;
}

/* ===== MENU TOGGLE (MOBILE) ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #001f3f, #004aad);
  color: #fff;
  overflow: hidden;
}

.hero-section canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content .tagline {
  font-size: 1.3rem;
  color: #00c6ff;
  margin-bottom: 10px;
}

.hero-content .description {
  font-size: 1rem;
  opacity: 0.9;
}



/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}

.section-subtitle {
  text-align: center;
  color: #007bff;
  font-weight: 600;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 0;
  background: #fff;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
  color: #555;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #007bff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #005fcc;
}

.btn .arrow {
  margin-left: 8px;
  transition: transform 0.3s;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 100px 0;
  background: #f9fbfd;
  text-align: center;
}

.section-header h3 {
  color: #007bff;
  font-weight: 600;
}

.section-header h2 {
  font-size: 2rem;
  margin-top: 5px;
  margin-bottom: 10px;
}

.divider {
  width: 60px;
  height: 3px;
  background: #007bff;
  margin: 0 auto 40px;
  border-radius: 5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-8px);
}

.service-box img {
  width: 70px;
  margin-bottom: 15px;
}

.service-box h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-icon {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
  transition: color 0.3s, transform 0.3s;
}

.service-box:hover .service-icon {
  color: #005fcc;
  transform: scale(1.2);
}


/* ===== OEM PARTNERS ===== */
.oem-partners {
  padding: 100px 0;
  text-align: center;
  background: #fff;
}

.oem-partners h3 {
  color: #007bff;
}

.oem-partners h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.oem-partners p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

.swiper {
  width: 90%;
  margin: 0 auto;
}

.swiper-slide img {
  width: 150px;
  opacity: 0.8;
  transition: 0.3s;
}

.swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

/* WHY CHOOSE SECUREWAVE SECTION */
.why-choose-section {
  background: #f8f9fb;
  padding: 80px 0;
}

.why-choose-section .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #0f7be6;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
}

.section-title span {
  color: #007bff;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.choose-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 30px 20px;
  transition: all 0.3s ease;
  text-align: center;
}

.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.choose-card .icon {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
}

.choose-card h3 {
  font-size: 1.25rem;
  color: #001f3f;
  margin-bottom: 10px;
  font-weight: 600;
}

.choose-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .choose-card {
    padding: 25px 15px;
  }
}


/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}

.testimonial {
  max-width: 700px;
  margin: 30px auto;
  background: #f9fbfd;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial p {
  font-style: italic;
  color: #555;
  margin-bottom: 10px;
}

.testimonial h4 {
  color: #007bff;
}

/* Contact Section */
.contact-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0a0f25 0%, #101937 100%);
  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.contact-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-section .section-title span {
  color: #00bcd4;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 15px;
}

.contact-description {
  max-width: 700px;
  margin: 0 auto 50px auto;
  color: #ddd;
  line-height: 1.6;
}

/* Contact Wrapper - 3 cards in a row */
.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

/* Contact Info Cards */
.info-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 25px;
  flex: 1 1 300px;
  max-width: 350px;
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.info-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(0, 188, 212, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
}

.info-item:hover::before {
  opacity: 1;
}

.info-item:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 188, 212, 0.5);
  box-shadow: 0 10px 25px rgba(0, 188, 212, 0.3);
}



/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 65px;
    right: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px 0;
    transform: translateY(-150%);
    transition: 0.4s ease;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  .hero-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 1.6rem;
  }

  .hero-content .tagline {
    font-size: 1.1rem;
  }

  .service-box,
  .why-box {
    padding: 20px;
  }
}



