 /* Global Font Styles */
body {
  font-family: "Poppins", system-ui;

}

h1, h2, h3, h4, h5, h6, .call-btn {
  font-family: "Poppins", system-ui;


}
.main-header {
  background-color: #f8f9fa; /* Light gray/white background */
  border-bottom: 1px solid #ddd;
  font-family: 'Segoe UI', sans-serif;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: #111; /* Dark text */
  letter-spacing: 1px;
}

.main-nav .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.main-nav .nav-link:hover {
  color: #28a745; /* Green accent */
}

.call-now-btn .btn {
  background-color: #083b8d;
  color: #fff;
  border-radius: 30px;
  transition: background 0.3s ease;
}
/*
.call-now-btn .btn:hover {
  background-color: #218838;
}
*/
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
}

/**/
.hero-banner {
  position: relative;
  background: linear-gradient(135deg, #fef9f5, #e5f9f7); /* pastel peach & aqua */
  padding: 100px 20px;
  border-radius: 0 0 60px 60px;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  z-index: 1;
}

.hero-banner::before,
.hero-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
}

.hero-banner::before {
  width: 180px;
  height: 180px;
  background-color: #c3eaf3;
  top: 50px;
  left: 20px;
}

.hero-banner::after {
  width: 120px;
  height: 120px;
  background-color: #ffebc8;
  bottom: 40px;
  right: 30px;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-content h1 {
  font-size: 40px;
  font-weight: 700;
  color: #023f49;
  margin-bottom: 20px;
}

.banner-content #user-location2 {
  color: #0e948c;
}

.tagline {
  font-size: 18px;
  color: #333;
  margin-bottom: 12px;
}

.call-line a {
  font-size: 18px;
  font-weight: 600;
  color: #00695c;
  text-decoration: underline;
}

.cta-button {
  background-color: #fff3cd;
  color: #444;
  font-weight: 600;
  padding: 14px 24px;
  font-size: 17px;
  border-radius: 40px;
  box-shadow: 0 4px 0 #e0c46c;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  transition: all 0.2s ease;
}

.cta-button i {
  font-size: 18px;
  color: #ff9800;
}

.cta-button:hover {
  background-color: #fff8e1;
  box-shadow: 0 2px 0 #caa944;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  z-index: 2;
}

.feature-item {
  background: #ffffffdd;
  padding: 25px 15px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.icon-wrap {
  background-color: #e0f7fa;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap i {
  color: #00796b;
  font-size: 24px;
}

.feature-item p {
  margin: 0;
  color: #034b52;
  font-size: 16px;
  font-weight: 500;
}

.wave-bg {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: url('images/wave.svg') no-repeat center;
  background-size: cover;
  z-index: 0;
}


.journey-section {
  background-color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.journey-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.journey-subtitle {
  font-size: 18px;
  color: #777;
  margin-bottom: 50px;
}

.journey-timeline {
  position: relative;
  max-width: 800px;
  margin: auto;
  padding-left: 20px;
  border-left: 4px solid #e0e0e0;
}

.journey-step {
  position: relative;
  margin-bottom: 60px;
  text-align: left;
}

.circle {
  width: 50px;
  height: 50px;
  background-color: #e3f2fd;
  color: #0d47a1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  position: absolute;
  left: -27px;
  top: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.journey-step .content {
  margin-left: 40px;
  background: #f9f9f9;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.journey-step h4 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: bold;
  color: #222;
}

.journey-step p {
  font-size: 15px;
  color: #555;
}

.journey-cta {
  margin-top: 40px;
}

.journey-button {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  background-color: #0d47a1;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.journey-button i {
  margin-left: 8px;
}

.journey-button:hover {
  background-color: #083b8d;
}

.cyber-threats {
  padding: 80px 20px;
/*  background-color: #f9f9f9;*/
    background: linear-gradient(135deg, #fef9f5, #e5f9f7);
  text-align: center;
}

.cyber-threats .intro {
  margin-bottom: 50px;
}

.cyber-threats h2 {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.cyber-threats p {
  font-size: 18px;
  color: #777;
  max-width: 700px;
  margin: 0 auto;
}

.threats-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.threat-circle {
  width: 140px;
  height: 140px;
  background-color: #e3f2fd;
  color: #0d47a1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.threat-circle:hover {
  transform: scale(1.1);
}

.threat-circle .circle-text {
  font-size: 14px;
  color: #333;
}
.cta-section {
  background-color: #ffffff; /* White background */
  padding: 80px 20px;
  text-align: center;
  color: #333; /* Dark text color for contrast */
  border-radius: 10px;
/*  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
  margin-top: 50px;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #111; /* Dark color for the heading */
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #777; /* Lighter color for the paragraph */
}

.cta-button {
  display: inline-block;
  padding: 16px 32px;
  background-color: #0072ff; /* Blue button */
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button i {
  margin-left: 10px;
}

.cta-button:hover {
  background-color: #0056b3; /* Darker blue on hover */
  color: #fff;
}

.cta-button:active {
  transform: scale(0.98);
}

.antivirus-protection {
/*  background: #f7faff;*/
    background: linear-gradient(135deg, #fef9f5, #e5f9f7);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.antivirus-protection .container {
  max-width: 1200px;
  margin: 0 auto;
}

.title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.title p {
  font-size: 18px;
  color: #7f8c8d;
  margin-bottom: 40px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

.feature .icon {
  background: linear-gradient(135deg, #083b8d, #f0f9f6);
  color: #fff;
  padding: 20px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 30px;
}

.feature h3 {
  font-size: 22px;
  font-weight: 600;
  color: #34495e;
  margin-bottom: 10px;
}

.feature p {
  font-size: 16px;
  color: #7f8c8d;
}

.cta {
  margin-top: 50px;
}

.cta-button {
  background-color: #083b8d;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

.cta-button:active {
  transform: scale(0.98);
}
.footer {
  background: #000000; /* Black background */
  color: #fff; /* White text */
  padding: 30px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align items at the top to avoid spacing issues */
  flex-wrap: wrap; /* Allow wrapping for responsiveness */
}

.footer-left {
  font-size: 14px;
  line-height: 1.6;
  flex-basis: 100%; /* Allow the disclaimer to take up full width */
  margin-bottom: 20px; /* Add some space below disclaimer text */
}

.footer-left .disclaimer-text {
  word-wrap: break-word; /* Ensure long words break to avoid overflow */
}

.footer-right ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 30px;
}

.footer-right ul li {
  font-size: 16px;
}

.footer-right ul li a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-right ul li a:hover {
  color: #0f958d; /* Gold accent color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column; /* Stack footer content vertically */
    align-items: center;
    text-align: center;
  }

  .footer-right ul {
    display: flex;
    flex-direction: column; /* Stack the links vertically */
    margin-top: 20px;
  }

  .footer-right ul li {
    margin-bottom: 10px; /* Add spacing between links */
  }

  .footer-left {
    font-size: 12px; /* Reduce font size on smaller screens */
    text-align: center;
  }
  .call-now-btn{
    display: none;
  }
}
