@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    /* Full White / Monochrome Theme */
    --primary-color: #FFFFFF;
    --primary-gradient: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 100%);
    --primary-glow: rgba(255, 255, 255, 0.4);
    
    /* Pure black background for maximum contrast with white */
    --bg-base: #000000;
    --bg-surface: #0a0a0a;
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border-glass: rgba(255, 255, 255, 0.15);
    
    --radius-md: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
    
    --font-main: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-base);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* Typography */
.highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px var(--primary-glow);
}
.bg-light { background-color: var(--bg-surface); }
.section-padding { padding: 120px 0; }
.section-header { margin-bottom: 60px; }
.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-main);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -1px;
}
.section-subtitle { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; border-radius: 50px; font-weight: 600;
    font-size: 1rem; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); gap: 10px;
    text-transform: uppercase; letter-spacing: 1px;
}
.btn-large { padding: 16px 36px; font-size: 1.1rem; }
.btn-primary { 
    background: var(--primary-gradient); 
    color: #000000; /* Black text for contrast against white button */
    border: none;
    box-shadow: 0 10px 20px -5px var(--primary-glow);
}
.btn-primary:hover { 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 15px 25px -5px var(--primary-glow); 
}
.btn-primary:active { transform: scale(0.95); }

.btn-secondary { 
    background: var(--bg-glass); 
    color: var(--text-main); 
    border: 1px solid var(--border-glass); 
    backdrop-filter: blur(10px); 
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.btn-outline { 
    background: transparent; color: var(--text-main); 
    border: 1px solid var(--border-glass); 
}
.btn-outline:hover { border-color: var(--primary-color); color: var(--primary-color); }

/* Navbar */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.4s ease; padding: 20px 0;
}
header.scrolled { padding: 10px 0; background: rgba(0, 0, 0, 0.95); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-text { font-size: 1.8rem; font-weight: 800; color: var(--text-main); letter-spacing: -1px; }
.nav-links { display: flex; gap: 40px; }
.nav-links a { font-weight: 600; color: var(--text-muted); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--text-main); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 50%; width: 0; height: 2px;
    background: var(--primary-gradient); transition: all 0.3s ease; transform: translateX(-50%);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; box-shadow: 0 0 10px var(--primary-color); }
.nav-actions { display: flex; gap: 16px; align-items: center; }

/* Hero Section */
.hero {
    height: 100vh; min-height: 700px; display: flex; align-items: center; position: relative; padding-top: 80px; overflow: hidden;
}
.video-hero { background-color: var(--bg-base); }
.hero-video {
    position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%;
    width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover; z-index: 0; opacity: 0.4;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #000000 100%); z-index: 1;
}
.hero-content { position: relative; z-index: 2; text-align: center; margin: 0 auto; }
.hero-badge {
    display: inline-block; padding: 8px 20px; background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50px;
    font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1) inset;
}
.hero h1 { font-size: clamp(3rem, 8vw, 5.5rem); line-height: 1.1; font-weight: 800; margin-bottom: 30px; letter-spacing: -2px; }
.hero p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; }

/* Glass Cards (About, Services, Industry) */
.about-card, .service-card, .industry-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.about-card::before, .service-card::before, .industry-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(
        800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.15),
        transparent 40%
    );
    opacity: 0; transition: opacity 0.4s ease; z-index: 0;
}
.about-card:hover, .service-card:hover, .industry-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
}
.about-card:hover::before, .service-card:hover::before, .industry-card:hover::before { opacity: 1; }

.about-card *, .service-card *, .industry-card * { position: relative; z-index: 1; }

.about-icon, .service-icon {
    width: 70px; height: 70px; background: rgba(255, 255, 255, 0.05); color: var(--primary-color);
    border-radius: 20px; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin-bottom: 30px; transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.about-card:hover .about-icon, .service-card:hover .service-icon {
    background: var(--primary-gradient); color: #000000;
    box-shadow: 0 0 20px var(--primary-glow); transform: scale(1.1) rotate(5deg);
}
.about-card h3, .service-card h3 { color: var(--text-main); font-size: 1.5rem; margin-bottom: 16px; font-weight: 700; }
.about-card p, .service-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

/* Grids */
.about-grid, .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

/* Industry Cards Specific */
.industry-card { width: 220px; text-align: center; padding: 40px 20px; }
.industry-card i { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; transition: all 0.4s ease; filter: drop-shadow(0 0 10px var(--primary-glow)); }
.industry-card:hover i { transform: scale(1.2); }
.industry-card p { font-weight: 600; color: var(--text-main); font-size: 1.1rem; }

/* Partners */
.partner-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 50px; }
.partner-box {
    width: 180px; height: 120px; display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: var(--bg-glass); border-radius: 20px; border: 1px solid var(--border-glass);
    color: var(--text-muted); font-size: 2.5rem; transition: all 0.4s ease;
}
.partner-box:hover {
    border-color: var(--primary-color); color: var(--text-main);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15); transform: translateY(-5px);
}

