        /* General Body Styles */
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            background-color: #e9ecef; /* Very light background for the page */
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            color: #343a40; /* Default dark text color */
        }
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ---------- Header ---------- */
.header {
  background: #111;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo h1 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
}

.logo h1 span {
  color: #ff4747; /* Highlighted part */
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 500;
  color: #f1f1f1;
  padding: 8px 12px;
  transition: 0.3s ease;
  border-radius: 5px;
}

.nav-links li a:hover {
  background: #ff4747;
  color: #fff;
}

/* Call Now Button */
.nav-links .call-now {
  background: #ff4747;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 20px;
  transition: 0.3s ease;
}

.nav-links .call-now:hover {
  background: #e63939;
  transform: translateY(-2px);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

@media (max-width: 768px) {
  nav {
    position: relative;
  }

  .nav-links {
    position: fixed; /* use fixed to prevent pushing content */
    top: 0;
    right: -100%; /* hidden offscreen */
    height: 100vh; /* full height */
    width: 220px;
    background: #111;
    flex-direction: column;
    padding: 60px 20px 20px 20px;
    list-style: none;
    transition: right 0.3s ease-in-out;
    overflow-y: auto; /* scroll if content exceeds height */
    z-index: 999;
    box-shadow: -2px 0 12px rgba(0,0,0,0.5);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .menu-toggle {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
  }

  .menu-toggle span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
  }

  body.menu-open {
    overflow-x: hidden; /* prevent horizontal scroll when menu is open */
  }
}
/* ---------- Hero Section ---------- */
.ss-hero {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 40%, #ff4747 100%);
  overflow: hidden;
}

/* Decorative glowing circles */
.ss-hero::before,
.ss-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.ss-hero::before {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -100px;
  background: #ff4747;
  filter: blur(90px);
}

.ss-hero::after {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -120px;
  background: #ff7979;
  filter: blur(110px);
}

.ss-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.ss-hero p {
  max-width: 720px;
  margin: 0 auto 35px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f1f1f1;
}

/* Buttons */
.ss-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 35px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.ss-btn-primary {
  background: #fff;
  color: #ff4747;
}

.ss-btn-primary:hover {
  background: #111;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .ss-hero {
    padding: 80px 15px;
  }

  .ss-hero h1 {
    font-size: 2rem;
  }

  .ss-hero p {
    font-size: 1rem;
  }
}
/* ---------- Features Section ---------- */
.ss-features {
  padding: 100px 20px;
  background: #0f0f0f;
  color: #fff;
  text-align: center;
}

.ss-features h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ff4747;
}

.ss-features p {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 50px;
}

.ss-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.ss-feature {
  background: #1a1a1a;
  padding: 30px 20px;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.ss-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(255, 71, 71, 0.4);
}

.ss-feature h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #ff7a7a;
}

.ss-feature p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .ss-features-grid {
    gap: 20px;
  }

  .ss-feature {
    padding: 25px 15px;
  }

  .ss-features h2 {
    font-size: 2rem;
  }

  .ss-features p {
    font-size: 1rem;
  }
}

/* Step Icon */
.ss-step-icon {
  font-size: 2.5rem;
  color: #ff4747;
  margin-bottom: 15px;
  display: inline-block;
}

/* Hover animation for icon */
.ss-how-steps div:hover .ss-step-icon {
  transform: scale(1.2);
  transition: transform 0.3s;
}

/* Existing How It Works styles remain same */
.ss-how {
  padding: 100px 20px;
  background: #111;
  color: #fff;
  text-align: center;
}

.ss-how h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ff4747;
}

.ss-how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto 0 auto;
}

.ss-how-steps div {
  background: #1c1c1c;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.ss-how-steps div:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(255, 71, 71, 0.4);
}

.ss-how-steps h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #ff7a7a;
}

.ss-how-steps p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 480px) {
  .ss-how-steps {
    grid-template-columns: 1fr; /* single column on small screens */
    gap: 15px;
  }

  .ss-how-steps div {
    padding: 20px 12px;
  }

  .ss-how h2 {
    font-size: 1.8rem;
  }

  .ss-how-steps h3 {
    font-size: 1.3rem;
  }

  .ss-how-steps p {
    font-size: 0.95rem;
  }
}
/* Plans Section */
.ss-plans-section {
  padding: 100px 20px;
  background: #0f0f0f;
  color: #fff;
  text-align: center;
  margin-top: 50px;
}

.ss-plans-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff4747;
  margin-bottom: 20px;
}

.ss-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 50px auto 0 auto;
}

.ss-plan {
  background: #1c1c1c;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  text-align: center;
}

.ss-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(255, 71, 71, 0.5);
}

.ss-plan h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #ff7a7a;
}

.ss-plan .price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ff4747;
}

.ss-plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.ss-plan ul li {
  padding: 8px 0;
  border-top: 1px dashed #444;
  font-size: 1rem;
  color: #ccc;
}

.ss-plan ul li:first-child {
  border-top: 0;
}

.ss-plan-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  border: 2px solid #ff4747;
  color: #ff4747;
  transition: all 0.3s;
}

.ss-plan-btn:hover,
.ss-plan-btn-primary {
  background: #ff4747;
  color: #fff;
  border-color: #ff4747;
}

/* Recommended Badge */
.ss-plan.recommended::before {
  content: "Recommended";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff4747;
  color: #fff;
  padding: 5px 12px;
  font-size: 0.85rem;
  border-radius: 20px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .ss-plans-grid {
    gap: 20px;
  }
  .ss-plan h3 {
    font-size: 1.5rem;
  }
  .ss-plan .price {
    font-size: 1.3rem;
  }
}
/* Testimonials Section */
.ss-testimonials-section {
  padding: 100px 20px;
  background: #fff; /* changed to white */
  color: #111;
  text-align: center;
}

