  /* Global Font Styles */
body {
  font-family: "Kanit", sans-serif;
}

h1, h2, h3, h4, h5, h6, .call-btn {
  font-family: "Kanit", sans-serif;
}
.securepro-navbar {
  background: linear-gradient(90deg, #1f1f1f 50%, #00a3e0 50%);
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 100%;
  position: relative;
}

.securepro-logo a {
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
}

.securepro-logo span {
  color: #00a3e0;
}

.securepro-nav-menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.securepro-nav-menu ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 4px;
  transition: background 0.3s;
}

.securepro-nav-menu ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-call a {
  background: #ffffff;
  color: #00a3e0;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.nav-call a:hover {
  background: #00a3e0;
  color: #fff;
}

.hamburger {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .securepro-nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #1f1f1f;
    flex-direction: column;
    padding: 20px 0;
  }

  .securepro-nav-menu.active {
    display: flex;
  }

  .securepro-nav-menu ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .nav-call {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

  .securepro-banner {
/*    background: linear-gradient(135deg, #0e0e0e, #1a1a1a);*/
    padding: 80px 20px;
    color: #1f1f1f;
    font-family: 'Segoe UI', sans-serif;
  }

  .banner-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }

  .banner-text {
    flex: 1 1 450px;
  }

  .banner-text h1 {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .banner-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .banner-btn {
    display: inline-block;
    background: #00a3e0;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .banner-btn:hover {
    background: #00a3e0;
    color: #fff;
  }

  .banner-image {
    flex: 1 1 400px;
    text-align: center;
  }

  .banner-image img {
    max-width: 100%;
    height: auto;
  }

  @media (max-width: 768px) {
    .banner-content {
      flex-direction: column;
      text-align: center;
    }

    .banner-text h1 {
      font-size: 28px;
    }

    .banner-text p {
      font-size: 16px;
    }
  }
.securepro-about {
    background: #101010;
    color: #ffffff;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-elements {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .shield-icon i,
  .lock-icon i {
    font-size: 60px;
    background: #00a3e0;
    color: #101010;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 0 20px #00a3e0;
  }

  .scan-pulse {
    width: 120px;
    height: 120px;
    border: 6px solid #00a3e0;
    border-radius: 50%;
    animation: pulse 1.8s infinite;
    box-shadow: 0 0 20px #00a3e0;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(1.5);
      opacity: 0;
    }
  }

  .about-content {
    flex: 1 1 500px;
  }

  .about-content h2 {
    font-size: 32px;
    color: #00a3e0;
    margin-bottom: 20px;
  }

  .about-content p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #cccccc;
  }

  .about-content ul {
    list-style: none;
    padding: 0;
  }

  .about-content ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
  }

  .about-content ul li i {
    color: #00a3e0;
    font-size: 20px;
  }

  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
    .about-content ul {
      justify-content: center;
    }
  }
   .securepro-services {
    background: #fff;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .services-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }

  .section-title {
    font-size: 34px;
    margin-bottom: 50px;
    color: #1f1f1f;
  }

  .service-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .service-block {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    text-align: left;
    padding: 20px;
    border-left: 4px solid #00a3e0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: background 0.3s;
  }

  .service-block:hover {
    background: rgba(0, 255, 209, 0.06);
  }

  .service-block i {
    font-size: 36px;
    color: #00a3e0;
    margin-top: 5px;
  }

  .service-block h3 {
    font-size: 20px;
    color: #1f1f1f;
    margin-bottom: 10px;
  }

  .service-block p {
    color: #1f1f1f;
    font-size: 16px;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .service-items {
      flex-direction: row;
      justify-content: space-between;
    }
    .service-block {
      flex: 1;
      max-width: 32%;
      flex-direction: column;
      text-align: center;
      align-items: center;
    }
    .service-block i {
      margin-bottom: 15px;
    }
  }

   .securepro-cta {
    background: linear-gradient(90deg, #00a3e0 0%, #fff 100%);
    color: #0f0f0f;
    text-align: center;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    overflow: hidden;
  }

  .cta-content {
    max-width: 900px;
    margin: auto;
  }

  .securepro-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .securepro-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #0a0a0a;
  }

  .cta-btn {
    background: #fff;
    color: #1f1f1f;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
  }

  .cta-btn:hover {
    background: #ffffff;
    color: #00a3e0;
  }

  @media (max-width: 768px) {
    .securepro-cta h2 {
      font-size: 28px;
    }

    .securepro-cta p {
      font-size: 16px;
    }

    .cta-btn {
      padding: 12px 28px;
    }
  }

   .securepro-features {
    background: #0f0f0f;
    color: #fff;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .features-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .features-header h2 {
    font-size: 36px;
    color: #00a3e0;
  }

  .features-header p {
    font-size: 18px;
    color: #ccc;
    margin-top: 10px;
  }

  .features-timeline {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
  }

  .timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
  }

  .timeline-icon {
    flex-shrink: 0;
    font-size: 32px;
    background: #00a3e0;
    color: #0f0f0f;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
  }

  .timeline-content h3 {
    font-size: 22px;
    margin: 0 0 10px;
    color: #ffffff;
  }

  .timeline-content p {
    font-size: 16px;
    color: #aaa;
  }

  @media (max-width: 768px) {
    .timeline-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .timeline-icon {
      margin-bottom: 10px;
    }
  }

   .securepro-plans {
    background: #ffffff;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
  }

  .plans-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .plans-header h2 {
    font-size: 36px;
    color: #00a3e0;
  }

  .plans-header p {
    font-size: 18px;
    color: #777;
    margin-top: 10px;
  }

  .plans-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .plan-card {
    background: #f4f4f4;
    border-radius: 10px;
/*    width: 280px;*/
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }

  .plan-card:hover {
    transform: translateY(-10px);
  }

  .plan-header h3 {
    font-size: 24px;
    color: #00a3e0;
    margin: 0;
  }

  .price {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
  }

  .plan-features {
    list-style: none;
    padding: 0;
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
  }

  .plan-features li {
    margin-bottom: 10px;
  }

  .plan-btn {
    background: #00a3e0;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
  }

  .plan-btn:hover {
    background: #00a3e0;
  }

  @media (max-width: 768px) {
    .plans-container {
      flex-direction: column;
      align-items: center;
    }
  }

    .securepro-footer {
    background-color: #1f1f1f;
    color: #fff;
    padding: 50px 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1300px;
    margin: auto;
    gap: 60px;
    margin-bottom: 40px;
  }

  .footer-left {
    max-width: 50%;
  }

  .footer-logo a {
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    color: #00a3e0;
  }

  .footer-logo span {
    color: #00a3e0;
  }

  .footer-left p {
    font-size: 16px;
    color: #ccc;
    margin-top: 15px;
  }

  .footer-social {
    margin-top: 20px;
  }

  .social-icon {
    color: #ccc;
    font-size: 24px;
    margin-right: 15px;
    transition: color 0.3s;
  }

  .social-icon:hover {
    color: #00a3e0;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li a {
    text-decoration: none;
    color: #ccc;
    font-size: 16px;
    margin-bottom: 10px;
    transition: color 0.3s;
  }

  .footer-links li a:hover {
    color: #00a3e0;
  }

  .footer-bottom {
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
  }

  .footer-call-now {
    background: #00a3e0;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: background 0.3s, color 0.3s;
  }

  .footer-call-now:hover {
    background: #00a3e0;
    color: #1f1f1f;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
    .footer-left, .footer-right {
      max-width: 100%;
      text-align: center;
    }
    .footer-call-now {
      margin-top: 20px;
    }
  }

  
  .securepro-contact-section {
    background: #0f0f0f;
    color: #ffffff;
    padding: 70px 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .contact-wrapper {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }

  .contact-heading h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #00a3e0;
  }

  .contact-heading p {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 50px;
  }

  .contact-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }

  .contact-card {
    background: #1a1a1a;
    padding: 30px 20px;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  }

  .contact-card i {
    font-size: 32px;
    color: #00a3e0;
    margin-bottom: 15px;
  }

  .contact-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .contact-card p {
    font-size: 16px;
    color: #bbb;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: auto;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 15px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    background-color: #1f1f1f;
    color: #fff;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #999;
  }

  .contact-form button {
    background: #00a3e0;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .contact-form button:hover {
    background: #00a3e0;
    color: #000;
  }

  @media (max-width: 768px) {
    .contact-grid {
      flex-direction: column;
      align-items: center;
    }
    .banner-text {
    flex: none;
}

.about-content {
    flex: none;
}
    .contact-form {
      width: 100%;
    }
  }