/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Questrial', Arial, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #EDE6D4;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path d="M30,30 Q50,10 70,30 T90,50 T70,70 T30,70 T10,50 T30,30" fill="none" stroke="%239c9d8d" stroke-width="0.5" opacity="0.1"/></svg>');
    background-repeat: repeat;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #EDE6D4;
    padding: 12px 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-container {
    display: flex;
    align-items: center;
}

.logo {
    width: auto;
    height: 40px;
    margin-right: 12px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.registered {
    font-size: 14px;
    vertical-align: super;
    color: darkgoldenrod;
}

.tagline {
    font-style: italic;
    color: darkgoldenrod;
    font-size: 25px;
    margin-left: 8px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    display: block;
    padding: 10px 20px;
    background-color: #000000;
    color: #EDE6D4;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    background-color: darkgoldenrod;
    color: #000000;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #000000;
    cursor: pointer;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    height: 100%;
    width: 300%;
    transition: transform 1s ease;
}

.carousel-slide {
    width: 33.333%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.slide-1 {
    background-image: url('images/hero-bg-desktop-01.jpg');
}

.slide-2 {
    background-image: url('images/hero-bg-desktop-02.jpg');
}

.slide-3 {
    background-image: url('images/hero-bg-desktop-03.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    color: #EDE6D4;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    text-align: center;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: darkgoldenrod;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: darkgoldenrod;
    color: #000000;
}

.btn-primary:hover {
    background-color: darkgoldenrod;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: #EDE6D4;
    border: 2px darkgoldenrod;
}

.btn-secondary:hover {
    background-color: darkgoldenrod;
    color: #000000;
    transform: translateY(-3px);
}

.carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(237, 230, 212, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: darkgoldenrod;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 40px;
    color: #000000;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: darkgoldenrod;
    margin: 15px auto;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background-color: #ffebb0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #EDE6D4;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: darkgoldenrod;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #000000;
}

.service-card p {
    margin-bottom: 20px;
    color: #333;
}

.read-more {
    color: darkgoldenrod;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Portfolio Preview */
.portfolio-preview {
    padding: 80px 0;
    background-color: #EDE6D4;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.portfolio-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: darkgoldenrod;
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.portfolio-overlay a {
    color: #EDE6D4;
    text-decoration: none;
    border: 2px darkgoldenrod;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.portfolio-overlay a:hover {
    background-color: darkgoldenrod;
    color: #000000;
}

.center-button {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #ffebb0;
}

.testimonial {
    background-color: #EDE6D4;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #000000;
}

.testimonial-author {
    font-weight: 600;
    color: darkgoldenrod;
}

/* Footer */
footer {
    background-color: #000000;
    color: #EDE6D4;
    padding: 15px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

footer p {
    margin: 0;
    font-size: 14px;
    flex: 1;
    min-width: 300px;
    text-align: center;
}

footer a {
    color: darkgoldenrod;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #EDE6D4;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex: 1;
}

.social-icons a {
    display: inline-block;
    color: #EDE6D4;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: darkgoldenrod;
}

/* Page Header */
.page-header {
    padding: 40px 0;
    background-color: #ffebb0;
    text-align: center;
}

.page-header .section-title {
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #000000;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background-color: #EDE6D4;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h3 {
    color: darkgoldenrod;
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: darkgoldenrod;
    color: #000000;
    padding: 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 5px;
}

.expertise-list {
    margin: 20px 0;
}

.expertise-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.expertise-item i {
    color: darkgoldenrod;
    margin-right: 10px;
}

.team-section {
    padding: 80px 0;
    background-color: #ffebb0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: #EDE6D4;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px darkgoldenrod;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: #000000;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.team-member .position {
    color: darkgoldenrod;
    font-weight: 600;
    margin-bottom: 15px;
}

.clients-section {
    padding: 80px 0;
    background-color: #EDE6D4;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #000000;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.client-logo {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
}

/* Services Page Styles */
.services-content {
    padding: 80px 0;
    background-color: #EDE6D4;
}

.service-category {
    margin-bottom: 60px;
}

.service-category h2 {
    color: #a67c00;
    font-size: 1.6rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-detail {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-detail h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-features {
    list-style-type: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #EDE6D4;
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: "•";
    color: darkgoldenrod;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.process-section {
    padding: 80px 0;
    background-color: #ffbb0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.process-step {
    background-color: #EDE6D4;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.process-step:not(:last-child):after {
    content: "→";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: darkgoldenrod;
    font-size: 1.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: darkgoldenrod;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
}

.process-step h3 {
    margin-bottom: 10px;
    color: #000000;
    font-size: 1.2rem;
}

.cta-section {
    padding: 80px 0;
    background-color: #000000;
    color: #EDE6D4;
    text-align: center;
}

.cta-section h2 {
    color: darkgoldenrod;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* Portfolio Page Styles */
.portfolio-nav {
    padding: 30px 0;
    background-color: #EDE6D4;
    border-bottom: 1px solid #ffebb0;
}

.portfolio-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.category-btn {
    padding: 12px 25px;
    background-color: #000000;
    color: #EDE6D4;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-btn:hover, .category-btn.active {
    background-color: darkgoldenrod;
    color: #000000;
}

.portfolio-section {
    padding: 80px 0;
    background-color: #EDE6D4;
	outline-color: #000000
}

.portfolio-section.alt-bg {
    background-color: #ffebb0;
	
}

.portfolio-category-title {
    color: darkgoldenrod;
    font-size: 1.6rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.portfolio-category-desc {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.portfolio-subcategories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.subcategory {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.subcategory h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.subcategory p {
    margin-bottom: 20px;
}

.portfolio-highlights {
    margin-top: 60px;
}

.portfolio-highlights h3 {
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.4rem;
}

.prepress-showcase {
    margin-top: 40px;
}

.prepress-intro {
    background-color: #EDE6D4;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.prepress-examples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.prepress-example {
    background-color: #EDE6D4;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.prepress-example img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.example-details {
    padding: 20px;
}

.example-details h4 {
    color: #000000;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.prepress-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.prepress-image {
    background-color: #EDE6D4;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.prepress-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.prepress-image p {
    font-size: 0.9rem;
    color: #000000;
}

.custom-projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.custom-project {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.custom-project img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-details {
    padding: 25px;
}

.project-details h3 {
    color: #000000;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.project-details p {
    margin-bottom: 15px;
}

.project-details ul {
    list-style-type: none;
}

.project-details li {
    padding: 5px 0;
    border-bottom: 1px solid #EDE6D4;
    position: relative;
    padding-left: 20px;
}

.project-details li:before {
    content: "•";
    color: darkgoldenrod;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
    background-color: #EDE6D4;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info h3 {
    color: #000000;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.contact-item i {
    color: darkgoldenrod;
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-item h4 {
    color: #000000;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.social-links {
    margin-top: 40px;
}

.social-links h4 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-form-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    color: #000000;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #000000;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ffebb0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #9c9d8d;
    font-size: 0.8rem;
}

.map-section {
    padding: 80px 0;
    background-color: #ffebb0;
}

.map-section h3 {
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.4rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-section {
    padding: 80px 0;
    background-color: #EDE6D4;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ffebb0;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slide-1 {
        background-image: url('images/hero-bg-tablet-01.jpg');
        background-size: 100% 100%;
    }
    
    .slide-2 {
        background-image: url('images/hero-bg-tablet-02.jpg');
        background-size: 100% 100%;
    }
    
    .slide-3 {
        background-image: url('images/hero-bg-tablet-03.jpg');
        background-size: 100% 100%;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .hero-content {
        padding: 30px;
        max-width: 90%;
    }
    
    .portfolio-item {
        height: 250px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-details-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .process-step:nth-child(3):after {
        display: none;
    }
    
    .portfolio-subcategories {
        grid-template-columns: 1fr;
    }
    
    .prepress-examples {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .prepress-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .custom-projects {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .logo {
        width: auto;
        height: 28px;
    }
}


@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #EDE6D4;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        text-align: center;
        padding: 20px;
        max-width: 95%;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    footer .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    footer p {
        min-width: auto;
        margin-bottom: 10px;
    }
    
    .slide-1 {
        background-image: url('images/hero-bg-mobile-01.jpg');
        background-size: 100% 100%;
    }
    
    .slide-2 {
        background-image: url('images/hero-bg-mobile-02.jpg');
        background-size: 100% 100%;
    }
    
    .slide-3 {
        background-image: url('images/hero-bg-mobile-03.jpg');
        background-size: 100% 100%;
    }
    
    .portfolio-item {
        height: 220px;
    }
    
    .service-card, 
    .testimonial {
        padding: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step:after {
        display: none !important;
    }
    
    .prepress-examples {
        grid-template-columns: 1fr;
    }
    
    .prepress-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .custom-projects {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .tagline {
        font-size: 20px;
    }
    
    .logo {
        width: auto;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 16px;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .tagline {
        font-size: 15px;
        margin-left: 4px;
    }
    
    .logo {
        width: auto;
        height: 25px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .service-card,
    .testimonial {
        padding: 15px;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .portfolio-overlay h3 {
        font-size: 1.2rem;
    }
    
    footer p {
        font-size: 12px;
        line-height: 1.4;
    }
	
	.followus-socials{
		background-color: black;
	}
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icons a {
        font-size: 16px;
    }
    
    .portfolio-item {
        height: 200px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .prepress-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        right: -10px;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
    
    .experience-badge .label {
        font-size: 0.7rem;
    }
    
    .portfolio-categories {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 360px) {
    .logo-text h1 {
        font-size: 14px;
    }
    
    .tagline {
        font-size: 11px;
    }
    
    .logo {
        width: auto;
        height: 22px;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    footer p {
        font-size: 11px;
    }
}
/* Additional Styles for Service Pages */

/* Page Intro */
.page-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Process Showcase */
.process-showcase {
    margin-top: 40px;
    padding: 30px;
    background-color: #EDE6D4;
    border-radius: 10px;
}

.process-showcase h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.process-step {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.process-step .step-number {
    width: 35px;
    height: 35px;
    background-color: darkgoldenrod;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
}

.process-step h4 {
    margin-bottom: 10px;
    color: #000000;
    font-size: 1rem;
}

.process-step p {
    font-size: 0.9rem;
    color: #333;
}

/* Portfolio Showcase */
.portfolio-showcase {
    margin-top: 40px;
}

.portfolio-showcase h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
}

/* Feature Showcase */
.feature-showcase {
    margin-top: 40px;
}

.feature-showcase h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    background-color: #EDE6D4;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: darkgoldenrod;
    margin-bottom: 15px;
}

.feature-item h4 {
    margin-bottom: 10px;
    color: #000000;
}

/* Materials Showcase */
.materials-showcase {
    margin-top: 40px;
}

.materials-showcase h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.material-item {
    background-color: #EDE6D4;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.material-item h4 {
    color: darkgoldenrod;
    margin-bottom: 15px;
    border-bottom: 1px solid #ffebb0;
    padding-bottom: 10px;
}

.material-item ul {
    list-style-type: none;
}

.material-item li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(156, 157, 141, 0.3);
    position: relative;
    padding-left: 15px;
}

.material-item li:before {
    content: "•";
    color: darkgoldenrod;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Technical Specifications */
.technical-specs {
    margin-top: 40px;
    padding: 30px;
    background-color: #EDE6D4;
    border-radius: 10px;
}

.technical-specs h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.spec-item {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.spec-item h4 {
    color: darkgoldenrod;
    margin-bottom: 10px;
}

/* Color Process */
.color-process {
    margin-top: 40px;
}

.color-process h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
}

/* Preflight Checklist */
.preflight-checklist {
    margin-top: 40px;
}

.preflight-checklist h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.checklist-item {
    background-color: #EDE6D4;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.checklist-item h4 {
    color: darkgoldenrod;
    margin-bottom: 15px;
    border-bottom: 1px solid #ffebb0;
    padding-bottom: 10px;
}

.checklist-item ul {
    list-style-type: none;
}

.checklist-item li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(156, 157, 141, 0.3);
    position: relative;
    padding-left: 15px;
}

.checklist-item li:before {
    content: "•";
    color: darkgoldenrod;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Proofing Options */
.proofing-types {
    margin-top: 40px;
}

.proofing-types h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
}

.proofing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.proofing-item {
    background-color: #EDE6D4;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.proofing-item h4 {
    color: darkgoldenrod;
    margin-bottom: 15px;
    border-bottom: 1px solid #ffebb0;
    padding-bottom: 10px;
}

.proofing-item p {
    margin-bottom: 15px;
    font-style: italic;
}

.proofing-item ul {
    list-style-type: none;
}

.proofing-item li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(156, 157, 141, 0.3);
    position: relative;
    padding-left: 15px;
}

.proofing-item li:before {
    content: "•";
    color: darkgoldenrod;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Consultation Options */
.consultation-options {
    margin-top: 40px;
}

.consultation-options h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.option-item {
    background-color: #EDE6D4;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.option-item h4 {
    color: darkgoldenrod;
    margin-bottom: 15px;
    border-bottom: 1px solid #ffebb0;
    padding-bottom: 10px;
}

.option-item p {
    margin-bottom: 15px;
    font-style: italic;
}

.option-item ul {
    list-style-type: none;
}

.option-item li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(156, 157, 141, 0.3);
    position: relative;
    padding-left: 15px;
}

.option-item li:before {
    content: "•";
    color: darkgoldenrod;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Printing Techniques */
.printing-techniques {
    margin-top: 40px;
}

.printing-techniques h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.technique-item {
    background-color: #EDE6D4;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.technique-item h4 {
    color: darkgoldenrod;
    margin-bottom: 15px;
    border-bottom: 1px solid #ffebb0;
    padding-bottom: 10px;
}

.technique-item p {
    margin-bottom: 15px;
    font-style: italic;
}

.technique-item ul {
    list-style-type: none;
}

.technique-item li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(156, 157, 141, 0.3);
    position: relative;
    padding-left: 15px;
}

.technique-item li:before {
    content: "•";
    color: darkgoldenrod;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Environmental Applications */
.environmental-applications {
    margin-top: 40px;
}

.environmental-applications h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.application-item {
    background-color: #EDE6D4;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.application-item h4 {
    color: darkgoldenrod;
    margin-bottom: 15px;
    border-bottom: 1px solid #ffebb0;
    padding-bottom: 10px;
}

.application-item ul {
    list-style-type: none;
}

.application-item li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(156, 157, 141, 0.3);
    position: relative;
    padding-left: 15px;
}

.application-item li:before {
    content: "•";
    color: darkgoldenrod;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Edition Types */
.edition-types {
    margin-top: 40px;
}

.edition-types h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
}

.edition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.edition-item {
    background-color: #EDE6D4;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.edition-item h4 {
    color: darkgoldenrod;
    margin-bottom: 15px;
    border-bottom: 1px solid #ffebb0;
    padding-bottom: 10px;
}

.edition-item p {
    margin-bottom: 15px;
    font-style: italic;
}

.edition-item ul {
    list-style-type: none;
}

.edition-item li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(156, 157, 141, 0.3);
    position: relative;
    padding-left: 15px;
}

.edition-item li:before {
    content: "•";
    color: darkgoldenrod;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Custom Project Form */
.custom-project-section {
    padding: 80px 0;
    background-color: #ffebb0;
}

.custom-project-section .section-title {
    color: #000000;
}

.custom-project-form {
    background-color: #EDE6D4;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Responsive Design for Service Pages */
@media (max-width: 1024px) {
    .process-steps,
    .feature-grid,
    .specs-grid,
    .checklist-grid,
    .proofing-grid,
    .options-grid,
    .techniques-grid,
    .applications-grid,
    .edition-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .process-steps,
    .feature-grid,
    .specs-grid,
    .checklist-grid,
    .proofing-grid,
    .options-grid,
    .techniques-grid,
    .applications-grid,
    .edition-grid,
    .materials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step:after {
        display: none !important;
    }
    
    .custom-project-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .service-details-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        padding: 15px;
    }
    
    .feature-item,
    .spec-item,
    .checklist-item,
    .proofing-item,
    .option-item,
    .technique-item,
    .application-item,
    .edition-item {
        padding: 20px;
    }
}
/* Breadcrumb Navigation */
.breadcrumb {
    padding: 20px 0;
    background-color: #EDE6D4;
    border-bottom: 1px solid #ffebb0;
}

.breadcrumb nav {
    font-size: 0.9rem;
}

.breadcrumb a {
    color: darkgoldenrod;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #000000;
}

/* Service Overview */
.service-overview {
    padding: 80px 0;
    background-color: #EDE6D4;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.overview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Service Details */
.service-details {
    padding: 80px 0;
    background-color: #ffebb0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #EDE6D4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: darkgoldenrod;
    margin-bottom: 20px;
    text-align: center;
}

.service-card h3 {
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
}

.service-card p {
    margin-bottom: 20px;
    text-align: center;
}

.service-card ul {
    list-style-type: none;
}

.service-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(156, 157, 141, 0.3);
    position: relative;
    padding-left: 20px;
}

.service-card li:before {
    content: "•";
    color: darkgoldenrod;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: #EDE6D4;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: darkgoldenrod;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: #000000;
    margin-bottom: 15px;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background-color: #ffebb0;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #000000;
    font-size: 1.1rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: darkgoldenrod;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.portfolio-overlay p {
    color: #EDE6D4;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.view-project {
    background-color: darkgoldenrod;
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.view-project:hover {
    background-color: darkgoldenrod;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    position: relative;
    background-color: #EDE6D4;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    animation: modalFade 0.3s;
}

@keyframes modalFade {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #000000;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: darkgoldenrod;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.modal-body img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-details h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.image-details p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-type, .project-services {
    margin-bottom: 20px;
}

.project-type h4, .project-services h4 {
    color: darkgoldenrod;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.project-services ul {
    list-style-type: none;
}

.project-services li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(156, 157, 141, 0.3);
    position: relative;
    padding-left: 20px;
}

.project-services li:before {
    content: "•";
    color: darkgoldenrod;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item {
        height: 200px;
    }
    
    .modal-content {
        margin: 5% auto;
        padding: 10px;
    }
    
    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
}