.ss-testimonials-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff4747;
  margin-bottom: 40px;
}

.ss-testimonials-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.ss-testimonials-list blockquote {
  background: #f9f9f9;
  border-left: 5px solid #ff4747;
  padding: 25px 20px;
  border-radius: 12px;
  font-style: italic;
  color: #333;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.ss-testimonials-list blockquote::before {
  content: "“";
  font-size: 3rem;
  color: #ff4747;
  position: absolute;
  top: -10px;
  left: 15px;
}

.ss-testimonials-list blockquote:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255,71,71,0.2);
}

.ss-testimonials-list blockquote::after {
  content: "”";
  font-size: 3rem;
  color: #ff4747;
  position: absolute;
  bottom: -15px;
  right: 15px;
}

@media(max-width: 768px){
  .ss-testimonials-list {
    grid-template-columns: 1fr;
  }
}
/* ---------- Comparison Section ---------- */
.ss-compare-section {
  padding: 80px 20px;
  background: #111; /* Dark background */
  color: #fff;
  text-align: center;
}

.ss-compare-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #ff4747;
}

.ss-compare-wrap {
  overflow-x: auto;
  margin: 0 auto;
  max-width: 1000px;
}

.ss-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.ss-compare-table th, .ss-compare-table td {
  border: 1px solid #444;
  padding: 12px 15px;
  text-align: center;
}

.ss-compare-table th {
  background: #222;
  color: #ff4747;
  font-weight: 700;
}

.ss-compare-table td {
  background: #1a1a1a;
  color: #fff;
  font-weight: 500;
}

/* Alternate row colors for better readability */
.ss-compare-table tbody tr:nth-child(even) td {
  background: #2a2a2a;
}

/* ---------- System Requirements Section ---------- */
.ss-req-section {
  padding: 80px 20px;
  background: #fff; /* Light background */
  color: #111;
  text-align: center;
}

.ss-req-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #ff4747;
}

.ss-req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.ss-req-grid div {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.ss-req-grid h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ff4747;
}

.ss-req-grid p {
  font-size: 0.95rem;
  color: #555;
}

/* ---------- FAQ Section ---------- */
.ss-faq-section {
  padding: 80px 20px;
  background: #111; /* Dark background */
  color: #fff;
  text-align: center;
}

.ss-faq-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #ff4747;
}

.ss-faq-item {
  max-width: 800px;
  margin: 15px auto;
  background: #1a1a1a;
  padding: 20px 25px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.ss-faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255,71,71,0.2);
}

.ss-faq-question {
  font-weight: 700;
  font-size: 1.1rem;
  color: #ff4747;
}

.ss-faq-answer {
  margin-top: 12px;
  display: none;
  font-size: 0.95rem;
  color: #eee;
}

.ss-faq-item.active .ss-faq-answer {
  display: block;
}
/* ---------- Footer Styling ---------- */
.ss-footer {
  background-color: #121212; /* Dark background */
  color: #e0e0e0;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-bottom: 100px;
}

.ss-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Footer text */
.ss-footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ccc;
}

/* Footer links */
.ss-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ss-footer-link {
  color: #ff4747;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.ss-footer-link:hover {
  color: #ff5252;
  text-decoration: underline;
}

/* Disclaimer */
.ss-footer-links p {
  font-size: 0.85rem;
  color: #aaa;
  line-height: 1.5;
  margin-top: 15px;
}

.ss-footer-links p a {
  color: #1e88e5;
  text-decoration: underline;
  transition: 0.3s;
}

.ss-footer-links p a:hover {
  color: #ff5252;
}

/* Responsive */
@media (max-width: 768px) {
  .ss-footer-container {
    text-align: center;
  }
  .ss-footer-links {
    align-items: center;
  }
  .ss-footer-links p {
    margin-top: 10px;
  }
}
/* About Us Section */
.about-section {
  background-color: #f7f9fc;
  padding: 80px 20px;
  font-family: 'Lato', sans-serif;
  color: #333;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.about-section h2 {
  font-size: 2.5rem;
  color: #ff4747; /* accent color */

  margin-bottom: 20px;
  text-align: center;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.btn-about {
  display: inline-block;
  background-color: #ff4747;
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  text-align: center;
}

.btn-about:hover {
  background-color: #1565c0;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section h2 {
    font-size: 2rem;
  }
  
  .about-section p {
    font-size: 0.95rem;
  }
  
  .btn-about {
    width: 100%;
    padding: 12px;
  }
}
/* ---------- Contact Section ---------- */
.contact-section {
  background-color: #f9fafc;
  padding: 80px 20px;
  font-family: 'Lato', sans-serif;
  color: #333;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff4747;
  margin-bottom: 10px;
}

.contact-section .lead {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.contact-wrapper {
  display: flex;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  resize: none;
  transition: 0.3s;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: #1e88e5;
  outline: none;
}

.submit-btn {
  padding: 12px 25px;
  background-color: #ff4747;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background-color: #1565c0;
}

.contact-info {
  flex: 1 1 400px;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info h3 {
  margin-bottom: 20px;
  color: #ff4747;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info .note {
  font-size: 0.9rem;
  color: #777;
}

/* ---------- Google Map ---------- */
.map-container {
  width: 100%;
  height: 400px;
  margin-top: 50px;
  border-radius: 12px;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }
}
