* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #000;
    overflow-x: hidden;
}

a {
    color: #000;
}

.center {
    text-align: center;
}

.center::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #888888;
    margin: 15px auto 0;
}

.light-bg {
    background: #f9f9f9;
}
/* VIDEO HERO SECTION */
.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 480px;
    overflow: hidden;
}

/* VIDEO */
.video-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* DARK OVERLAY */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MARQUEE TEXT */
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee span {
    display: inline-block;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

/* MARQUEE ANIMATION */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .video-hero {
        height: 60vh;
    }

    .marquee span {
        font-size: 2rem;
    }
}

.video-hero .hero-content {
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    width: calc(100% - 40px);
    max-width: 1100px;
    padding: 1rem 20px;
    color: #fff;
    display: block;
}

@media (max-width: 1024px) {
    .video-hero .hero-content {
        top: 55px;
        width: calc(100% - 30px);
        padding: 0.9rem 15px;
    }
}

@media (max-width: 768px) {
    .video-hero .hero-content {
        top: 45px;
        width: calc(100% - 30px);
        padding: 0.8rem 15px;
    }
}

@media (max-width: 480px) {
    .video-hero .hero-content {
        top: 35px;
        padding: 0.75rem 12px;
        width: calc(100% - 24px);
    }
}

/* Hero heading: single-line Poppins, smaller on mobile */
.video-hero .hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.video-hero .hero-content p {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 0 16px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 4px 4px 16px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .video-hero .hero-content h1 {
        font-size: 14px;
    }
    
    .video-hero .hero-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .video-hero .hero-content h1 {
        font-size: 14px;
    }
    
    .video-hero .hero-content p {
        font-size: 0.75rem;
    }
}


header {
    background: #0a0a0a;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    border-bottom: 2px solid #888888;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.logo:hover {
    color: #fff;
}

nav a {
    color: #fff;
    margin-left: 1.5rem;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #fff;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #888888;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}


@media (max-width: 1024px) {
    header {
        padding: 1rem 1.5rem;
    }
    
    nav a {
        margin-left: 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.9rem 1.2rem;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    nav a {
        margin-left: 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    header {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
    }
    
    .logo {
        gap: 0.5rem;
    }
    
    .logo img {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 0.85rem;
    }
    
    nav {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 0.8rem;
        margin-top: 0.5rem;
    }
    
    nav a {
        margin-left: 0;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.65rem 0.8rem;
        flex-wrap: wrap;
    }
    
    .logo img {
        width: 32px;
        height: 32px;
    }
    
    .logo-text {
        font-size: 0.75rem;
        margin-left: 0.5rem;
    }
    
    nav {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 0.6rem;
        margin-top: 0.4rem;
    }
    
    nav a {
        margin-left: 0;
        font-size: 0.65rem;
    }
}

.hero {
    height: 80vh;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary {
    background: #2a2a2a;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid #888888;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
    background: #3a3a3a;
    border-color: #cccccc;
    box-shadow: 0 6px 16px rgba(136, 136, 136, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .btn-primary {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        box-sizing: border-box;
    }
}

section {
    padding: 3rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #000;
}

@media (max-width: 1024px) {
    section {
        padding: 2.5rem 2rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 2rem 1.5rem;
    }
    
    section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    section p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 1.5rem 1rem;
    }
    
    section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    section p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.service-card {
    border: 2px solid #d0d0d0;
    border-radius: 8px;
    padding: 1.5rem;
    background: #fff;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #888888;
    box-shadow: 0 6px 16px rgba(136, 136, 136, 0.2);
    transform: translateY(-4px);
}

.service-card h3 {
    color: #000;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

@media (max-width: 1024px) {
    .services {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 0.8rem;
    }
    
    .service-card h3 {
        font-size: 0.9rem;
    }
}
.marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 20px;
    animation: scroll 30s linear infinite;
}

.marquee img {
    width: 320px;
    height: auto;
    border-radius: 12px;
    flex-shrink: 0;
}

/* Smooth infinite scroll */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-750%);
    }
}

/* Pause on hover (optional but classy) */
.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.footer {
    background: #0a0a0a;
    color: #fff;
    padding: 3rem 2rem 1.5rem;
    font-size: 0.95rem;
    border-top: 2px solid #888888;
}
.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: #2a2a2a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border: 2px solid #888888;
}

.btn-primary:hover {
    background: #3a3a3a;
    border-color: #cccccc;
    box-shadow: 0 6px 16px rgba(136, 136, 136, 0.4);
    transform: translateY(-2px);
}

.why-grid, .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-item {
    padding: 20px;
    border-radius: 8px;
    background: #f9f9f9;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.service-item:hover {
    background: #2a2a2a;
    color: #fff;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(136, 136, 136, 0.3);
}

.service-icon {
    font-size: 2rem;
    color: #000;
    margin-bottom: 15px;
    display: inline-block;
}

.service-item:hover .service-icon {
    color: #ffffff;
}

.service-item h3 {
    font-size: 1rem;
    margin: 10px 0 8px;
    font-weight: 600;
}

.service-item p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #000;
}

