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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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



/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #E30613;
    transition: all 0.3s ease;
}

a:hover {
    color: #b0050f;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #E30613;
}

.text-center {
    text-align: center;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    color: #E30613;
    font-size: 1.8rem;
    margin: 0;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 25px;
}

.nav ul li a {
    color: #000;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.nav ul li a:hover, 
.nav ul li a.active {
    color: #E30613;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner1.jpg');
}

.slide:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner2.jpg');
}

.slide:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner3.jpg');
}

.slide-content {
    color: #fff;
    max-width: 600px;
    padding: 0 20px;
    margin-left: 10%;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background: #fff;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #E30613;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #b0050f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid #E30613;
    color: #E30613;
}

.btn-outline:hover {
    background: #E30613;
    color: #fff;
}

/* WhatsApp Themed Button */
.btn[href*="wa.me"] {
    background: #25D366;
    color: #fff;
    border: none;
    position: relative;
    padding-left: 2.5em;
    font-weight: 600;
    transition: background 0.2s, box-shadow 0.2s;
}

.btn[href*="wa.me"]::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 1em;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2em;
    height: 1.2em;
    background: url('../images/whatsapp-icon.png') no-repeat center center;
    background-size: contain;
}

.btn[href*="wa.me"]:hover,
.btn[href*="wa.me"]:focus {
    background: #128C7E;
    box-shadow: 0 2px 12px rgba(37,211,102,0.15);
    color: #fff;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    padding: 30px 20px;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
}

.service-icon img {
    max-width: 50px;
    max-height: 50px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 500;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #E30613;
}

/* Portfolio Preview */
.portfolio-preview {
    padding: 80px 0;
    background: #f9f9f9;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(227, 6, 19, 0.8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    color: #fff;
    text-align: center;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #E30613;
    color: #fff;
    text-align: center;
}

.cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta .btn {
    background: #15ff00;
    color: #ffffff;
}

.cta .btn:hover {
    background: #ffffff;
    color: #15ff00;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
}

.footer-col ul li a:hover {
    color: #E30613;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

.float-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

.float-whatsapp img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* About Page Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/about-banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-intro {
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #E30613;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-vision {
    padding: 80px 0;
    background: #f9f9f9;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mv-card h3 {
    margin-bottom: 15px;
    color: #E30613;
}

.why-choose-us.about {
    padding: 80px 0;
}

.team-section {
    padding: 80px 0;
    background: #f9f9f9;
}
/* Testimonials Section */
.testimonials-section {
    background: #fff;
    padding: 4vw 0;
}
.testimonials-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2vw;
    color: #222;
}
.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 2vw;
    flex-wrap: wrap;
}
.testimonial {
    background: #f6f8fa;
    border-radius: 1em;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 2vw 2vw 1.5vw 2vw;
    flex: 1 1 220px;
    max-width: 340px;
    text-align: center;
    font-style: italic;
    transition: box-shadow 0.3s;
}
.testimonial:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.testimonial p {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 1vw;
}
.testimonial h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #ff0000;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .process-steps,
    .testimonials-grid {
        gap: 3vw;
    }
    .step,
    .testimonial {
        max-width: 90vw;
        padding: 5vw 3vw 3vw 3vw;
    }
}
@media (max-width: 600px) {
    .process-steps,
    .testimonials-grid {
        flex-direction: column;
        align-items: center;
        gap: 5vw;
    }
    .step,
    .testimonial {
        max-width: 98vw;
        padding: 7vw 4vw 4vw 4vw;
    }
    .process-section .section-title,
    .testimonials-section .section-title {
        font-size: 1.5rem;
    }
}

/* Services Page Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/services-banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Navigation */
.services-nav {
    background: #f9f9f9;
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.services-nav-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.service-nav-item {
    padding: 10px 20px;
    background: #fff;
    border-radius: 30px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-nav-item:hover {
    background: #E30613;
    color: #fff;
    transform: translateY(-2px);
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 0;
}

.service-detail.alt {
    background: #f9f9f9;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    color: #E30613;
}

.service-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #E30613;
}

.service-text > p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features, .service-benefits {
    margin-bottom: 25px;
}

.service-features h3, .service-benefits h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #000;
}

.service-features ul, .service-benefits ul {
    list-style: none;
    padding-left: 20px;
}

.service-features li, .service-benefits li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.service-features li::before, .service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E30613;
    font-weight: bold;
}

