 /* Global Font Styles */
body {
  font-family: "Work Sans", sans-serif;

}

h1, h2, h3, h4, h5, h6, .call-btn {
     font-family: "Work Sans", sans-serif;
      }

    .main-header {
  background: #000;
  padding: 15px 30px;
  border-bottom: 1px solid #444;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center; /* Center the logo */
}

.logo h1 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
}

.logo span {
  color: #00bfff;
  font-weight: normal;
}

.hero-banner {
  position: relative;
  background: url('../images/logo/banner.png') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 30px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-content h2 {
  font-size: 48px;
  font-family: 'Canaro', sans-serif;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  font-family: Arial, sans-serif;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  background: #00bfff;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-family: 'Canaro', sans-serif;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #009acd;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-section {
  background: #f9f9ff;
  padding: 80px 30px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.section-title {
  font-size: 36px;
  font-family: 'Canaro', sans-serif;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Canaro', sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
}

.service-card p {
  font-size: 14px;
  color: #666;
}
.service-icon {
  font-size: 48px;
  color: #007bff;
  margin-bottom: 20px;
}

.service-card img {
  display: none; /* Hide img if any remains */
}

.comparison-section {
  background: #fff;
  padding: 80px 30px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.comparison-section .section-title {
  font-size: 36px;
  font-family: 'Canaro', sans-serif;
  margin-bottom: 10px;
}

.comparison-section .section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-box {
  background: #f9f9ff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}

.comparison-box:hover {
  transform: translateY(-6px);
}

.comparison-box h3 {
  font-family: 'Canaro', sans-serif;
  font-size: 22px;
  margin-bottom: 20px;
  color: #000;
}

.comparison-box ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  color: #444;
  text-align: left;
}

.comparison-box ul li {
  margin-bottom: 12px;
}


.features-section {
  background: #f0f8ff;
  padding: 80px 30px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.features-section .section-title {
  font-family: 'Canaro', sans-serif;
  font-size: 36px;
  margin-bottom: 10px;
}

.features-section .section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.feature-box:hover {
  transform: translateY(-6px);
}

.feature-box i {
  font-size: 32px;
  color: #00bfff;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-family: 'Canaro', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
}

.feature-box p {
  font-size: 14px;
  color: #555;
}


.cta-section {
  background: #fff;
  padding: 80px 30px;
  font-family: Arial, sans-serif;
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  font-family: 'Canaro', sans-serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: #000;
}

.cta-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 25px;
}

.cta-btn {
  background-color: #00bfff;
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  font-family: 'Canaro', sans-serif;
  border-radius: 6px;
  transition: background 0.3s;
}

.cta-btn:hover {
  background-color: #009acd;
}

.cta-image {
  flex: 1;
  text-align: center;
}

.cta-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column-reverse;
    text-align: center;
  }
.compare-box {
    flex: auto!important;

}
  .cta-text h2 {
    font-size: 26px;
  }
}

.advantages-section {
  background: #f8faff;
  padding: 80px 30px;
  font-family: Arial, sans-serif;
}

.advantages-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.advantages-image {
  flex: 1;
}

.advantages-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.advantages-content {
  flex: 1;
}

.advantages-content h2 {
  font-size: 32px;
  font-family: 'Canaro', sans-serif;
  margin-bottom: 25px;
  color: #000;
}

.advantages-list {
  list-style: none;
  padding: 0;
}

.advantages-list li {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.advantages-list i {
  color: #00bfff;
  margin-right: 10px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .advantages-container {
    flex-direction: column;
    text-align: center;
  }

  .advantages-content h2 {
    font-size: 26px;
  }

  .advantages-list li {
    justify-content: center;
  }
}

.call-now-btn {
  display: inline-block;
  margin-top: 30px;
  background-color: #00bfff;
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  font-family: 'Canaro', sans-serif;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.call-now-btn:hover {
  background-color: #009acd;
}

.compare-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px;
  background-color: #e6faff;
  justify-content: center;
}

.compare-box {
  flex: 1 1 45%;
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.compare-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.compare-box h3 {
  font-size: 22px;
  color: #003366;
  font-family: 'Canaro', sans-serif;
  margin-bottom: 10px;
}

.compare-box p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.site-footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 25px 15px;
  font-family: Arial, sans-serif;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 13px;
  color: #aaa;
  margin: 0;
}

/* Fixed Call Now Button */
.call-now-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #e60023;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
  z-index: 999;
}

.call-now-btn:hover {
  background-color: #c4001e;
}
.disclaimer-section {
  background-color: #f2f2f2;
  padding: 50px 30px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  border-top: 1px solid #ddd;
}

.disclaimer-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.disclaimer-section h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}
