body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #000000;
  }
  
  .installation-page {
    padding: 40px 20px;
  }
  
  .container {
    max-width: 900px;
    margin: 0 auto;
  }
  
   h2, h3, h4 {
    color: #007bff;
  }
  .yoyo{
    font-size: 1.2em;
  }
  
  h4{
    font-size: 1.8em
  }
  h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
  }
  
  h2 {
    margin-bottom: 30px;
    align-items: center;
  }
  
  h3 {
    margin-top: 30px;
    font-size: 1.8em
  }
  
  ol, ul {
    padding-left: 20px;
  }
  
  li {
    margin-bottom: 10px;
    font-weight: 
  bold  ;
  font-size: 20px;
  }
  
  .step-section {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
  }
  
  .code {
    background-color: #e0e0e0;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: monospace;
  }
  
  /* Image Styling */
  .image-step {
    margin: 10px 0;
    text-align: center;
  }
  
  .image-step img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    h1 {
      font-size: 2em;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 1.8em;
    }
  }

.sem{
    font-size: 3em;
    font-weight: bolder;
    color:  #A4FF00;
}

p{
    font-weight: bolder;
    font-size: 20px;
    color: #ffffff;
}

.bapu{
    color: rgb(0, 0, 0);
}

/* =====================
   Fixed White Navbar Styles
   ===================== */
   .fixed-white-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: white; /* Permanently white */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for premium look */
    box-sizing: border-box;
    transition: padding 0.3s ease-in-out; /* Keep transition for padding */
}

/* ========== LOGO ========== */
.navbar-logo img {
    height: 70px;
    margin-left: 20px;
    max-width: 100%;
    transition: transform 0.3s ease-in-out;
}

/* ========== NAVIGATION LINKS ========== */
.navbar-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
    align-items: center;
    margin-right: 25%;
    transition: opacity 0.3s ease-in-out;
    margin-top: 14px;
}

/* Navigation Items */
.navbar-links li {
    margin-left: 25px;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

/* Link Styling */
.navbar-links a {
    text-decoration: none;
    color: #2019ea; /* White links */
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease-in-out, border-bottom 0.3s ease-in-out;
    margin-top: 50px;
}

/* Hover Effects */
.navbar-links a:hover,
.navbar-links a.active {
    color: #0047AB; /* Hover color */
    border-bottom: 2px solid #0047AB;
}

/* NEW: Animated Hover Effect */
.navbar-links li:hover {
    transform: translateY(-3px);
}

/* Hover Effect - Add Gradient */
.navbar-links a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #011c40, #78a7d1);
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}

.navbar-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* ========== RESPONSIVE TOGGLE NAVBAR ========== */
.navbar-menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #0047AB; /* Toggle color */
    transition: color 0.3s ease-in-out;
}

/* Mobile View */
@media screen and (max-width: 1024px) {
    .navbar-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        width: 60%;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        padding: 20px;
        text-align: center;
        border-radius: 0 0 10px 10px;
    }

    .navbar-links.show {
        display: flex;
    }

    .navbar-links li {
        margin: 15px 0;
    }

    .navbar-links a {
        color: #0047AB;
        font-size: 18px;
    }

    .navbar-menu-toggle {
        display: block;
    }

    /* Adjust logo size */
    .navbar-logo img {
        height: 65px;
    }
}

@media screen and (max-width: 600px) {
    .navbar-links {
        width: 80%;
    }

    .navbar-links a {
        font-size: 16px;
    }

    .navbar-logo img {
        height: 55px;
    }
}

/* Trial Offer Button */
.trial-offer {
    background: linear-gradient(to right, #2a52cb, #ff000d);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    animation: blink 0.4s alternate infinite;
    margin-top: 10px;
}

.trial-offer:hover {
    cursor: pointer;
}

@keyframes blink {
    from { opacity: 0.7; }
    to { opacity: 1; transform: scale(1.05); }
}

 


.contact-form-section {
    background-color:#0c0c0c; /* Light background */
    padding: 10px 20px;
    text-align: center;
    margin-top: 20px ;
}

.contact-form-container {
    max-width: 600px;
    margin: 10px auto;
    background-color:#def1ff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form-header h2 {
    font-size: 2em;
    color: #0047AB; /* Your theme color */
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
}

textarea {
    resize: vertical; /* Allow vertical resizing */
}

.submit-button {
    background-color: #0047AB; /* Your theme color */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #003380; /* Darker shade on hover */
}

.form-message {
    margin-top: 20px;
    color: green; /* Success message color */
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 20px;
    }
}