.service-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* Service CTA Section */
.service-cta {
    padding: 80px 0;
    background: #E30613;
    color: #fff;
    text-align: center;
}

.service-cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

.service-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.service-cta .btn {
    background: #fff;
    color: #E30613;
}

.service-cta .btn:hover {
    background: #000;
    color: #fff;
}

/* Portfolio Page Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/portfolio-banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Portfolio Filters */
.portfolio-filters {
    background: #f9f9f9;
    padding: 30px 0;
    position: sticky;
    top: 70px;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 30px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: #E30613;
    color: #fff;
    border-color: #E30613;
}

/* Portfolio Grid */
.portfolio-grid {
    padding: 80px 0;
}

.portfolio-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.portfolio-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 3/2;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(227, 6, 19, 0.9);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.portfolio-overlay p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.portfolio-view {
    padding: 8px 20px;
    background: #fff;
    color: #E30613;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-view:hover {
    background: #000;
    color: #fff;
}

/* Portfolio CTA Section */
.portfolio-cta {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.portfolio-cta h2 {
    margin-bottom: 20px;
}

.portfolio-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-close:hover {
    color: #E30613;
}

/* Contact Page Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contact-banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2, .contact-form h2 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    color: #E30613;
}

.contact-info h2::after, .contact-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #E30613;
}

.contact-info > p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon img {
    width: 24px;
    height: 24px;
}

.contact-text h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-text p {
    margin-bottom: 3px;
}

.contact-text a {
    color: #333;
    font-weight: 500;
}

.contact-text a:hover {
    color: #E30613;
}

.contact-text span {
    font-size: 0.9rem;
    color: #666;
}

.social-links h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #E30613;
    transform: translateY(-3px);
}

.social-icon img {
    width: 20px;
    height: 20px;
}

/* Contact Form */
.contact-form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #E30613;
    outline: none;
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

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

.error-message {
    display: block;
    color: #E30613;
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-message {
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.map-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #E30613;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.faq-item h3 {
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #E30613;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 0 20px;
    display: none;
}

.faq-item.active .faq-content {
    display: block;
}

.faq-content p {
    line-height: 1.7;
    color: #666;
}
/* Large Format Printing Page Styles */
.service-intro {
    padding: 80px 0;
}

.service-intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    color: #E30613;
}

.intro-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #E30613;
}

.intro-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.intro-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Service Offerings */
.service-offerings {
    padding: 80px 0;
    background: #f9f9f9;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.offering-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.offering-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.offering-image {
    height: 200px;
    overflow: hidden;
}

.offering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offering-item:hover .offering-image img {
    transform: scale(1.05);
}

.offering-content {
    padding: 20px;
}

.offering-content h3 {
    margin-bottom: 10px;
    color: #000;
}

.offering-content p {
    margin-bottom: 15px;
    color: #666;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Service Benefits */
.service-benefits {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
}

.benefit-icon img {
    max-width: 40px;
    max-height: 40px;
}

.benefit-item h3 {
    margin-bottom: 15px;
    color: #000;
}

/* Applications Section */
.service-applications {
    padding: 80px 0;
    background: #f9f9f9;
}

.applications-content {
    display: flex;
    gap: 40px;
}

.applications-list {
    flex: 1;
}

.application {
    margin-bottom: 30px;
}

.application h3 {
    margin-bottom: 10px;
    color: #E30613;
}

.applications-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.applications-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Process Section */
.service-process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #E30613;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 15px;
    color: #000;
}

/* Service CTA */
.service-cta {
    padding: 80px 0;
    background: #E30613;
    color: #fff;
    text-align: center;
}

.service-cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

.service-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.service-cta .btn {
    background: #fff;
    color: #E30613;
}

.service-cta .btn:hover {
    background: #000;
    color: #fff;
}
/* CNC Cutting & Engraving Page Styles */
.service-materials {
    padding: 80px 0;
    background: #f9f9f9;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.material-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.material-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.material-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
}

.material-icon img {
    max-width: 40px;
    max-height: 40px;
}

.material-item h3 {
    margin-bottom: 15px;
    color: #000;
}

/* Process steps adjustment for 6 steps */
.service-process .process-steps {
    grid-template-columns: repeat(3, 1fr);
}

