@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&display=swap');

body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f7f7f7 0%, #e0e7ff 100%);
    color: #222;
    min-height: 100vh;
}
header {
    background: linear-gradient(90deg, #0d47a1 0%, #1976d2 100%);
    color: #fff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(13, 71, 161, 0.1);
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}
nav ul li {
    margin: 0 30px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    font-family: 'Montserrat', Arial, sans-serif;
    letter-spacing: 1px;
    transition: color 0.2s;
    padding: 18px 0;
    display: inline-block;
}
nav ul li a:hover {
    color: #ff9800;
    border-bottom: 2px solid #ff9800;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #1976d2 60%, #fff 100%);
    padding: 60px 20px 40px 20px;
    box-shadow: 0 4px 24px rgba(25, 118, 210, 0.08);
    border-radius: 0 0 40px 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.hero-image {
    width: 100%;
    max-width: 600px;
    height: 340px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    background: #f7f7f7;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.15);
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 18px;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    text-shadow: 0 2px 8px rgba(25, 118, 210, 0.15);
}
.hero-content p {
    font-size: 1.4rem;
    color: #e3e3e3;
    font-weight: 500;
}
.info, .about, .contact {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    padding: 40px 36px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(25, 118, 210, 0.08);
    transition: box-shadow 0.2s;
}
.info:hover, .about:hover, .contact:hover {
    box-shadow: 0 8px 32px rgba(255, 152, 0, 0.13);
}
.info h2, .about h1, .contact h1 {
    margin-top: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #1976d2;
}
footer {
    background: #0d47a1;
    color: #fff;
    text-align: center;
    padding: 18px 0 12px 0;
    position: static;
    width: 100%;
    bottom: 0;
    font-size: 1rem;
    letter-spacing: 1px;
}
form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}
input, textarea {
    padding: 12px;
    border: 1.5px solid #1976d2;
    border-radius: 8px;
    font-size: 1rem;
    background: #f7faff;
    transition: border 0.2s;
}
input:focus, textarea:focus {
    border: 2px solid #ff9800;
    outline: none;
}
form button {
    background: linear-gradient(90deg, #1976d2 60%, #ffeb3b 100%);
    color: #222;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
}
form button:hover {
    background: linear-gradient(90deg, #ffeb3b 60%, #1976d2 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.18);
}
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 10px 20px 10px;
    }
    .hero-image {
        margin: 0 0 24px 0;
        width: 90vw;
        max-width: 340px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
}
@media (max-width: 700px) {
    .hero-image {
        max-width: 98vw;
        height: 180px;
    }
}
.why-choose-us {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 40px 36px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(255, 152, 0, 0.10);
    text-align: center;
}
.why-choose-us h2 {
    color: #ff9800;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 32px;
    font-size: 2.2rem;
}
.reasons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}
.reason {
    background: linear-gradient(120deg, #e3f2fd 60%, #fff 100%);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(25, 118, 210, 0.07);
    padding: 28px 22px;
    width: 180px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.reason:hover {
    box-shadow: 0 6px 24px rgba(255, 152, 0, 0.18);
    transform: translateY(-6px) scale(1.04);
}
.icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.reason h3 {
    margin: 10px 0 8px 0;
    color: #1976d2;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.2rem;
}
.reason p {
    color: #444;
    font-size: 1rem;
}
.reason-image {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.10);
    margin-bottom: 12px;
    background: #f7faff;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 900px) {
    .reasons {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .reason {
        width: 90vw;
        max-width: 340px;
    }
}
.services-list {
    text-align: left;
    max-width: 500px;
    margin: 24px auto 16px auto;
    padding: 0 0 0 20px;
    font-size: 1.08rem;
    color: #1976d2;
    line-height: 1.7;
    background: #f7faff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.06);
}
.services-list li {
    margin-bottom: 6px;
    font-weight: 500;
}
.service-image-container {
    margin: 16px 0 8px 0;
    text-align: center;
}
.service-image {
    width: 100px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 6px;
    background: #f7faff;
    box-shadow: 0 1px 4px rgba(25, 118, 210, 0.08);
}
.service-image:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(255, 152, 0, 0.18);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin: 40px 0 32px 0;
    padding: 0 10px;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(25, 118, 210, 0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 6px 10px 6px;
    transition: box-shadow 0.2s, transform 0.2s;
    min-width: 180px;
    max-width: 220px;
    min-height: 180px;
    position: relative;
}
.service-card:hover {
    box-shadow: 0 8px 32px rgba(255, 152, 0, 0.18);
    transform: translateY(-6px) scale(1.03);
}
.service-card h2 {
    font-size: 1.18rem;
    color: #1976d2;
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 18px 0 0 0;
    text-align: center;
    min-height: 48px;
}
.service-image {
    width: 100px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 6px;
    background: #f7faff;
    box-shadow: 0 1px 4px rgba(25, 118, 210, 0.08);
}
.service-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 120px;
}
.service-icon {
    font-size: 3rem;
    color: #ff9800;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 120px;
}
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .service-card {
        min-height: 260px;
        padding: 18px 6px 14px 6px;
    }
    .service-card h2 {
        font-size: 1rem;
        min-height: 32px;
    }
    .service-image {
        width: 90vw;
        max-width: 220px;
        height: 90px;
    }
}
@media (max-width: 900px) {
    .service-image {
        width: 90vw;
        max-width: 340px;
        height: 180px;
    }
    .service-card {
        min-height: 320px;
    }
}
.order-now-btn {
    display: inline-block;
    margin: 22px 0 28px 0;
    padding: 14px 36px;
    background: linear-gradient(90deg, #1976d2 60%, #ffeb3b 100%);
    color: #222;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.10);
    text-decoration: none;
    letter-spacing: 1px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
    cursor: pointer;
}
.order-now-btn:hover {
    background: linear-gradient(90deg, #ffeb3b 60%, #1976d2 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.18);
    transform: translateY(-2px) scale(1.04);
}
.featured-services {
    display: flex;
    gap: 32px;
    justify-content: flex-start;
    margin-top: 10px;
}
.featured-service {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(25, 118, 210, 0.08);
    padding: 18px 20px 14px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 160px;
    max-width: 200px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.featured-service:hover {
    box-shadow: 0 6px 24px rgba(255, 152, 0, 0.13);
    transform: translateY(-4px) scale(1.03);
}
.featured-service .icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
}
.featured-service h3 {
    margin: 0 0 6px 0;
    color: #1976d2;
    font-size: 1.1rem;
    font-family: 'Montserrat', Arial, sans-serif;
}
.featured-service p {
    color: #444;
    font-size: 0.98rem;
    text-align: center;
    margin: 0;
}
@media (max-width: 900px) {
    .featured-services {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    .featured-service {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
}
.featured-services-home {
    max-width: 900px;
    margin: 40px auto 0 auto;
    background: #fff;
    padding: 36px 24px 30px 24px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(25, 118, 210, 0.10);
    text-align: center;
}
.featured-services-home h2 {
    color: #1976d2;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 32px;
    font-size: 2rem;
}
.featured-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    justify-content: center;
    align-items: stretch;
}
.featured-service-item {
    background: #f7faff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(25, 118, 210, 0.08);
    padding: 28px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 220px;
    position: relative;
}
.featured-service-item:hover {
    box-shadow: 0 8px 32px rgba(255, 152, 0, 0.13);
    transform: translateY(-6px) scale(1.04);
}
.featured-service-item .icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.featured-service-item h3 {
    margin: 10px 0 8px 0;
    color: #1976d2;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.2rem;
}
.featured-service-item p {
    color: #444;
    font-size: 1rem;
    text-align: center;
    margin: 0;
}
@media (max-width: 700px) {
    .featured-services-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .featured-service-item {
        min-height: 160px;
        padding: 16px 6px 12px 6px;
    }
    .featured-service-item h3 {
        font-size: 1rem;
    }
}
.service-thumb {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.10);
    margin-bottom: 12px;
    background: #f7faff;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.gallery-page {
    max-width: 1100px;
    margin: 40px auto;
    background: #fff;
    padding: 36px 24px 30px 24px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(25, 118, 210, 0.10);
    text-align: center;
}
.gallery-page h1 {
    color: #1976d2;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 32px;
    font-size: 2rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    justify-content: center;
    align-items: stretch;
}
.gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(25, 118, 210, 0.08);
    transition: box-shadow 0.2s, transform 0.2s;
    background: #f7faff;
}
.gallery-img:hover {
    box-shadow: 0 8px 32px rgba(255, 152, 0, 0.13);
    transform: scale(1.04);
}
@media (max-width: 700px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .gallery-img {
        height: 120px;
    }
}
.customer-views {
    max-width: 100vw;
    margin: 48px 0 40px 0;
    background: #f3f6fa;
    padding: 44px 0 38px 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    border: none;
}
.customer-views h2 {
    color: #1976d2;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 32px;
    font-size: 2rem;
    letter-spacing: 1px;
}
.testimonials {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: flex-start;
    align-items: stretch;
    overflow-x: auto;
    padding: 0 32px;
    scroll-snap-type: x mandatory;
}
.testimonial {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(25, 118, 210, 0.10);
    min-width: 320px;
    max-width: 340px;
    margin: 0;
    font-size: 1.18rem;
    color: #222;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    border-top: 6px solid #1976d2;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 28px 22px 22px 18px;
    scroll-snap-align: start;
}
.testimonial:hover {
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.18);
    transform: translateY(-4px) scale(1.03);
}
.testimonial .avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #e3eafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    color: #1976d2;
    margin-right: 18px;
    flex-shrink: 0;
    margin-bottom: 0;
}
.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.testimonial-content p {
    font-style: normal;
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0 0 12px 0;
    color: #333;
    text-align: left;
    font-size: 1.08rem;
}
.testimonial-content span {
    color: #888;
    font-weight: 500;
    font-size: 1rem;
    align-self: flex-end;
}
@media (max-width: 900px) {
    .testimonials {
        flex-direction: column;
        gap: 18px;
        padding: 0 8px;
        overflow-x: visible;
    }
    .testimonial {
        flex-direction: row;
        min-width: 0;
        max-width: 100%;
        width: 100%;
        padding: 18px 8px 12px 8px;
    }
    .testimonial .avatar {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-right: 12px;
    }
}
.about {
    max-width: 800px;
    margin: 40px auto 40px auto;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
} 