/* Reset some base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  
  color: white;
}
/* ---------- Topbar ---------- */
.topbar {
  background: #1e88e5;
  color: #fff;
  font-size: 0.85rem;
  padding: 6px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
  border-bottom: 1px solid #e0e0e0;
}

.topbar-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  transition: 0.3s;
}

.topbar-links a:hover {
  color: #1e88e5; /* soft blue */
}

/* ---------- Header ---------- */
header {
  background: #fff;
  color: #333;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

/* Logo */
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e88e5;
}

.logo span {
  color: #555;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-menu a {
  color: #555;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  font-weight: 500;
  transition: 0.3s;
}


.get-started {
  background: #1e88e5;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
}

.get-started:hover {
  background: #1565c0;
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #555;
}

/* ---------- Responsive ---------- */
@media(max-width: 768px) {
  .topbar {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    gap: 5px;
  }

  .header-container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    right: -100%;
    background: #fff;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    gap: 15px;
    border-left: 1px solid #e0e0e0;
    box-shadow: -2px 0 12px rgba(0,0,0,0.05);
    transition: right 0.3s ease-in-out;
  }

  .nav-menu.active {
    right: 0;
  }

  .hamburger {
    display: block;
  }

  .nav-menu a {
    padding: 10px 15px;
  }
}


/* ---------- Hero Banner ---------- */
.hero-banner {
  background: #f9f9f9;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
}

.hero-text h1 {
  font-size: 2.8rem;
  color: #1e88e5;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-cta {
  display: inline-block;
  background: #1e88e5;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.hero-cta:hover {
  background: #1565c0;
  transform: translateY(-2px);
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    max-width: 100%;
  }

  .hero-image img {
    max-width: 400px;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-cta {
    padding: 10px 22px;
    font-size: 0.95rem;
  }
}
/* ---------- Key Features Section ---------- */
.key-features {
  background: #ffffff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.key-features h2 {
  font-size: 2.5rem;
  text-align: center;
  color: #1e88e5;
  font-weight: 700;
  margin-bottom: 15px;
}

.key-features .subheading {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.feature-card {
  background: #f1f8ff;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card i {
  font-size: 2.5rem;
  color: #1e88e5;
  margin-bottom: 15px;
  display: inline-block;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #1e3a8a;
}

.feature-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(30, 136, 229, 0.2);
}

.features-note {
  text-align: center;
  margin-top: 50px;
  font-size: 1rem;
  color: #333;
}

.features-note i {
  color: #1e88e5;
  margin-right: 8px;
}

.features-note a {
  color: #1e88e5;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.features-note a:hover {
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .key-features h2 {
    font-size: 2rem;
  }

  .features-grid {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .key-features h2 {
    font-size: 1.7rem;
  }

  .key-features .subheading {
    font-size: 1rem;
  }

  .feature-card {
    padding: 20px 15px;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 0.95rem;
  }
}
/* ---------- Plans / CTA Section ---------- */
.plans-cta {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
}

.plans-bg {
  background: url('../images/logo/cta1.webp') no-repeat center center / cover;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* Parallax effect */
  background-attachment: fixed;
}

.plans-content {
  text-align: center;
  color: #fff;
  max-width: 1200px;
  padding: 80px;
  background: rgba(0, 0, 0, 0.8); /* subtle overlay for readability */
  border-radius: 15px;
}

.plans-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #1e88e5;
}

.plans-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #f1f1f1;
}

.plans-content .cta-button {
  background: #1e88e5;
  color: #fff;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.plans-content .cta-button:hover {
  background: #e63939;
  transform: translateY(-3px);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .plans-bg {
    background-attachment: scroll; /* disable parallax on smaller screens */
  }

  .plans-content h2 {
    font-size: 1.8rem;
  }

  .plans-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .plans-content h2 {
    font-size: 1.5rem;
  }

  .plans-content p {
    font-size: 0.95rem;
  }

  .plans-content {
    padding: 15px;
  }
}
/* ---------- Awards Section ---------- */
.awards-section {
  padding: 80px 20px;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.awards-section h2 {
  font-size: 2.2rem;
  color: #1e88e5;
  margin-bottom: 12px;
}

.awards-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.award-item {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.award-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.award-item i {
  font-size: 2.5rem;
  color: #1e88e5;
  margin-bottom: 15px;
}

.award-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #111;
}

.award-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .awards-section h2 {
    font-size: 1.8rem;
  }

  .award-item {
    padding: 20px 15px;
  }

  .award-item i {
    font-size: 2rem;
  }
}
/* ---------- Threat Protection Section ---------- */
.threat-protection-section {
  padding: 80px 20px;
  background: #f4f7fc;
  font-family: 'Segoe UI', sans-serif;
}

.threat-protection-section .container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.protection-left,
.protection-right {
  flex: 1 1 500px;
}

.protection-left h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 15px;
  line-height: 1.3;
}

.protection-left .highlight {
  color: #ff4747;
}

.protection-left .subtitle {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.protection-right h4 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 12px;
}

.protection-right p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.read-more span {
  font-weight: 600;
  color: #ff4747;
}

.read-more a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.read-more a:hover {
  color: #ff4747;
}

