/* =================================== */
/* Preloader Styles           */
/* =================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #ecebeb, #949393);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* =================================== */
/* Logo & Common             */
/* =================================== */

.logo_container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-col {
    flex: 1;
    margin: 20px;
    min-width: 250px;
}

.footer-col#homelogo-col {
    display: flex;
    align-items: center;
}

.homelogo {
    width: 13rem;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.homelogo:hover {
    transform: scale(1.2);
}

a {
    text-decoration: none;
}


/* =================================== */
/* Hero Section with Blur Shield       */
/* =================================== */

.hero-section {
    position: relative;
    min-height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

/* --- Background Slider with Blur Shield --- */
.background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: crossfade 21s infinite;
    /*filter: blur(1.5px); /* Blur effect on the background images */
    transform: scale(1.05); /* Slight zoom to hide blur edges */
}

/* Blur shield overlay */
.blur-shield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0); /* Semi-transparent dark overlay */
    /*backdrop-filter: blur(1px); /* Additional blur effect */
    z-index: 1;
}

/* Animation delays for each slide */
.slide:nth-child(1) {
    animation-delay: 0s;
}
.slide:nth-child(2) {
    animation-delay: 7s;
}
.slide:nth-child(3) {
    animation-delay: 14s;
}

@keyframes crossfade {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    33.33% {
        opacity: 1;
    }
    43.33% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* --- Overlay for readability --- */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.3), rgba(0, 0, 0, 0.3));*/
    z-index: 2; /* Above blur shield */
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3; /* Above overlay */
    opacity: 1;
}

.container {
    position: relative;
    z-index: 4; /* Above particles */
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 20px;
}
/* --- Left Content (Text & CTA) --- */
.hero-content {
    animation: fadeInSlideUp 1s ease-out forwards;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.8;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 500px;
    color: rgb(255, 252, 252);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-image: linear-gradient(to right, #00A9FF, #A020F0);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(160, 32, 240, 0.3);
}

.arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 1rem;
}

/* --- Right Content (Logo) --- */
.logo_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.homelogo {
    max-width: 80%;
    height: auto;
    animation: fadeIn 1s 0.2s ease-out forwards;
    opacity: 0;
}

/* --- Keyframe Animations --- */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    h1 {
        font-size: 2.8rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
    }
    .logo_container {
        order: 2;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    .hero-section {
        padding: 40px 20px;
    }
}

@media only screen and (max-width: 768px) {
    #preloader {
        display: none !important;
    }
    #preloader.preloader-hidden {
        display: none !important;
    }
   
}
/* =================================== */
/* Why Choose Us Section        */
/* =================================== */

