 /* Custom Styles */
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f7f7f7;
            margin: 0;
            padding: 0;
        }

        h2{
            color: #FF7F00;
        }

        .hero-section {
            background: linear-gradient(135deg, #FF7F00, #ff5500);
            color: white;
            padding: 80px 20px;
            text-align: center;
            font-size: 20px;
        }
        
        .hero-section h1 {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .hero-section p {
            font-size: 16px;
            margin-bottom: 25px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        /* Default: All buttons in one line (Desktop view) */
        .cta-btn {
            padding: 10px 15px;
            background: white;
            color: #FF7F00;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
        
        /* Responsive: Show two buttons per row on small devices */
        @media (max-width: 767px) {
            .cta-btn {
                flex: 1 1 48%; /* Ensures two buttons per row */
                text-align: center;
                font-size: 14px;
                padding: 8px 12px;
            }
        }


        .cta-btn {
            background-color: #FF7F00;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 20px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .cta-btn:hover {
            background-color: #e67e00;
            text-decoration: none;
            
        }

       
        /* Pricing Card Styles */
        .pricing-card {
            background: #FF7F00; /* Dark background for contrast */
            color: white;
            text-align: center;
            padding: 30px 20px; /* Reduced padding */
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            transition: 0.2s ease-in-out;
        }

        /* Subtle Hover Effect */
        .pricing-card:hover {
            transform: scale(1.02); /* Slight increase */
        }

        /* Price Styling */
        .price {
            font-size: 20px;
            font-weight: bold;
            margin: 10px 0;
        }

        /* Old Price Styling */
        .old-price {
            text-decoration: line-through;
            color: rgba(255, 255, 255, 0.6);
            font-size: 18px;
            margin-right: 10px;
        }

        /* New Price Styling */
        .new-price {
            font-size: 24px;
            font-weight: 900;
            color: #ffcc00;
        }

        /* Call-to-Action Button */
        .cta-btn {
             background-color: white;
            color: #FF7F00;
            padding: 10px 18px;
            font-size: 16px;
            font-weight: bold;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s ease-in-out;
        }

        .cta-btn:hover {
             background-color: #e67000;
             color: white;
            text-decoration: none;
        }

        /* Responsive Layout */
        @media (max-width: 767px) {
            .pricing-card {
                padding: 25px 15px;
                margin-bottom: 20px; /* Adds space between stacked items */
            }
        }




        .feature-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin: 20px 0;
            transition: box-shadow 0.3s ease;
        }

        .feature-card:hover {
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        }

        .feature-icon {
            font-size: 50px;
            color: #FF7F00;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .feature-card p {
            font-size: 16px;
            color: #555;
        }


        .section-padding {
            padding: 60px 0;
        }


        /* Custom Styles for Header Images */
        .header-images {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        /* Ensures two images per row on larger screens */
        .image-container {
            width: calc(50% - 10px); /* Two images per row with spacing */
            display: flex;
            justify-content: center;
        }

        /* Makes sure images scale properly */
        .image-container img {
            width: 100%;
            max-width: 100%;
            border-radius: 8px;
            margin-top: 30px;
            border: 2px solid #FF7F00; 
        }

        /* For small devices, stack images vertically */
        @media (max-width: 767px) {
            .image-container {
                width: 100%; /* Full width on small screens */
            }
        }


    .section-title {
        font-size: 36px;
        font-weight: 700;
        color: #FF7F00;
        margin-bottom: 20px;
    }

    .section-description {
        font-size: 18px;
        color: #333;
        margin-bottom: 50px;
        font-weight: 400;
    }

    .how-it-works-card {
        background-color: white;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s ease-in-out;
        text-align: center;
    }

    .how-it-works-card:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .how-it-works-card h4 {
        font-size: 22px;
        font-weight: 600;
        margin-top: 15px;
        color: #333;
    }

    .how-it-works-card p {
        font-size: 16px;
        color: #555;
        margin-top: 10px;
    }

    .step-icon {
        font-size: 50px;
        color: #FF7F00;
        margin-bottom: 15px;
    }

    /* Responsive Design */
    @media (max-width: 767px) {
        .how-it-works-card {
            margin-bottom: 30px;
        }
    }


    /* Video Section Styles */
.video-section {
    background-color: #f8f8f8; /* Light background for the section */
    padding: 10px 0; /* Add padding for top and bottom */
}

.video-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.video-section .lead {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.video-container {
    margin-bottom: 0px; /* Space between videos */
}

.video-container h4 {
    font-size: 24px;
    font-weight: bold;
    color: #FF7F00; /* Match your primary color */
    margin-bottom: 15px;
}

.video-container iframe {
    width: 100%;
    height: 400px; /* Set a fixed height for the videos */
    border: none; /* Remove iframe border */
    border-radius: 8px; /* Rounded corners for the iframe */
}

/* Ensure responsiveness on smaller screens */
@media (max-width: 767px) {
    .video-section {
        padding: 10px 10px; /* Adjust padding for smaller devices */
    }

    .video-section h2 {
        font-size: 28px; /* Smaller title on mobile */
        margin-bottom: 15px;
    }

    .video-section .lead {
        font-size: 16px; /* Smaller text on mobile */
        margin-bottom: 30px;
    }

    .video-container h4 {
        font-size: 20px; /* Smaller headings on mobile */
        margin-bottom: 10px;
    }

    .video-container iframe {
        height: 250px; /* Smaller height for mobile */
        margin-bottom: 20px; /* Add space below the iframe */
    }
}


    /* Error messages */
/* Form field container */
.form-field {
    position: relative;
    
}

/* Error messages below each input field */
.error-message {
    color: red;
    font-size: 12px;
    position: absolute;
    bottom: -18px;
    left: 0;
}

  /* Inquiry Form Popup Styles */
.inquiry-form-popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Inquiry Form Container */
.inquiry-form-container {
    position: relative;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.inquiry-form-container h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.inquiry-form-container p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.inquiry-form-container input, .inquiry-form-container textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.inquiry-form-container button {
    background-color: #FF7F00; /* Your primary color */
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.inquiry-form-container button:hover {
    background-color: #e06b00;
}



/* For small devices */
@media (max-width: 767px) {
    .inquiry-form-container {
        padding: 20px;
        width: 100%;
        max-width: 90%;
    }
}


/* pop up for buy now */

/* Inquiry Form Popup Styles */
    .inquiry-form-popup {
        display: none; /* Hidden by default */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
        z-index: 9999;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .inquiry-form-container {
        background: #fff;
        padding: 40px;
        border-radius: 8px;
        width: 100%;
        max-width: 600px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        position: relative;
    }

    .inquiry-form-container h3 {
        font-size: 28px;
        color: #333;
        margin-bottom: 15px;
    }

    .inquiry-form-container p {
        font-size: 16px;
        color: #555;
        margin-bottom: 25px;
    }

    .inquiry-form-container input, .inquiry-form-container textarea {
        width: 100%;
        padding: 12px;
        margin: 10px 0;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
    }

    .inquiry-form-container button {
        background-color: #FF7F00; /* Your primary color */
        color: white;
        border: none;
        padding: 12px 25px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 4px;
        transition: background-color 0.3s;
    }

    .inquiry-form-container button:hover {
        background-color: #e06b00;
    }

    /* Error Message Styles */
    #form-errors {
        color: red;
        margin-bottom: 15px;
    }



    /* For small devices */
    @media (max-width: 767px) {
        .inquiry-form-container {
            padding: 20px;
            width: 100%;
            max-width: 90%;
        }
    }
    
    .close-form-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #FF7F00;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 16px;
  cursor: pointer;
  z-index: 1000;
  transition: background 0.3s;

  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.close-form-btn:hover {
  background: #e96e00;
}

/* Responsive adjustment */
@media (max-width: 480px) {
  .close-form-btn {
    width: 26px;
    height: 26px;
    font-size: 14px;
    top: 8px;
    right: 8px;
  }
}

       /* Inquiry Form Styling */
    .inquiry-form2-container {
        background: white;
        padding: 30px;
        width: 90%; /* Default for small screens */
        max-width: 700px; /* Keeps it balanced on larger screens */
        margin: 40px auto;
        border-radius: 12px;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
        border: 1px solid #ddd;
    }

    /* Form Heading */
    .inquiry-form2-container h2 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 5px;
        color: #FF7F00;
    }

    .inquiry-form2-container p {
        font-size: 15px;
        text-align: center;
        margin-bottom: 20px;
        color: #666;
    }

    /* Form Fields */
    .inquiry-form2-container input,
    .inquiry-form2-container textarea {
        width: 100%;
        padding: 14px;
        margin: 8px 0;
        border: 2px solid #ccc;
        border-radius: 8px;
        font-size: 16px;
        transition: border 0.3s ease, box-shadow 0.3s ease;
        outline: none;
    }

    /* Focus Effect */
    .inquiry-form2-container input:focus,
    .inquiry-form2-container textarea:focus {
        border-color: #FF7F00;
        box-shadow: 0 0 8px rgba(255, 127, 0, 0.4);
    }

    /* Submit Button */
    .inquiry-form2-container button {
        width: 100%;
        background: #FF7F00;
        color: white;
        border: none;
        padding: 14px;
        font-size: 18px;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s;
    }

    .inquiry-form2-container button:hover {
        background: #e66a00;
    }

    /* Responsive Design */
    @media (min-width: 600px) { /* For tablets and larger screens */
        .inquiry-form2-container {
            width: 80%; /* Slightly smaller for larger screens */
        }
    }

    @media (max-width: 400px) { /* For very small screens */
        .inquiry-form2-container {
            padding: 20px; /* Reduce padding on very small devices */
            box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.08); /* Lighter shadow */
        }

        .inquiry-form2-container h2 {
            font-size: 20px;
        }

        .inquiry-form2-container p {
            font-size: 14px;
        }

        .inquiry-form2-container input,
        .inquiry-form2-container textarea {
            padding: 12px;
            font-size: 14px;
        }

        .inquiry-form2-container button {
            font-size: 16px;
            padding: 12px;
        }
    }
    
    
    /* Footer */
    .footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 35px 0;
}

.footer a {
    color: #FF7F00;
    text-decoration: none;
    font-weight: bold;
}

.social-links {
    margin: 10px 0;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    font-size: 20px; /* Adjust size here */
    color: white;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #FF7F00; /* Highlight effect */
}


#buy-now-form-popup-install {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

#buy-now-form-popup-install.show {
    display: flex;
}

#buy-now-form-popup-install form {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}