/* Responsive */
@media (max-width: 992px) {
  .threat-protection-section .container {
    flex-direction: column;
  }

  .protection-left,
  .protection-right {
    flex: 1 1 100%;
  }

  .protection-left h2 {
    font-size: 1.8rem;
  }
}
/* ---------- Threat Protection Section ---------- */
.threat-protection-section {
  background: linear-gradient(135deg, #f8fafc, #e9eff5);
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.threat-protection-section .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

/* Left Column */
.protection-left {
  flex: 1 1 400px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.protection-left:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255,71,71,0.15);
}

.protection-left h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 15px;
}

.protection-left .highlight {
  color: #1e88e5;
}

.protection-left .subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Right Column */
.protection-right {
  flex: 1 1 500px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.protection-right:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255,71,71,0.15);
}

.protection-right h4 {
  font-size: 1.3rem;
  color: #1e88e5;
  margin-bottom: 15px;
}

.protection-right p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.protection-right .read-more {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.protection-right .read-more span {
  font-weight: 600;
  color: #111;
}

.protection-right .read-more a {
  text-decoration: none;
  color: #1e88e5;
  font-weight: 600;
  transition: color 0.3s ease;
}

.protection-right .read-more a:hover {
  color: #e63939;
}

.protection-right .read-more i {
  margin-left: 5px;
}

/* Responsive */
@media (max-width: 992px) {
  .threat-protection-section .container {
    flex-direction: column;
    gap: 30px;
  }

  .protection-left, .protection-right {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .protection-left h2 {
    font-size: 1.7rem;
  }

  .protection-right h4 {
    font-size: 1.2rem;
  }

  .protection-left .subtitle,
  .protection-right p {
    font-size: 0.95rem;
  }
}
/* ---------- Impact Section ---------- */
.impact-section {
  background: #f7f9fb;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.impact-section h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 10px;
}

.impact-section .subheading {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.impact-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(255,71,71,0.15);
}

.impact-box i {
  font-size: 2.5rem;
  color: #70b3ee;
  margin-bottom: 15px;
}

.impact-box h3 {
  font-size: 1.8rem;
  color: #111;
  margin-bottom: 10px;
}

.impact-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .impact-section h2 {
    font-size: 1.7rem;
  }

  .impact-section .subheading {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .impact-box h3 {
    font-size: 1.5rem;
  }

  .impact-box p {
    font-size: 0.9rem;
  }
}
/* ---------- Home Protection Section ---------- */
.home-protection {
  position: relative;
  background: url('../images/logo/cta2.webp') no-repeat center center/cover;
  padding: 120px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.home-overlay {
  position: relative;
  background: rgba(0, 0, 0, 0.8);
  padding: 80px 20px;
  border-radius: 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.home-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e88e5; /* Highlight title */
}

.home-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #fff;
}

.home-content .cta-btn {
  display: inline-block;
  background: #1e88e5;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.home-content .cta-btn:hover {
  background: #1e88e5;
  transform: translateY(-2px);
}

/* Parallax Effect */
.home-protection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  background-attachment: fixed;
  z-index: -1;
}

/* Responsive */
@media (max-width: 768px) {
  .home-content h2 {
    font-size: 2rem;
  }

  .home-content p {
    font-size: 1rem;
  }

  .home-content .cta-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }

  .home-overlay {
    padding: 60px 15px;
  }
}

/* ---------- FAQ Section ---------- */
.faq-section {
  background: #f9f9f9;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-section h2 {
  font-size: 2.5rem;
  text-align: center;
  color: #1e88e5;
  margin-bottom: 40px;
  font-weight: 700;
}

.faq-item {
  background: #fff;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.faq-item p {
  font-size: 1rem;
  color: #555;
  display: none;
  line-height: 1.6;
  margin-top: 8px;
}

.faq-item.active p {
  display: block;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 2rem;
  }

  .faq-item h4 {
    font-size: 1.1rem;
  }

  .faq-item p {
    font-size: 0.95rem;
  }
}

/* ---------- Disclaimer ---------- */
.disclaimer {
  background: #f1f1f1;
  color: #555;
  padding: 30px 20px;
  font-size: 0.95rem;
  text-align: center;
}

.disclaimer .container {
  max-width: 900px;
  margin: 0 auto;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #1e88e5;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-about, .footer-links, .footer-contact {
  flex: 1 1 250px;
}

.footer-about h3,
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-about p,
.footer-links ul,
.footer-contact p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #eee;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #000000;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
}

/* ---------- Fixed Call Button ---------- */
.call-us-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #111;
  color: #fff;
  padding: 14px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: 0.3s ease;
  z-index: 1000;
}



/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-about, .footer-links, .footer-contact {
    flex: 1 1 100%;
  }

  .call-us-fixed {
    right: 10px;
    bottom: 10px;
    padding: 12px 18px;
  }
}
.contact-section {
  background: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 2rem;
  color: #1e88e5;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 1rem;
  color: #555;
}

.contact-grid {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.contact-form, .contact-info {
  flex: 1 1 450px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: 0.3s ease;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
  outline: none;
  border-color: #1e88e5;
}

.contact-form form button {
  background: #1e88e5;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form form button:hover {
  background: #1e88e5;
  transform: scale(1.05);
}

.contact-info h4 {
  color: #1e88e5;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #555;
}

.map-container {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    gap: 20px;
  }
}
