/* ARAP Tech Solutions - Premium Modern Theme (Logo Matched) */

:root {
  /* --- Logo Palette --- */
  --bg-deep: #04070d; /* Deep space blue-black */
  --bg-surface: rgba(255, 255, 255, 0.03); /* Glass tile background */

  --text-primary: #eef2f7; /* Metallic Silver-White for main headings */
  --text-secondary: #a0a8b8; /* Stardust Gray for paragraphs */
  
  /* The Logo Accents */
  --accent-blue: #00C2FF; /* Electric Cyan Blue */
  --accent-green: #7CFF4F; /* Vibrant Lime Green */
  
  /* Gradients & Glows */
  --brand-gradient: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
  --accent-glow-blue: rgba(0, 194, 255, 0.25);
  --accent-glow-green: rgba(124, 255, 79, 0.20);

  /* Glass Borders */
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-active: rgba(0, 194, 255, 0.5);

  --radius-lg: 24px;
  --radius-md: 16px;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  /* Multi-layered background to create depth like the logo space */
  background-color: var(--bg-deep);
  background-image: 
    radial-gradient(circle at 15% 25%, var(--accent-glow-blue), transparent 45%), /* Subtle blue nebula top-left */
    radial-gradient(circle at 85% 65%, var(--accent-glow-green), transparent 45%), /* Subtle green nebula bottom-right */
    linear-gradient(to bottom, #080d1a 0%, #000000 100%); /* Deep space fade */
  background-attachment: fixed; /* Keeps the nebula glow fixed while scrolling */
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Base Typography Updates */
h1, h2, h3 { 
    line-height: 1.1; 
    letter-spacing: -0.02em; 
    font-weight: 700; 
    color: #ffffff; /* Pure white for impact */
}
h1 {
    /* Optional: Makes big headings look metallic */
    background: linear-gradient(to bottom right, #ffffff 30%, #b0b8c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
a { color: inherit; text-decoration: none; transition: var(--transition-smooth); }
p { color: var(--text-secondary); }

/* --- React-Style Layout Classes --- */
.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

/* Header Update for Logo */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 20px 0;
  z-index: 100;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(4, 7, 13, 0.85); /* Using new deep bg */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }

/* IMPORTANT: CSS for your actual Logo Image */
.brand-logo-img {
    height: 50px; /* Adjust height as needed */
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(0, 194, 255, 0.3)); /* Subtle glow on the logo itself */
}
/* If you don't use image and use text ARAP. */
.brand-name { 
    font-size: 24px; 
    font-weight: 800; 
    /* Gradient text matching logo */
    background: var(--brand-gradient);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

/* Rest of site nav stays similar but uses new colors */
.site-nav { display: flex; gap: 32px; align-items: center; }
.site-nav ul { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; align-items: center; }
.site-nav li { list-style-type: none; margin: 0; }
.site-nav a { font-size: 14px; font-weight: 600; color: var(--text-secondary); text-decoration: none; transition: all 0.3s ease; }
.site-nav a:hover { color: var(--accent-blue); text-shadow: 0 0 12px var(--accent-glow-blue); }

/* Buttons Updated */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  /* Gradient background matching logo */
  background: var(--brand-gradient);
  color: #000; /* Black text on bright gradient works best */
  border: none;
  box-shadow: 0 4px 20px var(--accent-glow-blue);
}
.btn-primary:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 30px var(--accent-glow-blue); 
    filter: brightness(1.1);
}

/* ... Baaki ka CSS (scroll animations, etc.) same rahega ... */
/* --- Scroll Animations (The React Vibe) --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 100%);
}
.hero-inner { position: relative; z-index: 3; text-align: center; max-width: 800px; margin: 0 auto; }
.eyebrow {
  display: inline-block; padding: 6px 16px; border-radius: 99px; background: var(--bg-glass); border: 1px solid var(--border-glass);
  color: var(--accent-blue); font-size: 13px; font-weight: 600; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px;
}
.hero h1 { font-size: clamp(40px, 6vw, 72px); margin-bottom: 24px; background: linear-gradient(to bottom right, #ffffff, #888); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero .lead { font-size: clamp(16px, 2vw, 20px); color: var(--text-secondary); margin-bottom: 40px; }

/* Bubble Tags */
.bubble-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 40px; }
.bubble { padding: 8px 20px; border-radius: 99px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); font-size: 14px; color: var(--text-secondary); backdrop-filter: blur(5px); transition: var(--transition-smooth); }
.bubble:hover { border-color: var(--accent-blue); color: #fff; transform: translateY(-2px); }


/* --- Premium Sections & Layouts --- */
.section { padding: 120px 0; position: relative; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-header h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; background: linear-gradient(to right, #fff, var(--text-secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-header p { color: var(--text-secondary); font-size: 18px; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }

@media (max-width: 992px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}


.glass-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

/* Border glow effect on hover */
.glass-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--accent-blue); /* Blue border on hover */
    box-shadow: 0 12px 40px rgba(0, 194, 255, 0.15); /* Blue glow */
}

.glass-card h3 { font-size: 24px; margin-bottom: 16px; color: #ffffff; }
.glass-card p { color: var(--text-secondary); margin-bottom: 0; }

.eyebrow {
  display: inline-block; padding: 6px 16px; border-radius: 99px; 
  background: rgba(0, 194, 255, 0.1); /* Subtle blue background */
  border: 1px solid rgba(0, 194, 255, 0.3);
  color: var(--accent-blue); 
  font-size: 13px; font-weight: 700; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px;
}

/* Contact Section Specifics */
.contact-info-list { list-style: none; margin-top: 32px; }
.contact-info-list li { padding: 16px 0; border-bottom: 1px solid var(--border-glass); display: flex; justify-content: space-between; }
.contact-info-list span:first-child { color: var(--text-secondary); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 30px;
  background: #000;
}
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--border-glass); padding-top: 24px; color: var(--text-secondary); font-size: 14px; }

