
        :root {
            --primary-color: #e63946; /* Red */
            --secondary-color: #1d3557; /* Dark Blue/Black */
            --light-color: #f1faee;
            --dark-color: #000000;
            --gray-color: #a8dadc;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--dark-color);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--secondary-color);
            color: var(--light-color);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 28px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            position: relative;
            margin: 0 15px;
        }
        
        nav ul li a {
            color: var(--light-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            display: block;
            padding: 10px 0;
        }
        
        nav ul li a:hover {
            color: var(--primary-color);
        }
        
        .dropdown {
            position: absolute;
            background-color: var(--secondary-color);
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1;
            display: none;
            top: 100%;
            left: 0;
        }
        
        nav ul li:hover .dropdown {
            display: block;
        }
        
        .dropdown a {
            padding: 12px 16px !important;
            display: block;
        }
        
        .quote-btn {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .quote-btn:hover {
            background-color: #c1121f;
        }
        
        /* Hero Section */
        .hero {
            
            height: 80vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }
        
        .hero-content {
            max-width: 800px;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #c1121f;
        }
        
        /* breadcrumb Section */
        .breadcrumb {
            background-color: var(--primary-color);
            height: 40vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }
        
        .breadcrumb-content {
            max-width: 800px;
        }
        
        .breadcrumb h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .breadcrumb p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #c1121f;
        }
        

        /* Section Styles */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--secondary-color);
            font-size: 2.5rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
        }
         .pb{
            padding-bottom: 30px;
        }
        .pt{
            padding-bottom: 30px;
        }
        /* About Preview Section */
        .about-preview {
            background-color: var(--light-color);
        }
        
        .about-preview-content {
            display: flex;
            align-items: center;
            gap: 30px;
            
        }
       
        .about-preview-text {
            flex: 2;
            
        }
        
        .about-preview-image {
            flex: 1;
        }
        
        .about-preview-image img {
            width: 100%;
            border-radius: 8px;
        }
        
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-card-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .service-card:hover .service-card-img img {
            transform: scale(1.1);
        }
        
        .service-card-content {
            padding: 20px;
        }
        
        .service-card-content h3 {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        /* Why Choose Us */
        .why-choose-us {
            background-color: var(--light-color);
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature {
            text-align: center;
            padding: 20px;
        }
        
        .feature i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .feature h3 {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        /* Testimonials */
        .testimonials {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .testimonials .section-title {
            color: white;
        }
        
        .testimonials .section-title::after {
            background-color: var(--primary-color);
        }
        
        .testimonial-slider {
            display: flex;
            overflow-x: auto;
            gap: 30px;
            padding: 20px 0;
            scroll-snap-type: x mandatory;
        }
        
        .testimonial-card {
            flex: 0 0 360px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 30px;
            scroll-snap-align: start;
        }
        
        .testimonial-card p {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        /* Warranty Teaser */
        .warranty-teaser {
            background-color: var(--light-color);
        }
        
        .warranty-content {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        
        .warranty-text {
            flex: 2;
        }
        
        .warranty-image {
            flex: 1;
        }
        
        .warranty-image img {
            width: 100%;
            border-radius: 8px;
        }
        
        /* Blog Previews */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .blog-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
        }
        
        .blog-card-img {
            height: 200px;
            overflow: hidden;
        }
        
        .blog-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .blog-card:hover .blog-card-img img {
            transform: scale(1.1);
        }
        
        .blog-card-content {
            padding: 20px;
        }
        
        .blog-card-content h3 {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .blog-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: #777;
            font-size: 0.9rem;
        }
        
        /* CTA Section */
        .cta-section {
            background-color: var(--secondary-color);
            color: white;
            text-align: center;
            padding: 60px 0;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* About Page */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            text-align: center;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .team-member img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .team-member-content {
            padding: 20px;
        }
        
        .team-member-content h3 {
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .team-member-content p {
            color: #777;
        }
        
        /* Values Section */
        .values {
            background-color: var(--light-color);
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .value-item {
            text-align: center;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .value-item i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .value-item h3 {
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        /* Services Page */
        .services-overview {
            background-color: var(--light-color);
        }
        
        .services-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .service-item:hover {
            transform: translateY(-5px);
        }
        
        .service-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-top: 5px;
        }
        
        .service-details h3 {
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        /* Individual Service Page */
        .service-hero {
            background-color: var(--primary-color);
            height: 50vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
        }
        
        .service-hero h1 {
            font-size: 3rem;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 50px 0;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 0;
            right: 0;
            height: 4px;
            background-color: var(--gray-color);
            z-index: 1;
        }
        
        .step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        .benefits-list {
            list-style-type: none;
        }
        
        .benefits-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        
        .benefits-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }
        
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 250px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover .overlay {
            transform: translateY(0);
        }
        
        .faq-section {
            background-color: var(--light-color);
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .faq-question {
            background-color: var(--secondary-color);
            color: white;
            padding: 15px 20px;
            cursor: pointer;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            transition: transform 0.3s;
        }
        
        .faq-question.active::after {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            background-color: white;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }
        
        /* Warranty Page */
        .warranty-plans {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        
        .warranty-plan {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .warranty-plan:hover {
            transform: translateY(-10px);
        }
        
        .plan-header {
            background-color: var(--secondary-color);
            color: white;
            padding: 20px;
        }
        
        .plan-header h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .plan-price {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .plan-features {
            padding: 30px;
        }
        
        .plan-features ul {
            list-style-type: none;
            text-align: left;
        }
        
        .plan-features li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        
        .plan-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }
        
        .claim-process {
            background-color: var(--light-color);
        }
        
        .process-timeline {
            position: relative;
            padding: 20px 0;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background-color: var(--primary-color);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
        }
        
        .timeline-item:nth-child(odd) {
            text-align: right;
            padding-right: calc(50% + 30px);
        }
        
        .timeline-item:nth-child(even) {
            text-align: left;
            padding-left: calc(50% + 30px);
        }
        
        .timeline-dot {
            position: absolute;
            top: 0;
            width: 20px;
            height: 20px;
            background-color: var(--primary-color);
            border-radius: 50%;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .timeline-content {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .timeline-content h3 {
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        /* Blog Page */
        .blog-container {
            display: flex;
            gap: 30px;
        }
        
        .blog-main {
            flex: 3;
        }
        
        .blog-sidebar {
            flex: 1;
        }
        
        .blog-sidebar-widget {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .blog-sidebar-widget h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--gray-color);
        }
        
        .blog-sidebar-widget ul {
            list-style-type: none;
        }
        
        .blog-sidebar-widget li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .blog-sidebar-widget li:last-child {
            border-bottom: none;
        }
        
        .blog-sidebar-widget a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .blog-sidebar-widget a:hover {
            color: var(--primary-color);
        }
        
        .search-form {
            display: flex;
        }
        
        .search-form input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px 0 0 4px;
        }
        
        .search-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        
        .newsletter-form input {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .newsletter-form button {
            width: 100%;
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
        }
        
        /* Get Free Quotes Page */
        .quote-form-container {
            background-color: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--secondary-color);
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .file-upload {
            position: relative;
            display: inline-block;
            cursor: pointer;
            width: 100%;
        }
        
        .file-upload input[type=file] {
            position: absolute;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
        
        .file-upload-label {
            display: block;
            padding: 12px;
            background-color: var(--light-color);
            border: 1px solid #ddd;
            border-radius: 4px;
            text-align: center;
        }
        
        .contact-info {
            background-color: var(--light-color);
            padding: 30px;
            border-radius: 8px;
            margin-top: 30px;
        }
        
        .contact-info h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
            width: 30px;
            text-align: center;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .footer-column ul {
            list-style-type: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary-color);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                text-align: left;
                padding-left: calc(50% + 30px);
                padding-right: 0;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .about-preview-content,
            .warranty-content {
                flex-direction: column;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .process-timeline::before {
                left: 20px;
            }
            
            .timeline-item {
                padding-left: 60px !important;
                padding-right: 0 !important;
            }
            
            .timeline-dot {
                left: 20px;
            }
            
            .blog-container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            nav ul li {
                margin: 0 5px;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
  