:root {
    --bg-color: #050505;
    --card-bg: #0f1115;
    --text-primary: #ffffff;
    --text-secondary: #a0a4ae;
    --accent-cyan: #00f2ff;
    --accent-purple: #9b59b6;
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none; /* Hide default cursor for desktop */
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- CUSTOM CURSOR --- */
.cursor-dot, .cursor-circle {
    position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
    pointer-events: none; z-index: 9999; border-radius: 50%;
}
.cursor-dot { width: 8px; height: 8px; background: var(--accent-cyan); }
.cursor-circle { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.5); transition: 0.1s; }

/* --- CANVAS & NAVBAR --- */
#canvas-container { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: -1; opacity: 0.6; }

.navbar {
    position: fixed; top: 0; width: 100%; padding: 15px 0; z-index: 100;
    backdrop-filter: blur(10px); background: rgba(5, 5, 5, 0.7);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container { width: 90%; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }

/* LOGO STYLING */
.logo-container { display: block; }
.logo-img { 
    height: 50px; /* Adjust based on your logo aspect ratio */
    width: auto; 
    display: block; 
}

.nav-links { display: flex; gap: 30px; align-items: center; }
.hover-link:hover { color: var(--accent-cyan); }
.btn-nav { border: 1px solid var(--accent-cyan); color: var(--accent-cyan); padding: 8px 24px; border-radius: 50px; }
.btn-nav:hover { background: var(--accent-cyan); color: #000; }

/* Mobile Menu */
.mobile-toggle { display: none; cursor: pointer; flex-direction: column; gap: 6px; }
.mobile-toggle span { width: 30px; height: 2px; background: #fff; }
.mobile-menu-overlay {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: #000; z-index: 200; display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 2rem; transition: 0.5s;
}
.mobile-menu-overlay.active { right: 0; }
.m-link { font-size: 2rem; font-family: var(--font-heading); }
.close-menu { position: absolute; top: 30px; right: 30px; font-size: 2rem; cursor: pointer; }

/* --- HERO --- */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 80px; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.hero-tag { border: 1px solid var(--accent-purple); color: var(--accent-purple); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; margin-bottom: 20px; display: inline-block; }
.hero-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 25px; }
.text-gradient { background: linear-gradient(to right, var(--accent-cyan), var(--accent-purple)); -webkit-background-clip: text; color: transparent; }
.hero-desc { max-width: 600px; color: var(--text-secondary); margin-bottom: 40px; font-size: 1.1rem; line-height: 1.6; }
.hero-actions { display: flex; gap: 20px; }
.btn-primary { background: var(--accent-cyan); color: #000; padding: 14px 35px; border-radius: 50px; font-weight: 600; }
.btn-outline { border: 1px solid #fff; padding: 14px 35px; border-radius: 50px; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 0.8rem; letter-spacing: 2px; }
.scroll-indicator .line { height: 50px; width: 1px; background: linear-gradient(#fff, transparent); }

/* --- STATS --- */
.stats-section { padding: 4rem 0; }
.stats-glass {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px); padding: 40px; border-radius: 20px; text-align: center;
}
.stat-num { font-size: 3rem; font-family: var(--font-heading); display: inline-block; }
.suffix { color: var(--accent-cyan); font-size: 2rem; font-family: var(--font-heading); }
.stat-item p { color: var(--text-secondary); margin-top: 5px; font-size: 0.9rem; }

/* --- STORIES SLIDER (Cinema Mode) --- */
.section { padding: 80px 0; }
.section-header { margin-bottom: 50px; }
.tag { color: var(--accent-cyan); font-size: 0.85rem; letter-spacing: 2px; font-weight: 600; display: block; margin-bottom: 10px; }
.section-header h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 10px; }

.stories-wrapper { position: relative; display: flex; align-items: center; perspective: 1000px; }
.stories-track {
    display: flex; gap: 30px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 40px 10px; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; width: 100%;
}
.stories-track::-webkit-scrollbar { height: 0px; background: transparent; }
.story-card {
    min-width: 965px; /* Increased width to show more of your 1080px image */
    height: 524px; 
    scroll-snap-align: center;
    position: relative; 
    border-radius: 20px; 
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: #000;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.story-card:hover { 
    transform: translateY(-10px) scale(1.02); border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.2); z-index: 10;
}
.story-card img { 
    width: 100%; height: 100%; object-fit: cover; transition: 0.5s; opacity: 0.9; 
}
.story-card:hover img { opacity: 1; }
.story-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(10px); transition: 0.3s;
}
.story-card:hover .story-overlay { transform: translateY(0); }
.story-overlay h4 { color: #fff; font-family: var(--font-heading); text-shadow: 0 2px 4px rgba(0,0,0,0.8); }

.slider-btn {
    background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2); color: #fff;
    width: 50px; height: 50px; border-radius: 50%; cursor: pointer; z-index: 2;
    transition: 0.3s; font-size: 1.2rem; flex-shrink: 0;
}
.slider-btn:hover { background: var(--accent-cyan); color: #000; transform: scale(1.1); }
.prev-btn { margin-right: 10px; } 
.next-btn { margin-left: 10px; }
.swipe-hint { text-align: center; font-size: 0.8rem; opacity: 0.5; margin-top: 10px; display: none; }

/* --- SERVICES & PORTFOLIO --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card {
    background: var(--card-bg); padding: 30px; border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
}
.service-card:hover { transform: translateY(-10px); border-color: var(--accent-cyan); }
.s-icon { font-size: 2rem; margin-bottom: 20px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.service-card p { color: var(--text-secondary); margin-bottom: 20px; font-size: 0.95rem; line-height: 1.5; }
.s-tags span { background: #1a1d24; padding: 4px 10px; border-radius: 5px; font-size: 0.75rem; margin-right: 5px; color: var(--accent-cyan); }

.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.portfolio-item { background: var(--card-bg); border-radius: 15px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
.portfolio-item:hover { transform: translateY(-5px); border-color: var(--accent-cyan); }
.p-img-box { height: 200px; overflow: hidden; }
.p-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.portfolio-item:hover img { transform: scale(1.1); }
.p-info { padding: 25px; }
.p-info h3 { margin-bottom: 5px; font-size: 1.2rem; }
.p-info p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 15px; }
.p-tag { font-size: 0.75rem; color: var(--accent-cyan); border: 1px solid rgba(0, 242, 255, 0.3); padding: 3px 8px; border-radius: 4px; }

/* --- ABOUT & CONTACT --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.mv-block { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.mv-card { background: rgba(255,255,255,0.03); padding: 20px; border-radius: 10px; border-left: 2px solid var(--accent-purple); }
.mv-card h4 { color: var(--accent-purple); margin-bottom: 5px; }
.mv-card p { font-size: 0.85rem; color: var(--text-secondary); }
.about-img-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.about-img-wrap img { width: 100%; display: block; }

.contact-wrapper { display: grid; grid-template-columns: 1.5fr 1fr; overflow: hidden; border-radius: 20px; background: var(--card-bg); border: 1px solid rgba(255,255,255,0.1); }
.contact-form-side { padding: 40px; }
.contact-info-side { background: linear-gradient(135deg, #1d212b, #0f0c29); padding: 40px; color: #fff; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
input, select, textarea { width: 100%; background: #050505; border: 1px solid #333; color: #fff; padding: 12px; border-radius: 8px; margin-bottom: 15px; font-family: inherit; }
input:focus, textarea:focus { outline: none; border-color: var(--accent-cyan); }
.full-width { width: 100%; }
.c-item { display: flex; gap: 15px; margin-bottom: 25px; align-items: center; }
.c-icon { font-size: 1.5rem; }
.whatsapp-box { margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.btn-whatsapp { display: inline-block; background: #25D366; color: #fff; padding: 10px 20px; border-radius: 5px; margin-top: 10px; font-weight: 600; }

/* --- FOOTER & RESPONSIVE --- */
.footer { background: #000; padding: 60px 0 20px; border-top: 1px solid #222; margin-top: 50px; }
.footer-flex { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.f-col h4 { color: #fff; margin-bottom: 20px; font-family: var(--font-heading); }
.f-col p, .f-col a { color: #666; display: block; margin-bottom: 10px; }
.f-col a:hover { color: var(--accent-cyan); }
.footer-bottom { border-top: 1px solid #222; padding-top: 20px; display: flex; justify-content: space-between; color: #444; font-size: 0.85rem; }
.legal-links a { margin-left: 20px; color: #444; }

@media (max-width: 900px) {
    .stats-glass { grid-template-columns: 1fr 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    body { cursor: auto; }
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .cursor-dot, .cursor-circle { display: none; }
    .hero-title { font-size: 3rem; }
    .story-card { min-width: 85vw; }
    .slider-btn { display: none; }
    .swipe-hint { display: block; }
    .footer-flex { flex-direction: column; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .mv-block { grid-template-columns: 1fr; }
}