/* Custom Grid for Stats */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 992px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-4 { grid-template-columns: 1fr; } }

/* --- Desktop Nav Enhancements --- */
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.nav-list { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-list li { position: relative; }
.nav-list a { 
    color: var(--text-secondary); 
    font-size: 14px; 
    font-weight: 600; 
    text-decoration: none; 
    padding: 8px 0;
    transition: var(--transition-smooth); 
}
.nav-list a:hover { color: #ffffff; text-shadow: 0 0 10px rgba(255,255,255,0.3); }

/* Customizing the Logo image if uploaded via WP */
.brand .custom-logo { max-height: 45px; width: auto; filter: drop-shadow(0 0 10px rgba(0, 194, 255, 0.2)); }

/* --- Mobile Nav Defaults (Hidden on Desktop) --- */
.mobile-menu-toggle { display: none; }
.mobile-nav-container { display: none; }

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .desktop-nav { display: none; } /* Hide desktop nav */
    
    /* Hamburger Button Setup */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 101;
    }
    .hamburger-line {
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        border-radius: 2px;
        transition: var(--transition-smooth);
    }
    
    /* Mobile Menu Container (Glassmorphism Slide-down) */
    .mobile-nav-container {
        display: block;
        position: fixed;
        top: 0; left: 0; right: 0;
        height: 100vh;
        background: rgba(4, 7, 13, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 30px 40px;
        transform: translateY(-100%); /* Hidden by default */
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 99;
    }
    
    /* Active State for Mobile Menu */
    body.menu-open { overflow: hidden; /* Stop scrolling */ }
    body.menu-open .mobile-nav-container { transform: translateY(0); opacity: 1; visibility: visible; }
    
    /* Hamburger Animation to 'X' */
    body.menu-open .hamburger-line:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    body.menu-open .hamburger-line:nth-child(2) { opacity: 0; }
    body.menu-open .hamburger-line:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    
    /* Mobile Links Styling */
    .mobile-nav-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
    .mobile-nav-list a { font-size: 24px; font-weight: 700; color: #ffffff; text-decoration: none; display: block; }
}


/* --- Fix for "Get Started" Button Visibility in Header & Mobile Nav --- */
.site-header .btn-primary,
.mobile-nav-container .btn-primary {
    color: #04070d !important; /* Deep dark text for high contrast */
    text-shadow: none !important; /* Removes any glowing text shadow from links */
    font-weight: 800 !important; /* Makes text slightly bolder */
}

.site-header .btn-primary:hover,
.mobile-nav-container .btn-primary:hover {
    color: #000000 !important; /* Keeps it black on hover */
}

/* --- Fix for Massive WordPress Logo --- */
.brand {
    display: flex;
    align-items: center;
}

/* Target the exact classes WordPress uses */
.brand img, 
.custom-logo {
    max-height: 48px !important; /* Aap isko 45px se 55px ke beech adjust kar sakte ho */
    width: auto !important;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(124, 255, 79, 0.2)); /* Halka sa green glow logo ke peeche */
}

/* Fix for WP auto-generated link wrapper */
.custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}