/* Ticket Intro Section */
#ticket-intro {
    max-width: 90%;
    margin: 18px auto;
    padding: 40px 20px;
    background: var(--primary-color,#e5e5e5); /* Change to match your site's primary color */
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Inner Content Box */
.intro-box {
    max-width: 80%;
    padding: 30px;
    background: var(--secondary-color, #02150c); /* Change to match your site's secondary color */
    color: white;
    font-size: 16px;
    line-height: 1.6;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    #ticket-intro {
        max-width: 95%;
        padding: 30px 15px;
    }
    
    .intro-box {
        max-width: 100%;
        font-size: 14px;
        padding: 20px;
    }
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





/* Newsletter Section */
#newsletter {
    max-width: 60%;
    margin: 69px auto;
    padding: 120px 20px;
    background: white;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 352px;

}

/* Inner Content Box */
.newsletter-box {
    max-width: 80%;
    margin: auto;
    margin-top: -70px;

}

.newsletter-box h2 {
    font-size: 2.8em;
    font-weight: bold;
}

.newsletter-box p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    font-weight: bolder;
}

/* Input & Button Container */
.input-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 500px;
    margin: auto;
}

.input-container input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: 0.3s;
}

.input-container input:focus {
    border-color: #008037; /* Primary Color */
    box-shadow: 0 0 5px rgba(0, 128, 55, 0.5);
}

/* Subscribe Button */
.input-container button {
    background: #008037; /* Match Primary Color */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.input-container button:hover {
    background: #005a24; /* Darker Shade */
}

/* Responsive Design */
@media (max-width: 768px) {
    #newsletter {
        max-width: 95%;
        padding: 30px 15px;
    }
    
    .newsletter-box {
        max-width: 100%;
    }

    .input-container {
        flex-direction: column;
        width: 100%;
    }

    .input-container input {
        width: 90%;
    }

    .input-container button {
        width: 90%;
    }
}

.setup-section h1{
    color: white;
}


/* Subscribe Section */
#subscribe-section {
  width: 100%;
  max-width: 800px;
  margin: 60px auto;
  padding: 60px 20px;
  background: white;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Wrapper */
.subscribe-wrapper {
  max-width: 700px;
  margin: auto;
}

/* Title & Text */
.subscribe-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.subscribe-text {
  font-size: 1rem;
  color: #555;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Form Container */
.subscribe-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Input */
.subscribe-form input {
  flex: 1 1 250px;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  transition: 0.3s;
  min-width: 200px;
}

.subscribe-form input:focus {
  border-color: #008037;
  box-shadow: 0 0 5px rgba(0, 128, 55, 0.5);
}

/* Button */
.subscribe-form button {
  background: #008037;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  flex-shrink: 0;
}

.subscribe-form button:hover {
  background: #005a24;
}

/* Fully Responsive */
@media (max-width: 600px) {
  .subscribe-title {
    font-size: 1.8em;
  }

  .subscribe-text {
    font-size: 0.95rem;
  }

  .subscribe-form {
    flex-direction: column;
    gap: 12px;
  }

  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
  }
}


.faq-answer a{
  color: rgb(81, 255, 0);
}

.huru{
  text-align: center;
  align-items: center;
  color:  white;
  font-size: 1.5em;
}





/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
}

.social-icons a {
    color: #000;
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #ff9800;
}

/* Footer Section */
.footer-section {
    background-color: #000;
    padding: 60px 20px 0;
    position: relative;
  }
  
  .footer-box {
    border: 2px solid #A4FF00;
    border-radius: 25px;
    padding: 50px 30px;
    max-width: 1300px;
    margin: 0 auto 60px;
    text-align: center;
  }
  
  .footer-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
  }
  
  .footer-box h2 span {
    color: #A4FF00;
  }
  
  .footer-box p {
    color: #ffffff;
    font-size: 1.5em;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .whatsapp-btn img {
    width: 70px;
    height: 70px;
    background-color: #A4FF00;
    padding: 10px;
    border-radius: 10px;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    padding: 20px 20px 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
  }
  
  .footer-links {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
  }
  
  .footer-links a:hover {
    color: #A4FF00;
  }
  
  .rights {
    color: #A4FF00;
    font-size: 15px;
    margin-top: 10px;
  }
  
  /* Scroll-to-top Button */
  .scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #000;
    border: 2px solid #A4FF00;
    color: #A4FF00;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 100;
    transition: 0.3s;
  }
  
  .scroll-to-top:hover {
    background: #A4FF00;
    color: #000;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .footer-box {
      padding: 40px 20px;
    }
  
    .footer-box h2 {
      font-size: 28px;
    }
  
    .footer-box p {
      font-size: 1.2em;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 20px;
    }
  
    .footer-links {
      justify-content: center;
    }
  
    .rights {
      margin: 0;
    }
  }
  
  @media (max-width: 576px) {
    .footer-box h2 {
      font-size: 22px;
    }
  
    .footer-box p {
      font-size: 1em;
    }
  
    .whatsapp-btn img {
      width: 60px;
      height: 60px;
    }
  
    .footer-links a {
      font-size: 14px;
    }
  
    .scroll-to-top {
      font-size: 16px;
      padding: 6px 10px;
    }
  }
  

.yoyo{
    text-align: center;
    font-size: 2em;
}




.whatsapp-float {
    position: fixed;
    bottom: 23px; /* Adjust as needed */
    right: 20px;
    margin-right: 200vh;;
    background-color: #25d366;
    color: white;
    font-size: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 35px;
}