/* Footer */
.footer { background-color: #000000; padding-top: 100px; border-top: 1px solid var(--border-glass); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; margin-bottom: 80px; }
.footer-info p { color: var(--text-muted); margin-bottom: 30px; max-width: 350px; line-height: 1.8; }
.social-links a {
    width: 45px; height: 45px; display: flex; align-items: center; justify-content: center;
    background: var(--bg-glass); border-radius: 50%; color: var(--text-main); border: 1px solid var(--border-glass);
    transition: all 0.4s ease; font-size: 1.1rem;
}
.social-links a:hover { background: var(--primary-color); color: #000000; transform: translateY(-5px); box-shadow: 0 10px 20px var(--primary-glow); border-color: var(--primary-color); }
.footer h4 { font-size: 1.2rem; margin-bottom: 30px; color: var(--text-main); font-weight: 700; }
.footer-links ul li { margin-bottom: 15px; }
.footer-links ul li a { color: var(--text-muted); transition: all 0.3s ease; }
.footer-links ul li a:hover { color: var(--primary-color); padding-left: 8px; }
.contact-list li { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 20px; color: var(--text-muted); }
.contact-list li i { color: var(--primary-color); margin-top: 5px; font-size: 1.2rem; filter: drop-shadow(0 0 5px var(--primary-glow)); }
.contact-list li a { color: var(--text-muted); transition: all 0.3s ease; }
.contact-list li a:hover { color: var(--text-main); }
.footer-bottom { padding: 30px 0; border-top: 1px solid var(--border-glass); color: var(--text-muted); font-size: 0.9rem; }

/* Logos */
.logo-img { height: 75px; width: auto; display: block; transition: transform 0.4s ease; filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
.logo-img:hover { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(255,255,255,0.4)); }
.footer-logo-img { height: 120px; width: auto; display: block; margin-bottom: 30px; filter: drop-shadow(0 0 10px rgba(255,255,255,0.1)); }

/* Animations */
.fade-in-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 992px) { 
    .footer-grid { grid-template-columns: 1fr 1fr; } 
    .about-overview-container { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
    .nav-links, .nav-actions .btn { display: none; }
    .nav-links.active-mobile {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 20px;
        border-bottom: 1px solid var(--border-glass);
    }
    .mobile-menu-toggle { display: block; background: none; border: none; color: var(--text-main); font-size: 1.5rem; cursor: pointer; }
    .hero-buttons { flex-direction: column; } 
    .footer-grid { grid-template-columns: 1fr; }
    .section-padding { padding: 80px 0; }
    .stats-grid { grid-template-columns: 1fr; }
}
/* Page Headers (About, Services, etc) */
.page-header {
    background: radial-gradient(circle at center, #0a0a0a 0%, #000000 100%);
    padding: 200px 0 100px; text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px; background: var(--primary-color); filter: blur(200px); opacity: 0.1; z-index: 0;
}
.page-header * { position: relative; z-index: 1; }
.page-title { font-size: 4rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }

/* Layout Classes */
.about-overview-container { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
.about-overview-content { flex: 1; min-width: 300px; }
.about-overview-content p { margin-bottom: 20px; color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; }
.stats-grid { flex: 1; min-width: 300px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box {
    background: var(--bg-glass); backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass); padding: 40px 20px;
    border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
    text-align: center; border-bottom: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}
.stat-box:hover { transform: translateY(-5px); border-color: var(--primary-color); }
.stat-box h3 { font-size: 3rem; color: var(--text-main); margin-bottom: 10px; text-shadow: 0 0 20px var(--primary-glow); }
.stat-box p { font-weight: 600; color: var(--text-muted); }

.industries-wrapper { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

.cta-banner {
    padding: 80px 40px; background: linear-gradient(135deg, var(--bg-surface), #000000);
    border-radius: var(--radius-xl); position: relative; overflow: hidden;
    text-align: center; box-shadow: var(--shadow-lg); border: 1px solid var(--border-glass);
}
.cta-glow {
    position: absolute; top: -50%; left: -10%; width: 400px; height: 400px;
    background: var(--primary-color); filter: blur(150px); opacity: 0.2; z-index: 0;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 20px; font-weight: 700; color: white; }
.cta-content p { font-size: 1.2rem; margin-bottom: 40px; color: var(--text-muted); max-width: 700px; margin-left: auto; margin-right: auto; }

/* Custom Cursor & Interaction */
body {
    cursor: default;
}
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
}
body.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: var(--primary-glow);
    border-color: transparent;
}
body.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(0.5);
}
.partner-logos{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
}

.partner-box{
    width:180px;
    min-height:120px;
    background:#111;
    border:1px solid rgba(255,255,255,0.1);
    border-radius:18px;
    padding:20px;
    text-align:center;
    transition:0.3s;
}

.partner-box:hover{
    transform:translateY(-5px);
}

.partner-logo{
    width:90px;
    height:60px;
    object-fit:contain;
    margin-bottom:12px;
}

.partner-box span{
    display:block;
    font-size:16px;
    font-weight:600;
    color:#fff;
}
.client-logo-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:25px;
    align-items:center;
    justify-items:center;
}

.client-logo-grid img{
    width:160px;
    height:100px;
    object-fit:contain;
    background:#fff;
    padding:10px;
    border-radius:8px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    transition:0.3s;
}

.client-logo-grid img:hover{
    transform:scale(1.05);
}
.about .section-header{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about .section-subtitle{
    width: 100%;
    max-width: 900px;
    margin: 0 auto !important;
    text-align: center !important;
    line-height: 2;
    display: block;
}
.about .section-subtitle{
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    text-justify: inter-word;
    line-height: 2;
}