/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: linear-gradient(135deg, #f69125 0%, #fabc20 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
    color: #27ae60;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #fabc20;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, #fabc20 0%, #fabc20 50%, #d57005 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><polygon fill="%23ffffff" fill-opacity="0.1" points="0,20 100,0 100,20"/></svg>') repeat-x;
    background-size: 100px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text h1 span {
    color: #27ae60;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #fabc20;
    transform: translateY(-2px);
}

.hero-card {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.hero-card i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.hero-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #f69125;
    font-weight: 700;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f69125;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 1.5rem;
    color: #fabc20;
    margin-right: 1rem;
    width: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #fabc20;
}

.stat h3 {
    font-size: 3rem;
    color: #fabc20;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #7f8c8d;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #f69125;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3rem;
    color: #fabc20;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #f69125;
    font-weight: 600;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f69125 0%, #f69125 100%);
    color: white;
}

.why-choose-us .section-header h2 {
    color: white;
}

.why-choose-us .section-header p {
    color: #ffffff;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.reason {
    text-align: center;
    padding: 2rem;
}

.reason-icon {
    background: linear-gradient(135deg, #fabc20, #fabc20);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.reason-icon i {
    font-size: 2rem;
    color: white;
}

.reason h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.reason p {
    color: #ffffff;
    line-height: 1.6;
}

/* Warranty Section */
.warranty {
    padding: 100px 0;
    background: linear-gradient(135deg, #fabc20 0%, #fabc20 100%);
    color: white;
}

.warranty-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.warranty-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.warranty-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.warranty-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.warranty-feature {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.warranty-feature i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #27ae60;
    width: 30px;
}

.warranty-badge {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.warranty-badge i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.warranty-badge h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #ecf0f1;
}

.contact .section-header h2 {
    color: #f69125;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 2rem;
    color: #fabc20;
    margin-right: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #f69125;
    font-weight: 600;
}

.contact-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

.quote-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.quote-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #f69125;
    font-weight: 600;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fabc20;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.confirmation-message {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border-radius: 15px;
    margin-top: 2rem;
}

.confirmation-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.confirmation-message h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials .section-header h2 {
    color: #f69125;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #fabc20;
    position: relative;
}

.stars {
    display: flex;
    margin-bottom: 1.5rem;
    gap: 0.3rem;
}

.stars i {
    color: #27ae60;
    font-size: 1.2rem;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #f69125;
    font-style: italic;
}

.testimonial-author strong {
    color: #f69125;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f69125 0%, #f69125 100%);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #fabc20;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fabc20;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fabc20;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fabc20;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #f69125;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #f69125;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .warranty-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


/***************Newsletter*****************/


        .newsletter-page {
            margin-top: 80px;
            padding: 50px 0;
            background: linear-gradient(135deg, #fabc20 0%, #fabc20 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        .newsletter-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .newsletter-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            text-align: center;
        }
        .newsletter-header {
            margin-bottom: 2.5rem;
        }
        .newsletter-header i {
            font-size: 4rem;
            color: #fabc20;
            margin-bottom: 1rem;
        }
        .newsletter-header h1 {
            color: #f69125;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .newsletter-header p {
            color: #7f8c8d;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #f69125;
            font-weight: 600;
        }
        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ecf0f1;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }
        .form-group input:focus {
            outline: none;
            border-color: #fabc20;
        }
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
            text-align: left;
        }
        .checkbox-group input[type="checkbox"] {
            width: auto;
            margin-top: 0.3rem;
        }
        .checkbox-group label {
            flex: 1;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        .back-link {
            display: inline-flex;
            align-items: center;
            color: white;
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 2rem;
            transition: color 0.3s ease;
        }
        .back-link:hover {
            color: #27ae60;
        }
        .back-link i {
            margin-right: 0.5rem;
        }
        .confirmation-message {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            color: white;
            border-radius: 15px;
            margin-top: 2rem;
        }
        .confirmation-message i {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #27ae60;
        }
        .confirmation-message h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        .benefits {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid #ecf0f1;
        }
        .benefits h3 {
            color: #f69125;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .benefits ul {
            list-style: none;
            text-align: left;
        }
        .benefits li {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            color: #f69125;
        }
        .benefits li i {
            color: #27ae60;
            margin-right: 0.8rem;
            font-size: 1.1rem;
        }

        /*********************terms******************/

        
        .content-page {
            margin-top: 80px;
            padding: 50px 0;
            background: #f8f9fa;
            min-height: 100vh;
        }
        .content-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .content-card {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .content-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .content-header h1 {
            color: #f69125;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .content-header p {
            color: #7f8c8d;
            font-size: 1.1rem;
        }
        .content-section {
            margin-bottom: 2.5rem;
        }
        .content-section h2 {
            color: #fabc20;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            border-left: 4px solid #fabc20;
            padding-left: 1rem;
        }
        .content-section p {
            line-height: 1.8;
            color: #f69125;
            margin-bottom: 1rem;
        }
        .content-section ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }
        .content-section li {
            line-height: 1.8;
            color: #f69125;
            margin-bottom: 0.5rem;
        }
        .back-link {
            display: inline-flex;
            align-items: center;
            color: #fabc20;
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 2rem;
            transition: color 0.3s ease;
        }
        .back-link:hover {
            color: #d57005;
        }
        .back-link i {
            margin-right: 0.5rem;
        }

        /*****************Privacy Page*****************/

        
        .content-page {
            margin-top: 80px;
            padding: 50px 0;
            background: #f8f9fa;
            min-height: 100vh;
        }
        .content-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .content-card {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .content-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .content-header h1 {
            color: #f69125;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .content-header p {
            color: #7f8c8d;
            font-size: 1.1rem;
        }
        .content-section {
            margin-bottom: 2.5rem;
        }
        .content-section h2 {
            color: #fabc20;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            border-left: 4px solid #fabc20;
            padding-left: 1rem;
        }
        .content-section p {
            line-height: 1.8;
            color: #f69125;
            margin-bottom: 1rem;
        }
        .content-section ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }
        .content-section li {
            line-height: 1.8;
            color: #f69125;
            margin-bottom: 0.5rem;
        }
        .back-link {
            display: inline-flex;
            align-items: center;
            color: #fabc20;
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 2rem;
            transition: color 0.3s ease;
        }
        .back-link:hover {
            color: #d57005;
        }
        .back-link i {
            margin-right: 0.5rem;
        }