/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    background-color: #0a0a0a;
    color: #e5e5e5;
    overflow-x: hidden;
}

.gradient-text {
    background: linear-gradient(to right, #ff3333, #aa0000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-mask-red {
    background-color: #d10000;
}

.text-mask-red {
    color: #d10000;
}

.hover-red:hover {
    color: #ff3333;
    transition: 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #d10000 0%, #8a0000 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(209, 0, 0, 0.4);
    border: 1px solid #ff4d4d;
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #d10000;
}

.btn-outline:hover {
    background: rgba(209, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(209, 0, 0, 0.2);
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #222;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(209, 0, 0, 0.15);
    border-color: #d10000;
}

/* Service Image Overlay */
.service-img-container {
    overflow: hidden;
    position: relative;
    border-radius: 8px 8px 0 0;
}

.service-img-container img {
    transition: transform 0.5s ease;
}

.card-hover:hover .service-img-container img {
    transform: scale(1.1);
}

/* Custom Image Placeholder hints */
.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #111, #222);
    border: 1px dashed #444;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    padding: 20px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #800000;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d10000;
}

/* Marquee Animation */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 8rem;
    /* Additional gap */
    animation: marquee 20s linear infinite;
    padding-left: 8rem;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Custom Hero Animations */
.hero-animate-1 {
    animation: fadeSlideUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-animate-2 {
    animation: fadeSlideUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-animate-3 {
    animation: fadeSlideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-animate-4 {
    animation: fadeSlideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.scroll-hidden {
    opacity: 0;
    visibility: hidden;
}

.scroll-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.scroll-slide-right {
    animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
}

/* General Image Hover Animation (For all images) */
img {
    transition: transform 0.4s ease-in-out;
}

@media (hover: hover) {
    img:hover {
        transform: scale(1.05);
    }
}

/* For touch devices (Mobile View) - toggle class via JS */
img.zoomed {
    transform: scale(1.05);
}