/* Applications section adjustment */
.service-applications .applications-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.application {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.application h3 {
    margin-bottom: 10px;
    color: #E30613;
}
/* Vehicle Branding Page Styles */
.vehicle-types {
    padding: 80px 0;
    background: #f9f9f9;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vehicle-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.vehicle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.vehicle-image {
    height: 180px;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-item:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-item h3 {
    padding: 20px 20px 10px;
    color: #000;
}

.vehicle-item p {
    padding: 0 20px 20px;
    color: #666;
}

/* Maintenance Section */
.maintenance-section {
    padding: 80px 0;
}

.maintenance-content {
    display: flex;
    gap: 40px;
}

.maintenance-tips {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.maintenance-item {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.maintenance-item h3 {
    margin-bottom: 10px;
    color: #E30613;
}

.maintenance-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.maintenance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Process steps adjustment for 6 steps */
.service-process .process-steps {
    grid-template-columns: repeat(3, 1fr);
}
/* Cloth Branding Page Styles */
.printing-methods {
    padding: 80px 0;
    background: #f9f9f9;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.method-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
}

.method-icon img {
    max-width: 40px;
    max-height: 40px;
}

.method-item h3 {
    margin-bottom: 15px;
    color: #000;
}

.method-item p {
    margin-bottom: 15px;
    color: #666;
}

.method-item ul {
    text-align: left;
    list-style: none;
    padding-left: 20px;
}

.method-item li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.method-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E30613;
    font-weight: bold;
}

/* Fabric Types Section */
.fabric-types {
    padding: 80px 0;
}

.fabrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fabric-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fabric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.fabric-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
}

.fabric-icon img {
    max-width: 40px;
    max-height: 40px;
}

.fabric-item h3 {
    margin-bottom: 15px;
    color: #000;
}

/* Applications section adjustment */
.service-applications .applications-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.application {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.application h3 {
    margin-bottom: 10px;
    color: #E30613;
}

/* Process steps adjustment for 6 steps */
.service-process .process-steps {
    grid-template-columns: repeat(3, 1fr);
}
/* General Printing Services Page Styles */
.paper-options {
    padding: 80px 0;
    background: #f9f9f9;
}

.paper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.paper-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.paper-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.paper-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
}

.paper-icon img {
    max-width: 40px;
    max-height: 40px;
}

.paper-item h3 {
    margin-bottom: 15px;
    color: #000;
}

.paper-item p {
    margin-bottom: 15px;
    color: #666;
}

.paper-best {
    display: block;
    font-size: 0.85rem;
    color: #E30613;
    font-weight: 500;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* Turnaround Section */
.turnaround-section {
    padding: 80px 0;
}

.turnaround-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.turnaround-row {
    display: flex;
}

.turnaround-row.header {
    background: #E30613;
    color: #fff;
    font-weight: 600;
}

.turnaround-row:not(.header) {
    background: #fff;
}

.turnaround-row:not(.header):nth-child(even) {
    background: #f9f9f9;
}

.turnaround-cell {
    flex: 1;
    padding: 15px;
    text-align: center;
    border-right: 1px solid #eee;
}

.turnaround-cell:last-child {
    border-right: none;
}

.turnaround-row.header .turnaround-cell {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.turnaround-notice {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Applications section adjustment */
.service-applications .applications-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.application {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.application h3 {
    margin-bottom: 10px;
    color: #E30613;
}

/* Signages Page Styles */
.signage-types {
    padding: 80px 0;
    background: #f9f9f9;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.type-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
}

.type-icon img {
    max-width: 40px;
    max-height: 40px;
}

.type-item h3 {
    margin-bottom: 15px;
    color: #000;
    text-align: center;
}

.type-item p {
    margin-bottom: 15px;
    color: #666;
}

.type-item ul {
    list-style: none;
    padding-left: 20px;
}

.type-item li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.type-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E30613;
    font-weight: bold;
}

/* Materials Section */
.materials-section {
    padding: 80px 0;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.material-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.material-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.material-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
}

.material-icon img {
    max-width: 40px;
    max-height: 40px;
}

.material-item h3 {
    margin-bottom: 15px;
    color: #000;
}

.material-item p {
    margin-bottom: 15px;
    color: #666;
}

.material-best {
    display: block;
    font-size: 0.85rem;
    color: #E30613;
    font-weight: 500;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* Applications section adjustment */
.service-applications .applications-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.application {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.application h3 {
    margin-bottom: 10px;
    color: #E30613;
}