
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        /* Header */
        header { background: linear-gradient(135deg, #FF6B35 0%, #FFA552 100%); color: white; padding: 1rem 0; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
        nav { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 1.8rem; font-weight: bold; }
        .nav-links { display: flex; list-style: none; gap: 2rem; }
        .nav-links a { color: white; text-decoration: none; transition: opacity 0.3s; }
        .nav-links a:hover { opacity: 0.8; }
        .cta-header { background: #ff6b35; padding: 12px 24px; border-radius: 25px; font-weight: bold; text-decoration: none; transition: transform 0.3s; }
        .cta-header:hover { transform: scale(1.05); }
        
        /* Hero */
        .hero { background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23FF6B35" width="1200" height="600"/><path fill="%23FFA552" d="M0 300Q300 150 600 300T1200 300V600H0z"/></svg>'); background-size: cover; color: white; padding: 150px 0 100px; text-align: center; }
        .hero h1 { font-size: 3.5rem; margin-bottom: 1rem; }
        .hero p { font-size: 1.3rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
        .highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin: 3rem 0; }
        .highlight { background: rgba(255,255,255,0.1); padding: 2rem; border-radius: 10px; backdrop-filter: blur(10px); }
        .ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
        .cta-primary { background: #ff6b35; color: white; padding: 18px 36px; border: none; border-radius: 30px; font-size: 1.1rem; font-weight: bold; text-decoration: none; transition: all 0.3s; }
        .cta-primary:hover { background: #e55a2b; transform: translateY(-2px); }
        .cta-secondary { background: transparent; color: white; padding: 18px 36px; border: 2px solid white; border-radius: 30px; font-size: 1.1rem; font-weight: bold; text-decoration: none; transition: all 0.3s; }
        .cta-secondary:hover { background: white; color: #FF6B35; }
        
        /* Sections */
        section { padding: 80px 0; }
        .section-title { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: #FF6B35; }
        .about-preview { background: #f8f9fa; }
        .mission-vision { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
        .mission-vision div { background: white; padding: 2rem; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
        
        /* Why Choose Us */
        .why-choose { background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%); color: white; text-align: center; }
        .features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
        .feature { padding: 2rem; background: rgba(255,255,255,0.1); border-radius: 10px; }
        
        /* Services */
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 2rem; }
        .service-category { background: white; border-radius: 15px; padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s; }
        .service-category:hover { transform: translateY(-5px); }
        .service-category h3 { color: #FF6B35; margin-bottom: 1rem; font-size: 1.5rem; }
        .service-list { list-style: none; }
        .service-list li { padding: 0.5rem 0; border-bottom: 1px solid #eee; }
        .service-list li:before { content: "✔"; color: #ff6b35; font-weight: bold; margin-right: 10px; }
        
        /* Testimonials */
        .testimonials { background: #f8f9fa; text-align: center; }
        .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
        .testimonial { background: white; padding: 2rem; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
        
        /* FAQ */
        .faq-item { margin-bottom: 1.5rem; }
        .faq-question { background: #FF6B35; color: white; padding: 1.5rem; border-radius: 10px; cursor: pointer; font-weight: bold; transition: all 0.3s; }
        .faq-question:hover { background: #FFA552; }
        .faq-answer { background: #f8f9fa; padding: 1.5rem; border-radius: 10px; margin-top: 0.5rem; display: none; }
        .faq-answer.show { display: block; }
        
        /* Contact Form */
        .contact-form { max-width: 600px; margin: 0 auto; background: white; padding: 2rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .form-group { margin-bottom: 1.5rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; font-weight: bold; color: #FF6B35; }
        .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 2px solid #eee; border-radius: 8px; font-size: 1rem; transition: border-color 0.3s; }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #ff6b35; }
        .form-submit { width: 100%; background: #ff6b35; color: white; padding: 15px; border: none; border-radius: 8px; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: background 0.3s; }
        .form-submit:hover { background: #e55a2b; }
        .success-message { display: none; background: #d4edda; color: #155724; padding: 1rem; border-radius: 8px; margin-top: 1rem; text-align: center; }
        
        /* Newsletter */
        .newsletter { background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%); color: white; text-align: center; padding: 60px 0; }
        .newsletter-form { max-width: 500px; margin: 0 auto; background: rgba(255,255,255,0.1); padding: 2rem; border-radius: 15px; backdrop-filter: blur(10px); }
        
        /* Footer */
        footer { background: #FF6B35; color: white; padding: 40px 0 20px; }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
        .footer-section h3 { margin-bottom: 1rem; }
        .footer-section a { color: #ccc; text-decoration: none; display: block; margin-bottom: 0.5rem; }
        .footer-section a:hover { color: white; }
        .social-links { display: flex; gap: 1rem; margin-top: 1rem; }
        .social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
        .social-links a:hover { background: #ff6b35; }
        .footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hero h1 { font-size: 2.5rem; }
            .ctas { flex-direction: column; align-items: center; }
            .section-title { font-size: 2rem; }
        }
        
        /* Animations */
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        section { animation: fadeInUp 0.8s ease-out; }

        /* Modal Background */
.modal {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto;
    background-color: rgba(0,0,0,0.6); /* Semi-transparent background */
}

/* Modal Content Box */
.modal-content {
    background-color: #fff;
    margin: 10% auto; 
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: slideDown 0.3s ease-out;
}

/* Close Button */
.close {
    color: #ff6b35;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #e0551b;
}

/* Animation for modal */
@keyframes slideDown {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

/* Headings and Paragraphs */


/* Buttons */
button {
    padding: 10px 20px;
    margin: 10px;
    border: none;
    background-color: #ff6b35;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #e0551b;
}

    