body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-buttons {
    margin-top: 20px;
}

.btn {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    margin: 0 10px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

header.hero {
    background: linear-gradient(135deg, #ff6a00, #ffcc00);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
}

.btn-primary {
    background: #333;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.btn-primary:hover {
    background: #000;
}

.small-text {
    font-size: 0.9rem;
}

.trusted {
    background: #f9f9f9;
    text-align: center;
    padding: 20px 0;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
    
}
.features.container {
    max-width: 1190px; /* ya jitna aap chahen */
    margin: 10px auto; /* center horizontally */
    padding: 0 20px; /* thoda side spacing */
  }
.feature {
    background: #fafafa;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid #eee;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.08);
}

.feature h3 {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.features i {
    font-size: 1.8rem;
    color: #ff6a00;
    margin-right: 10px;
}

.feature p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Highlight Free Trial Feature */
.highlight-offer {
    background: #fff3cd;
    border-left: 5px solid #ff6a00;
    box-shadow: 0px 5px 15px rgba(255, 106, 0, 0.15);
}

/* Trusted Section */
.trusted p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Features Intro Section */
.features-intro {
    background: linear-gradient(135deg, #116ae2, #bee1f8);
    color: white;
    padding: 20px 10px;
    text-align: center;
}

.features-intro .container {
    max-width: 900px;
    margin: auto;
}

.features-intro h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.features-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: #fff8e1;
    padding: 40px 0;
}

/* Offer Banner */
.offer {
    background: #ff6a00;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Testimonials */
.testimonials {
    margin: 40px 0;
}

.testimonials blockquote {
    background: #f4f4f4;
    padding: 20px;
    border-left: 5px solid #ff6a00;
    margin: 20px 0;
}

/* Final CTA */
.final-cta {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* Footer */
footer {
    background: #111;
    color: #ccc;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #ff6a00;
}

/* Highlight in Hero */
.highlight {
    color: #ffcc00;
}

/* Bigger Hero Buttons */
.hero-buttons .btn {
    font-size: 1.1rem;
    font-weight: bold;
}
.enquiry-testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1100px;
    margin: 30px auto;
}

.enquiry-form-box, 
.testimonials-box {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.enquiry-form-box h3, 
.testimonials-box h3 {
    margin-bottom: 15px;
    color: #333;
}

.enquiry-form-box input, 
.enquiry-form-box textarea {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.enquiry-form-box button {
    background: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-top: 15px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
}

.testimonials-box blockquote {
    background: #f9f9f9;
    padding: 15px;
    margin: 10px 0;
    border-left: 5px solid #007bff;
    font-style: italic;
}

.testimonials-box cite {
    display: block;
    margin-top: 5px;
    font-style: normal;
    color: #555;
}
.enquiry-form-box form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-row label {
    flex: 0 0 30%;
    font-weight: 500;
    color: #333;
}

.form-row input,
.form-row textarea {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-row textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row button {
    background: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-row button:hover {
    background: #0056b3;
}

.form-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.form-row label {
    flex: 0 0 30%;
    font-weight: 500;
    color: #333;
    padding-top: 8px;
}

.form-input {
    flex: 1;
}

.form-input input,
.form-input textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-input textarea {
    resize: vertical;
    min-height: 80px;
}

.error {
    display: block;
    color: red;
    font-size: 13px;
    margin-top: 5px;
}

button {
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.thankyou-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #f9f9f9;
}

.thankyou-icon {
    font-size: 40px;
    color: #28a745;
    margin-bottom: 10px;
}
.hero-nav {
    margin-bottom: 20px;
    text-align: right;
  }
  
  .hero-nav .nav-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
  }
  
  .hero-nav .nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
  }
/* ✅ Testimonials Auto Scroll */
.testimonials {
    margin: 40px auto;
    max-width: 700px;
    text-align: center;
}

.testimonials h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-wrapper {
    height: 220px; /* visible window */
    overflow: hidden;
    position: relative;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    animation: scrollTestimonials 40s linear infinite;
}

.testimonial-list blockquote {
    font-size: 16px;
    font-style: italic;
    padding: 15px 20px;
    margin: 0 0 20px;
    background: #f8f9fa;
    border-left: 5px solid #007bff;
    border-radius: 8px;
}

.testimonial-list cite {
    display: block;
    margin-top: 8px;
    font-weight: bold;
    color: #555;
}

@keyframes scrollTestimonials {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

/* ✅ Pause on Hover */
.testimonial-wrapper:hover .testimonial-list {
    animation-play-state: paused;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .enquiry-testimonials {
        flex-direction: column;
    }
}