:root {
    --wcu-primary-gradient: linear-gradient(to right, #2020ee, red);
    --wcu-secondary-gradient: linear-gradient(to right, #4f4ffa, red);
    --wcu-text-gradient: linear-gradient(to right, #8b8bff, red);
}

.why-choose-us {
    padding: 3rem 5%;
    position: relative;
    z-index: 5;
    color: #000;
    overflow: hidden;
}

.wcu-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

/* --- Left Column --- */
.wcu-left-column {
    position: relative;
    order: 2;
}

.experience-badge {
    position: absolute;
    top: 75%;
    left: 3.538rem;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
    padding: 1rem;
    border-radius: 8px;
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
}

.experience-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    background: var(--wcu-primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 60px;
    text-align: center;
}

.experience-text {
    font-size: 0.5rem;
    opacity: 0.8;
    margin: 0;
    background: var(--wcu-secondary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.5rem;
    margin-left: 2rem;
    min-height: 300px;
    perspective: 1000px;
}

.image-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease-out;
}

.gallery-img-1 {
    grid-area: 1 / 1 / 3 / 5;
    transition-delay: 0.2s;
}

.gallery-img-2 {
    grid-area: 2 / 2 / 5 / 6;
    transition-delay: 0.4s;
}

/* --- Right Column --- */
.wcu-right-column {
    order: 1;
    transform: translateX(-30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.wcu-right-column h3 {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 1rem;
    transform: translateY(10px);
    transition: all 0.4s ease 0.2s;
}

.wcu-right-column h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    background: var(--wcu-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(10px);
    transition: all 0.4s ease 0.3s;
}

.wcu-right-column p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transform: translateY(10px);
    transition: all 0.4s ease 0.4s;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0;
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    font-weight: bold;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.features-list li::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #000;
    margin-right: 0.5rem;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.features-list li:nth-child(1) { transition-delay: 0.5s; }
.features-list li:nth-child(2) { transition-delay: 0.6s; }
.features-list li:nth-child(3) { transition-delay: 0.7s; }
.features-list li:nth-child(4) { transition-delay: 0.8s; }

/* --- Animation & Hover --- */
.hidden { opacity: 0; }
.visible { opacity: 1; }

.visible .experience-badge {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.visible .image-gallery img {
    transform: translateY(0);
    opacity: 1;
}

.visible .wcu-right-column {
    transform: translateX(0);
    opacity: 1;
}

.visible .wcu-right-column h3,
.visible .wcu-right-column h2,
.visible .wcu-right-column p {
    transform: translateY(0);
}

.visible .features-list li {
    transform: translateX(0);
    opacity: 1;
}

.visible .features-list li::before {
    transform: scale(1);
}

.experience-badge:hover .experience-number {
    transform: none;
}

.features-list li:hover {
    color: #2020ee;
    transform: translateX(5px) !important;
}

.features-list li:hover::before {
    background: var(--wcu-primary-gradient);
    transform: scale(1.2);
}

.image-gallery img:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

/* --- Responsive --- */
@media (min-width: 768px) {
    .why-choose-us {
        padding: 4rem 5%;
    }
    .wcu-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    .wcu-left-column {
        order: 1;
    }
    .wcu-right-column {
        order: 2;
    }
    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 2rem;
    }
    .experience-number {
        font-size: 3rem;
        min-width: 80px;
    }
    .experience-text {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .why-choose-us {
        padding: 6rem 6% 0 6%;
    }
}


/* =================================== */
/* Services Section           */
/* =================================== */

.container-services {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

.services-title {
    font-size: 2.8rem;
    font-weight: bold;
    background: linear-gradient(to right, #0059ff, #fc0505);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.services-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 20px;
}

.service-box {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    color: white;
    height: 240px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.service-box-01 { background-image: url('home_img/home_3D Letter Signboard.webp'); animation: fadeInUp 0.6s 0.1s forwards; }
.service-box-02 { background-image: url('home_img/home_Vinyl Print & Cut.webp'); animation: fadeInUp 0.6s 0.3s forwards; }
.service-box-03 { background-image: url('home_img/home_Engraving & Etching.webp'); animation: fadeInUp 0.6s 0.5s forwards; }
.service-box-04 { background-image: url('home_img/home_Safety Signboards.webp'); animation: fadeInUp 0.6s 0.7s forwards; }
.service-box-05 { background-image: url('home_img/home_PVC_Banner.webp'); animation: fadeInUp 0.6s 0.7s forwards; }
.service-box-06 { background-image: url('home_img/home_Digital LED Screens.webp'); animation: fadeInUp 0.6s 0.7s forwards; }



.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 165, 197, 0.6), rgba(228, 54, 112, 0.6));
    z-index: 1;
}

.service-content {
    position: relative;
    z-index: 2;
    text-align: left;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    opacity: 0;
    transition-delay: 0.2s;
}

.service-box.animate-in .service-content {
    transform: translateY(0);
    opacity: 1;
}

.service-number {
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0.8;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 5px 0;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.4;
}

.service-box:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service-box:hover .service-overlay {
    background: linear-gradient(to bottom right, rgba(0, 165, 197, 0.8), rgba(228, 54, 112, 0.8));
}

.explore-more-container {
    text-align: center;
    margin-top: 50px;
}

.explore-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, #4A90E2, #D0028D);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
    position: relative;
    overflow: hidden;
}

.explore-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.6);
}

.explore-more-btn:active {
    transform: translateY(1px);
}

.explore-more-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.3s;
}

.explore-more-btn:hover::after {
    left: 110%;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-box {
        height: 200px;
        animation-delay: 0s !important;
        animation-duration: 0.5s !important;
    }
    .services-title {
        font-size: 2rem;
    }
    .services-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    .explore-more-container {
        margin-top: 30px;
    }
    .explore-more-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-card-number {
        top: 15px;
        right: 15px;
        font-size: 1.2rem;
    }
    .service-card-title {
        font-size: 1.2rem;
    }
}


/* =================================== */
/* Trusted Clients Section      */
/* =================================== */

.containerT {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

#trusted-clients-section {
    padding: 80px 0;
    color: black;
    overflow: hidden;
    background-image: linear-gradient(to right, rgba(0, 165, 197, 0.5), rgba(66, 149, 182, 0.5), rgba(112, 122, 161, 0.5), rgba(155, 61, 127, 0.5));
}

.clients-heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    margin: 4rem;
    background: linear-gradient(to right, rgb(44, 44, 219), red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.client-logos-container {
    position: relative;
    display: flex;
    align-items: center;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
}

.client-logos-slider {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: scroll 40s linear infinite;
}

.client-logos-container:hover .client-logos-slider {
    animation-play-state: paused;
}

.client-logos-slider img {
    height: 7rem;
    max-width: 15rem;
    width: auto;
    opacity: 0.85;
    transition: all 0.3s ease;
    object-fit: contain;
}

.client-logos-slider img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 992px) {
    .client-logos-slider {
        gap: 50px;
    }
    .client-logos-slider img {
        height: 5rem;
        max-width: 12rem;
    }
}

@media (max-width: 768px) {
    #trusted-clients-section {
        padding: 50px 0;
    }
    .clients-heading {
        font-size: 2.2rem;
        margin: 3rem;
    }
    .client-logos-slider {
        gap: 40px;
    }
    .client-logos-slider img {
        height: 4rem;
        max-width: 9rem;
    }
}

@media (max-width: 576px) {
    .client-logos-slider {
        gap: 30px;
    }
    .client-logos-slider img {
        height: 3rem;
        max-width: 7rem;
    }
}


/* =================================== */
/* Location Section           */
/* =================================== */

.location-section {
    background-color: #f2f2f2;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.location-section-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.location-section-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.location-section-map {
    flex: 1 1 350px;
}

.location-section-map iframe {
    width: 70%;
    height: 20rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.location-section-content {
    flex: 1 1 400px;
}

.location-section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: bold;
    background: linear-gradient(98deg, rgb(110 110 219), red);
    -webkit-background-clip: text;
    color: transparent;
}

.location-section-description {
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

.location-section-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-section-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #222;
}

.location-section-item i {
    font-size: 1.2rem;
    margin-right: 10px;
    color: #00A5C5;
}

@media (max-width: 768px) {
    .location-section-container {
        flex-direction: column;
    }
    .location-section-content {
        order: 1;
    }
    .location-section-title {
        font-size: 2rem;
    }
    .location-section-map {
        order: 2;
        width: 100%;
    }
    .location-section-map iframe {
        width: 100%;
        height: 20rem;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
}


/* =================================== */
/* Request (CTA) Section        */
/* =================================== */

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 100px 20px 100px 20px;
    max-width: 960px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 1rem auto;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    border-radius: 100px 20px 100px 20px;
    background: linear-gradient(to right, #6dd5ed, #f06292);
}

.cta-content-wrapper {
    flex: 1;
    min-width: 50%;
}

.cta-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00A9C6;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-headline .highlight-text {
    color: #C33764;
}

.cta-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 450px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-image: linear-gradient(90deg, #13a5c5 0%, #a448b2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: rotate(360deg);
}

.cta-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        margin: 1rem 1.5rem;
        width: auto;
    }
    .cta-headline {
        font-size: 2rem;
    }
    .cta-description {
        margin-left: auto;
        margin-right: auto;
    }
    .cta-content-wrapper {
        order: 2;
    }
    .cta-image-wrapper {
        order: 1;
        margin-bottom: 1.5rem;
        width: 100%;
    }
}