.service-item:hover p {
    color: #fff;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .service-item {
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-item {
        padding: 15px;
    }
    
    .service-icon {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .service-item h3 {
        font-size: 0.9rem;
        margin: 8px 0 6px;
    }
    
    .service-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-item {
        padding: 12px;
    }
    
    .service-icon {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .service-item h3 {
        font-size: 0.85rem;
        margin: 7px 0 5px;
    }
    
    .service-item p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

.process-steps > div {
    padding: 20px;
    border-radius: 8px;
    background: #f9f9f9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.process-steps > div:hover {
    background: #2a2a2a;
    color: #fff;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(136, 136, 136, 0.3);
}

.process-steps span {
    display: block;
    font-size: 28px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
}

.process-steps > div:hover span {
    color: #fff;
}

@media (max-width: 1024px) {
    .why-grid, .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .process-steps > div {
        padding: 18px;
    }
    
    .process-steps span {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .why-grid, .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .process-steps > div {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .process-steps span {
        font-size: 20px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .why-grid, .process-steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .process-steps > div {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .process-steps span {
        font-size: 18px;
        margin-bottom: 6px;
    }
}

.portfolio-item {
    position: relative;
}

.portfolio-item span {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 12px;
    font-size: 14px;
}

.testimonial {
    background: #fff;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Our Clients Section */
.our-clients {
    background: #fff;
    padding: 4rem 2rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    height: 120px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.brand-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(136, 136, 136, 0.2);
    border-color: #888888;
}

.brand-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    width: auto;
    height: auto;
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
    
    .brand-logo {
        padding: 1.5rem;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .brand-logo {
        padding: 1rem;
        height: 80px;
    }
    
    .brand-logo img {
        max-height: 60px;
    }
}

.contact-form form {
    max-width: 600px;
    margin: auto;
    display: grid;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    font-family: Poppins;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #888888;
    box-shadow: 0 0 5px rgba(136, 136, 136, 0.2);
}

.contact-form button {
    background: #2a2a2a;
    color: #fff;
    padding: 14px;
    border: 2px solid #888888;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.contact-form button:hover {
    background: #3a3a3a;
    border-color: #cccccc;
    box-shadow: 0 6px 16px rgba(136, 136, 136, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-form form {
        gap: 12px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 11px;
        font-size: 0.95rem;
    }
    
    .contact-form button {
        padding: 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact-form form {
        gap: 10px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .contact-form button {
        padding: 11px;
        font-size: 0.9rem;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #2a2a2a;
    color: #fff;
    font-size: 26px;
    padding: 14px 18px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border: 2px solid #888888;
    z-index: 50;
}

.whatsapp-float:hover {
    background: #3a3a3a;
    border-color: #cccccc;
    box-shadow: 0 6px 16px rgba(136, 136, 136, 0.4);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        font-size: 22px;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        font-size: 20px;
        padding: 10px 14px;
    }
}


.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.footer-col h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-col p {
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: #fff;
    text-decoration: underline;
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .footer-col h3 {
        font-size: 1rem;
    }
    
    .footer-col a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 1.5rem 1rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-col h3 {
        font-size: 0.95rem;
        margin-bottom: 0.7rem;
    }
    
    .footer-col p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .footer-col a {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
}
/* Hide testimonials section temporarily */
.testimonials {
    display: none;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
}

.logo img {
    height: 42px; /* adjust if needed */
    width: auto;
    cursor: pointer;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    color: #fff;
    margin-left: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 0.9rem;
    }
}

/* Page-specific styles */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

h1, h2, h3 {
    font-weight: 600;
}

h1 {
    font-size: 52px;
}

h2 {
    color: #000;
    margin-top: 60px;
}

.hero-specific {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1503428593586-e225b39bddfe');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 160px 20px;
}

.hero-specific p {
    font-size: 20px;
    color: #fff;
}

.btn-custom {
    background: #2a2a2a;
    color: white;
    padding: 16px 30px;
    border: 2px solid #888888;
    margin-top: 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: #3a3a3a;
    border-color: #cccccc;
}

.cta {
    background: #888888;
    text-align: center;
    padding: 100px 20px;
    color: white;
}

/* Additional page-specific grid and card styles */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #3a3a3a;
}

.price {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #3a3a3a;
}

.process {
    line-height: 2;
    font-size: 18px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    line-height: 1.8;
}

/* Portfolio-specific styles */
.portfolio-dark {
    background: #2d2d2d;
}

.portfolio-dark h2 {
    color: white;
}

.wa-icon {
    width: 20px;
    margin-right: 8px;
    vertical-align: middle;
}
