body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #0b0b0b;
    color: #fff;
}

/* NAVBAR */
.navbar {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
}

/* HERO */
.hero {
    height: 95vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
    url('https://images.unsplash.com/photo-1558002038-1055907df827?w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
}

/* BUTTON */
.btn-accent {
    background: #E84C3D;
    border: none;
}

.btn-accent:hover {
    background: #c0392b;
}

/* SECTION */
.section {
    padding: 80px 0;
}

/* NEW SOLUTION CARDS */
.solution-card-new {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.solution-card-new img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.4s;
}

/* OVERLAY TEXT */
.solution-card-new .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    font-weight: 600;
    text-align: center;
}

/* HOVER EFFECT */
.solution-card-new:hover img {
    transform: scale(1.1);
}

/* CONTACT */
.contact-section {
    background: #f5f5f5;
    color: #111;
    padding: 80px 0;
}

.contact-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
}

.contact-box i {
    background: #6c8cd5;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    font-size: 25px;
    margin-bottom: 15px;
}

.contact-box:hover {
    transform: translateY(-5px);
}

/* MAP */
.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* FOOTER */
.footer {
    background: #000;
    color: #ccc;
    padding: 60px 0 20px;
}

/* TEXT */
.footer-text {
    font-size: 14px;
    line-height: 1.6;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #E84C3D;
}

/* HEADINGS */
.footer h5 {
    margin-bottom: 15px;
    color: #fff;
}

/* BOTTOM */
.footer-bottom {
    font-size: 13px;
    opacity: 0.7;
}

/* WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    font-size: 24px;
    padding: 12px 15px;
    border-radius: 50%;
    z-index: 1000;
}

/* BRAND SLIDER */
.brand-slider {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.brand-track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: scrollBrands 25s linear infinite;
}

/* LOGOS */
.brand-track img {
    height: 55px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.brand-track img:hover {
    transform: scale(1.15);
}

/* SMOOTH LOOP */
@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* CLIENT SLIDER */
.client-slider {
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.client-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scrollClients 20s linear infinite;
}

/* COLORFUL LOGOS */
.client-track img {
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.client-track img:hover {
    transform: scale(1.15);
}

/* ANIMATION */
@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* FADE EDGES (PREMIUM LOOK) */
.client-slider::before,
.client-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.client-slider::before {
    left: 0;
    background: linear-gradient(to right, #000, transparent);
}

.client-slider::after {
    right: 0;
    background: linear-gradient(to left, #000, transparent);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 12px;
}

/* HERO VIDEO */
.hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* VIDEO */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* TEXT */
.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: bold;
}


/* ABOUT CARD */
.about-card {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #222;
    transition: 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* LIST STYLE */
#about ul li {
    margin-bottom: 10px;
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: 0.8s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: 0.8s ease;
}

.show {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* SOCIAL ICONS */
.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 10px;
    text-align: center;
    background: #111;
    color: #fff;
    border-radius: 50%;
    transition: 0.3s;
    font-size: 16px;
}

/* HOVER COLORS (BRAND COLORS) */
.social-icons a:hover {
    transform: translateY(-3px);
}

/* INDIVIDUAL COLORS */
.social-icons a:nth-child(1):hover {
    background: #1877F2; /* Facebook */
}

.social-icons a:nth-child(2):hover {
    background: #000; /* X */
}

.social-icons a:nth-child(3):hover {
    background: #FF0000; /* YouTube */
}

.social-icons a:nth-child(4):hover {
    background: #E1306C; /* Instagram */
}