body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}


@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #000;
    padding: 10px 20px;
    z-index: 999;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

#menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    margin-left: 20px;
    text-transform: uppercase;
    transition: color 0.3s;
}

#menu a:hover {
    color: #ff0600;
}

.btn-call {
    background: #ff0600;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
}

/* ✅ MOBILE STYLES */
@media only screen and (max-width: 768px) {
    #menu {
        display: none; /* Hide the menu on small screens */
    }

    .logo img {
        height: 60px;
    }

    .navbar {
        flex-wrap: nowrap;
    }
}

.hero {
    background: url('../banner.webp') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    color: #000;
}

.content {
    max-width: 500px;
    background: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.content h1 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.call-btn {
    background: #000;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.devices-section {
    padding: 3rem 2rem;
    text-align: center;
}

.devices-header h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.devices-header p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
}

.device-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.device-card {
    background: #f5f7fa;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.device-card img {
    width: 100%;
    height: 259px !important;
    height: auto;
    margin-bottom: 1rem;
}

.device-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.device-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #444;
}

.call-btn {
    background: #000;
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .device-cards {
        grid-template-columns: 1fr;
    }
}

.testimonials-section {
    padding: 4rem 2rem;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card img {
    width: 30px;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
}

.testimonial-card strong {
    font-weight: 600;
    font-size: 1rem;
    color: #000;
}
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.wizard-container {
  max-width: 1000px;
  margin: 40px auto;
  background: white;
  border-radius: 10px;
  padding: 20px;
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 15px;
}

.progress-step {
  flex: 1;
  text-align: center;
  position: relative;
  color: #aaa;
  font-weight: 600;
}

.progress-step.active {
  color: #e74c3c;
}

.progress-step::before {
  content: attr(data-step);
  width: 25px;
  height: 25px;
  background: white;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 5px;
}

.progress-step.active::before {
  border-color: #e74c3c;
  background-color: #e74c3c;
  color: white;
}

.wizard-form .form-step {
  display: none;
}

.wizard-form .form-step.active {
  display: block;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.card {
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  transition: 0.3s;
  background: #fefefe;
  cursor: pointer;
}

.card:hover {
  border-color: #e74c3c;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.card img {
  max-width: 100%;
  height: 100px;
  object-fit: contain;
}

button {
  background: #e74c3c;
  border: none;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  margin: 10px 5px 0 0;
  cursor: pointer;
}

button.prev-btn {
  background: #888;
}
.progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 15px;
  flex-direction: row !important; /* <--- Ensure it's horizontal */
  gap: 10px;
}

.progress-step {
  flex: 1;
  text-align: center;
  color: #999;
  font-weight: 600;
  position: relative;
}

.progress-step.active {
  color: #e74c3c;
}

.progress-step::before {
  content: "";
  display: block;
  margin: 0 auto 5px auto;
  width: 16px;
  height: 16px;
  background-color: #ccc;
  border-radius: 50%;
}

.progress-step.active::before {
  background-color: #e74c3c;
}
.quote-form {
  max-width: 600px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 15px;
  border: 1px solid #ddd;
  background-color: #f5fbfd;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: #007bff;
}

/* Button */
.quote-form button {
  background-color: #007bff;
  color: #fff;
  padding: 14px 30px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s ease;
}

.quote-form button:hover {
  background-color: #005bbd;
}
.card.selected {
    border: 2px solid #007bff;
    background-color: #e6f2ff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
    transform: scale(1.02);
}
.why-choose-us {
  text-align: center;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.why-choose-us h2 {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.why-choose-us h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #e53935;
  margin: 8px auto 0;
  border-radius: 2px;
}
 h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #e53935;
  margin: 8px auto 0;
  border-radius: 2px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.choose-item {
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  transition: transform 0.3s ease;
}

.choose-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.choose-item p {
  font-weight: 600;
  color: #333;
  margin: 0;
  font-size: 1rem;
}

.choose-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.footer {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: #000;
  color: white;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
}