       
        /* Contact Page Specific Styles */
        .contact-hero {
            padding: 5rem 6rem;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a3a 100%);
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 3rem;
            margin-top: 20px;
        }

        .contact-hero .left {
            flex: 1;
        }

        .contact-hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .contact-hero .highlight {
            color: var(--primary-color);
        }

        .contact-hero p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
            max-width: 600px;
            line-height: 1.7;
        }

        .contact-hero .right {
            flex: 1;
            position: relative;
        }

        .contact-hero-img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }


/* ------------------------------------------------ */


/* Work Gallery Section */
.work-gallery {
    padding: 5rem 3rem;
    background: var(--light-bg);
    overflow: hidden;
}

.work-gallery .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.work-gallery .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.work-gallery .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-container {
    position: relative;
    margin: 0 auto;
    max-width: 1400px;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding-top: 1rem;
    padding: 1rem;
    padding-bottom: 1rem;
    cursor: grab;
}

.gallery-track:active {
    cursor: grabbing;
}

.gallery-category {
    min-width: 100%;
    padding: 0 1rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.category-title i {
    font-size: 1.3rem;
}

.gallery-items {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.gallery-items::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.gallery-item {
    flex: 0 0 400px;
        /* outline: 1px solid var(--primary-color); */

    scroll-snap-align: start;
}

.item-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16/9;
}

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

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.item-overlay h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.item-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    text-align: center;
}

.view-btn {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: white;
    color: var(--primary-color);
}

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

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

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.category-dots {
    display: flex;
    gap: 0.8rem;
}

.category-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Auto-scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 2rem));
    }
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 250px;
    }

    .category-title {
        font-size: 1.3rem;
    }
}


/* ------------------------------------------------ */


/* Client Inquiry Section */
.client-inquiry {
    padding: 5rem 2rem;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.client-inquiry .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.inquiry-content,
.cta-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.inquiry-content:hover,
.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 60, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.section-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.client-inquiry h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
}

.client-inquiry p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.inquiry-form {
    margin-top: 2rem;
}

.input-group {
    position: relative;
    display: flex;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 2;
}

.inquiry-form input {
    flex: 1;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px 0 0 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.inquiry-form input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 60, 60, 0.2);
}

.inquiry-form button,
.cta-box .cta-btn {
    padding: 1rem 1.5rem;
    border: none;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.inquiry-form button {
    border-radius: 0 6px 6px 0;
}

.cta-box .cta-btn {
    border-radius: 6px;
    width: 100%;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}

.inquiry-form button:hover,
.cta-box .cta-btn:hover {
    background: var(--dark-bg);
    transform: translateY(-2px);
    color: var(--primary-color);

}

.inquiry-form button i,
.cta-box .cta-btn i {
    transition: transform 0.3s ease;
}

.inquiry-form button:hover i,
.cta-box .cta-btn:hover i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .client-inquiry {
        padding: 3rem 1.5rem;
    }

    .inquiry-content,
    .cta-box {
        padding: 2rem 1.5rem;
    }

    .input-group {
        flex-direction: column;
    }

    .inquiry-form input {
        border-radius: 6px;
        margin-bottom: 0.5rem;
        padding-left: 2.5rem;
    }

    .inquiry-form button {
        border-radius: 6px;
        width: 100%;
    }
}


.trusted-by {
    padding: 5rem 2rem;
    text-align: center;
}

.client-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-item img {
    height: 40px;
    width: auto;
}

.portfolio-results {
    padding: 5rem 2rem;
    background: var(--dark-bg);
    color: white;
    text-align: center;
}

.portfolio-results h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}


.portfolio-contact {
    padding: 5rem 2rem;
    background: white;
}

.portfolio-contact .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}


/* Responsive */
@media (max-width: 768px) {

    .portfolio-item,
    .portfolio-item.reverse {
        flex-direction: column;
    }

    .project-info,
    .project-image {
        width: 100%;
    }
}










.gallery-category {
    margin-bottom: 5rem;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}




/*  */


/* Clients Section */
.clients-section {
    padding: 5rem 6rem;
    background-color: var(--light-bg);
    text-align: center;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-subtitle {
    display: block;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.section-description {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logo {
    height: 60px;
    filter: grayscale(100%) contrast(40%);
    opacity: 0.7;
    transition: all 0.3s ease;
    object-fit: contain;
}

.client-logo:hover {
    filter: grayscale(0) contrast(100%);
    opacity: 1;
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    padding: 5rem 6rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e63535 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    background-color: white;
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background-color: var(--dark-bg);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Methods */
.contact-methods {
    padding: 5rem 6rem;
    background-color: var(--light-bg);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.method-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

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

.method-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 60, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.method-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.method-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.method-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.method-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.method-link:hover {
    color: #e63535;
    gap: 0.8rem;
}

/* ------------------- */
/* ✅ Responsive Media Queries */
/* ------------------- */

@media (max-width: 768px) {
    .clients-section,
    .cta-section,
    .contact-methods {
        padding: 3rem 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description,
    .cta-text {
        font-size: 1rem;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    .method-card h3 {
        font-size: 1.3rem;
    }

    .method-card p {
        font-size: 0.95rem;
    }

    .method-icon {
        width: 60px;
        height: 60px;
    }

    .method-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }

    .cta-heading {
        font-size: 1.6rem;
    }

    .cta-text,
    .section-description {
        font-size: 0.95rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .method-card {
        padding: 1.5rem 1rem;
    }

    .method-card h3 {
        font-size: 1.2rem;
    }

    .method-card p {
        font-size: 0.9rem;
    }

    .method-icon {
        width: 50px;
        height: 50px;
    }

    .method-icon i {
        font-size: 1.3rem;
    }
}



        .contact-hero .cta-group {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
        }

        .contact-hero .cta {
            color: #fff;
            padding: 0.8rem 1.8rem;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            border-radius: 4px;
            background-color: var(--primary-color);
            transition: all 0.3s ease-in-out;
            transform: scale(1);
            text-decoration: none;
        }

        .contact-hero .cta:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            background-color: var(--primary-hover-color);
            color: var(--primary-color);
            font-weight: 400;
            outline: 1.5px solid var(--primary-color);
        }

        .contact-hero .cta.secondary {
            background-color: transparent;
            color: var(--primary-color);
            border: 1.5px solid var(--primary-color);
        }

        .contact-hero .cta.secondary:hover {
            background-color: var(--primary-color);
            color: #fff;
            font-weight: 400;
            outline: none;
        }
