/* Reset some base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #002f2f;
  color: white;
}

/* Topbar */
.topbar {
  background-color: #02423b;
  padding: 8px 40px;
  font-size: 14px;
}

.topbar-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 30px;
}

.topbar a {
  color: #b9f7f2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.topbar a:hover {
  color: #00ffc3;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background-color: #02423b;
  border-bottom: 1px solid #014b4b;
  position: relative;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: white;
}

.logo span {
  color: #00ffc3;
}

/* Navigation */
.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #00ffc3;
}

/* CTA Button */
.get-started {
  background-color: #00ffc3;
  color: #003636;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.get-started:hover {
  background-color: #00e6b0;
}

/* Hamburger for Mobile */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 40px;
    background-color: #003636;
    width: 220px;
    padding: 20px;
    border-radius: 8px;
    z-index: 10;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu a {
    margin: 10px 0;
  }
}

/* Global container to limit width */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Banner styles */
.banner {
  background-color: #02423b;
  color: white;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.banner-content {
  flex: 1;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #d4d4d4;
}

.banner-image {
  flex: 1;
  text-align: right;
}

.banner-image img {
  max-width: 70%;
  height: auto;
}


.features-section {
  background-color: #f9fafa;
  padding: 80px 20px 20px;
  text-align: center;
}

.features-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1e1e1e;
}

.features-section .subheading {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.feature-card i {
  font-size: 36px;
  color: #007b5e;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.features-note {
  font-size: 15px;
  color: #444;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.features-note i {
  color: #007b5e;
  font-size: 18px;
}


.careers-section {
  padding: 60px 20px;
  background-color: #f4f7f7;
}

.careers-banner {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 20px;
  background: url('../images/logo/team.png') center/cover no-repeat;
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.careers-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* Dark overlay */
}

.careers-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
  padding: 20px;
}

.careers-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.careers-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 40px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #fff;
  color: #000;
}


.awards-section {
  background-color: #f9fbfc;
  padding: 20px 20px;
  text-align: center;
}

.awards-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #222;
}

.awards-section p {
  color: #555;
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.awards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.award-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 30px 20px;
  max-width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

.award-item:hover {
  transform: translateY(-6px);
}

.award-item i {
  font-size: 36px;
  color: #1cbf73;
  margin-bottom: 15px;
}

.award-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.award-item p {
  font-size: 14px;
  color: #666;
}

.threat-protection-section {
  padding: 10px 20px;
  background: #f9fbfb;
  font-family: 'Segoe UI', sans-serif;
}

.threat-protection-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
}

.protection-left {
  flex: 1;
  min-width: 300px;
}

.protection-left h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.protection-left .highlight {
  background-color: #d1f6df;
  padding: 0 6px;
  border-radius: 4px;
}

.protection-left .subtitle {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

.protection-right {
  flex: 1;
  min-width: 300px;
}

.protection-right h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.protection-right p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.read-more span {
  font-size: 13px;
  color: #888;
  display: block;
  margin-bottom: 4px;
}

.read-more a {
  color: #1cbf73;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.read-more a i {
  margin-left: 5px;
}
.impact-section {
  padding: 10px 20px;
  background: #f9fbfb;
  font-family: 'Segoe UI', sans-serif;
}

.impact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  text-align: center;
}

.impact-box i {
  font-size: 36px;
  color: #1cbf73;
  margin-bottom: 15px;
}

.impact-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.impact-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.family-protection {
  background: url('../images/logo/cta.png') center center / cover no-repeat;
  border-radius: 20px;
  margin: 40px 20px;
  overflow: hidden;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.family-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 60px 20px;
  width: 100%;
  text-align: center;
  color: #fff;
}

.family-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.family-content p {
  font-size: 17px;
  margin-bottom: 25px;
}

.cta-btn {
  background-color: #00cf5d;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #00b84e;
}

.contact-section {
  background-color: #f9f9f9;
  padding: 60px 20px 0px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #222;
}

.contact-header p {
  font-size: 16px;
  color: #555;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
}

.contact-form button {
  background-color: #00c165;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #00a957;
}

.contact-info h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
}

.contact-info p {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
}

/* Disclaimer */
.disclaimer {
  background: #fffbe6;
  padding: 20px;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.disclaimer .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  background-color: #002e2e;
  color: #d1d1d1;
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about h3 {
  color: #00c165;
  margin-bottom: 15px;
  font-size: 20px;
}

.footer-about p {
  line-height: 1.6;
  font-size: 15px;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #d1d1d1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00c165;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 15px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}

.faq-section {
  padding: 10px 20px;
  background-color: #e3e7e9;
  font-family: 'Segoe UI', sans-serif;
}

.faq-section .container {
  max-width: 900px;
  margin: auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #003636;
}

.faq-item {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item h4 {
  margin: 0;
  font-size: 18px;
  color: #003636;
  position: relative;
}

.faq-item p {
  margin-top: 10px;
  font-size: 15px;
  color: #444;
  display: none;
}

.faq-item.active p {
  display: block;
}
.call-us-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #00c165;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: background 0.3s ease;
}

.call-us-fixed:hover {
  background-color: #009e4d;
}
@media (max-width: 480px) {
  .call-us-fixed {
    padding: 10px 16px;
    font-size: 14px;
  }
}
