 /* Global Font Styles */
body {
    font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, h5, h6, .call-btn {
     font-family: "Lato", sans-serif;

}
.guardiosafe-navbar {
  display: flex;
  width: 100%;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 999;
  font-family: 'Segoe UI', sans-serif;
}

.navbar-left {
  background: #ffffff;
  width: 50%;
  display: flex;
  align-items: center;
  padding: 0 30px;
  border: 1px solid #cfcfcf;
}

.logo {
  color: #0f0f0f;
  font-size: 26px;
  font-weight: bold;
  text-decoration: none;
}

.logo span {
  color: #00c896;
}

.navbar-right {
  background: #0d1f1e; /* Teal/Dark */
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 30px;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links li a {
  color: #e0f7f4;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #00c896;
}

.call-btn {
  background: #00c896;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    flex-direction: column;
    background: #0d1f1e;
    width: 100%;
    display: none;
    padding: 20px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
.guardiosafe-banner {
  background: radial-gradient(circle at center, #0f1c1a 0%, #080f0e 100%);
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px;
  overflow: hidden;
  text-align: center;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner-content h1 span {
  color: #00c896;
}

.banner-content p {
  font-size: 18px;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.banner-btn {
  background: #00c896;
  color: #0f0f0f;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.banner-btn:hover {
  background: #00a37d;
}

/* Animated floating shapes */
.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 6s infinite ease-in-out;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: #00c896;
  top: 10%;
  left: 15%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: #00c896;
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: #00c896;
  top: 50%;
  left: 60%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 32px;
  }
  .banner-content p {
    font-size: 16px;
  }
  .shape-1, .shape-2, .shape-3 {
    display: none;
  }
}
.guardiosafe-who-we-are {
  background: #0f0f0f;
  color: #fff;
  padding: 80px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  font-family: 'Segoe UI', sans-serif;
}

.who-left {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.who-left h2 {
  font-size: 36px;
  color: #00c896;
  margin-bottom: 20px;
}

.who-left p {
  font-size: 17px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 30px;
}

.learn-more-btn {
  display: inline-block;
  background: #00c896;
  color: #111;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.learn-more-btn:hover {
  background: #00a37d;
}

.who-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  min-width: 280px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #00c896;
  padding: 20px 30px;
  border-radius: 8px;
}

.stat-box h3 {
  font-size: 32px;
  color: #00c896;
  margin-bottom: 5px;
}

.stat-box p {
  color: #ccc;
  font-size: 15px;
}

/* Counter Animation (Optional) */
.counter {
  display: inline-block;
}

@media (max-width: 768px) {
  .guardiosafe-who-we-are {
    flex-direction: column;
  }
  .stat-box {
    text-align: center;
  }
}
.guardiosafe-services {
/*  background: #0c0c0c;*/
    background: radial-gradient(circle at center, #0f1c1a 0%, #080f0e 100%);
  color: #fff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 36px;
  color: #00c896;
  margin-bottom: 10px;
}

.services-header p {
  font-size: 16px;
  color: #ccc;
}

.services-timeline {
  position: relative;
  margin: 0 auto;
  padding-left: 20px;
  border-left: 3px solid #00c896;
  max-width: 900px;
}

.service-item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 30px;
}

.service-item .circle {
  width: 14px;
  height: 14px;
  background: #00c896;
  border-radius: 50%;
  position: absolute;
  left: -9px;
  top: 6px;
}

.service-item .content {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px 25px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.service-item .content h3 {
  font-size: 20px;
  color: #00c896;
  margin-bottom: 8px;
}

.service-item .content p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

.service-item .content:hover {
  background: rgba(0, 200, 150, 0.1);
}

@media (max-width: 768px) {
  .services-timeline {
    padding-left: 10px;
  }

  .service-item {
    padding-left: 20px;
  }
}
.guardiosafe-cta {
  background: linear-gradient(135deg, #00c896 0%, #005f4e 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #e0f7f4;
}

.cta-button {
  display: inline-block;
  background: #0c0c0c;
  color: #00c896;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #ffffff;
  color: #0c0c0c;
}
.guardiosafe-benefits {
  background-color: #0f0f0f;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
  color: #00c896;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.benefit-item {
  text-align: center;
}

.benefit-item i {
  font-size: 40px;
  color: #00c896;
  margin-bottom: 20px;
}

.benefit-item h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 16px;
  color: #cccccc;
}
.guardiosafe-plans {
      background: radial-gradient(circle at center, #0f1c1a 0%, #080f0e 100%);
  color: #fff;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
  color: #00c896;
}

.plans-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.plan-item {
  background-color: #1a1a1a;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.plan-item h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.plan-price {
  font-size: 28px;
  margin-bottom: 20px;
  color: #00c896;
}

.plan-price span {
  font-size: 18px;
  color: #ccc;
}

.plan-item ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
}

.plan-item ul li {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 10px;
}

.plan-item ul li i {
  color: #00c896;
  margin-right: 10px;
}

.btn-cta {
  display: inline-block;
  background-color: #00c896;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-cta:hover {
  background-color: #00a377;
}

.plan-item.recommended {
  background-color: #222;
  border: 2px solid #00c896;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.recommended h3 {
  color: #00c896;
}

.recommended .btn-cta {
  background-color: #00c896;
}
.guardiosafe-footer {
  background-color: #0f0f0f;
  color: #fff;
  padding: 50px 20px;
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-left {
  flex: 1;
}

.footer-logo {
  font-size: 28px;
  color: #00c896;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-left p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  font-size: 20px;
  color: #ccc;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #00c896;
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 15px;
}

.footer-nav li a {
  text-decoration: none;
  color: #ccc;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-nav li a:hover {
  color: #00c896;
}

/* Fixed Call Now Button */
.call-now-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #00c896;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.call-now-btn:hover {
  background-color: #00a377;
}

.call-now-btn i {
  font-size: 18px;
}
.guardiosafe-contact {
  background-color: #1a1a1a;
  color: #fff;
  padding: 50px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #00c896;
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
}

.contact-form {
  background-color: #333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 16px;
  color: #ccc;
  display: block;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #222;
  color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #00c896;
  outline: none;
}

.form-group textarea {
  height: 150px;
}

.submit-btn {
  background-color: #00c896;
  color: #fff;
  padding: 14px 30px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #00a377;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
}

.contact-item i {
  font-size: 24px;
  color: #00c896;
}

.contact-item p {
  color: #ccc;
}
