@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg-black: #070708;
    --bg-charcoal: #121214;
    --bg-card: #161619;
    --accent: #e87a24;
    --accent-rgb: 232, 122, 36;
    --accent-hover: #ff913b;
    --text-white: #ffffff;
    --text-muted: #a0a0a5;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(232, 122, 36, 0.15);
    --glass-bg: rgba(18, 18, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.06);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-charcoal);
    border: 2px solid var(--bg-black);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-black);
    border: 1px solid var(--accent);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
    box-shadow: 0 0 20px rgba(232, 122, 36, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(232, 122, 36, 0.2);
}

.btn i {
    transition: var(--transition-fast);
}

.btn:hover i {
    transform: translateX(5px);
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
    position: relative;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-tag::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--accent);
}

.section-title {
    font-size: 2.8rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--accent);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

/* Common Header/Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    background-color: rgba(7, 7, 8, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.logo img {
    height: 35px;
    filter: brightness(0) invert(1);
}

.logo span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 8px 0;
    color: var(--text-muted);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    min-width: 220px;
    padding: 15px 0;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 100;
}

.nav-item:hover .nav-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 25px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.dropdown-link:hover {
    color: var(--accent);
    background-color: rgba(255, 255, 255, 0.02);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hamburger menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7,7,8,0.7) 0%, rgba(7,7,8,0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-inner {
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Floating particle container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0; }
    100% { top: 8px; opacity: 1; }
}

/* Slider Controls */
.hero-controls {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    background: rgba(18,18,20,0.5);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition-fast);
}

.hero-btn:hover {
    background: var(--accent);
    color: var(--bg-black);
    border-color: var(--accent);
}

/* Categories Section */
.categories-sec {
    padding: 120px 0;
    background-color: var(--bg-black);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.category-card {
    height: 380px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.category-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7,7,8,0) 40%, rgba(7,7,8,0.95) 100%);
    z-index: 2;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.category-icon {
    width: 40px;
    height: 40px;
    background: rgba(232, 122, 36, 0.1);
    border: 1px solid rgba(232, 122, 36, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.category-title {
    font-size: 1.4rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.category-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.category-arrow {
    margin-top: 15px;
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition-smooth);
}

/* Hover effects for category card */
.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(232, 122, 36, 0.15);
}

.category-card:hover .category-img {
    transform: scale(1.1);
}

.category-card:hover .category-desc {
    opacity: 1;
    height: auto;
    margin-top: 5px;
}

.category-card:hover .category-arrow {
    transform: translateY(0);
    opacity: 1;
}

.category-card:hover .category-icon {
    background: var(--accent);
    color: var(--bg-black);
}

/* About Preview Section */
.about-preview {
    padding: 120px 0;
    background-color: var(--bg-charcoal);
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-features {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.feature-item:hover .feature-icon-wrapper {
    border-color: var(--accent);
    color: var(--accent-hover);
    box-shadow: 0 0 15px rgba(232, 122, 36, 0.2);
}

.feature-text h4 {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

/* Counters section */
.counters-bar {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.counter-card {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.counter-card:hover {
    border-color: var(--accent);
    box-shadow: 0 5px 20px rgba(232, 122, 36, 0.1);
}

.counter-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.counter-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* Featured Projects Section */
.featured-projects {
    padding: 120px 0;
    background-color: var(--bg-black);
}

.filter-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(232, 122, 36, 0.05);
}

.projects-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 450px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.project-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7,7,8,0) 50%, rgba(7,7,8,0.95) 100%);
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.project-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

.project-title {
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.project-loc {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-link-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    z-index: 3;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(232, 122, 36, 0.15);
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-card:hover .project-link-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Process Section */
.process-sec {
    padding: 120px 0;
    background-color: var(--bg-charcoal);
    border-top: 1px solid var(--border-color);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 80px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.process-timeline-line {
    position: absolute;
    top: 40px;
    left: 5%;
    width: 0%;
    height: 2px;
    background: var(--accent);
    z-index: 2;
    transition: width 1.5s ease-in-out;
}

.process-step {
    width: 18%;
    text-align: center;
    position: relative;
    z-index: 3;
    cursor: pointer;
}

.step-node {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    color: var(--text-muted);
    position: relative;
    transition: var(--transition-smooth);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    background: var(--accent);
    color: var(--bg-black);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.process-step:hover .step-node,
.process-step.active .step-node {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(232, 122, 36, 0.3);
}

.process-step:hover .step-title,
.process-step.active .step-title {
    color: var(--accent);
}

/* Testimonials */
.testimonials-sec {
    padding: 120px 0;
    background-color: var(--bg-black);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 350px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.test-quote {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 30px;
    line-height: 1.5;
    position: relative;
}

.test-quote::before, .test-quote::after {
    content: '"';
    color: var(--accent);
    font-size: 3rem;
    line-height: 1;
    position: absolute;
}

.test-quote::before {
    left: -30px;
    top: -10px;
}

.test-quote::after {
    right: -30px;
    bottom: -30px;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--accent);
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent);
}

.author-role {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--accent);
    width: 25px;
    border-radius: 6px;
}

/* CTA Banner */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-charcoal) 0%, var(--bg-black) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.cta-banner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(232, 122, 36, 0.05);
    border-radius: 50%;
    filter: blur(100px);
    bottom: -150px;
    right: -50px;
}

.cta-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text h2 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 800;
}

.cta-text h2 span {
    color: var(--accent);
}

.cta-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Footer styling */
footer {
    background-color: var(--bg-black);
    padding: 80px 0 30px;
    font-family: var(--font-body);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--bg-black);
    background-color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(232, 122, 36, 0.4);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-link a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-info-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* Page Hero Details (About, Contact, Services, Projects) */
.page-hero {
    height: 60vh;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7,7,8,0.6) 0%, rgba(7,7,8,0.95) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.page-title {
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 800;
}

.page-title span {
    color: var(--accent);
}

/* About Us Page Custom Styles */
.about-section {
    padding: 120px 0;
    background-color: var(--bg-black);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.mission-vision-sec {
    padding: 100px 0;
    background-color: var(--bg-charcoal);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.value-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(232, 122, 36, 0.1);
}

.value-card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.value-card h3 {
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Team section */
.team-sec {
    padding: 120px 0;
    background: var(--bg-black);
}

.team-carousel-wrapper {
    position: relative;
    margin-top: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: var(--transition-smooth);
}

.team-img-box {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.team-info {
    padding: 25px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.team-name {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.team-role {
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.team-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(232, 122, 36, 0.15);
}

.team-card:hover .team-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Service Detail Custom Styles */
.service-details {
    padding: 120px 0;
    background-color: var(--bg-black);
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    margin-bottom: 100px;
}

.service-features-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-feature-box {
    display: flex;
    gap: 15px;
}

.service-feature-box i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 4px;
}

.service-feature-box h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.service-feature-box p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.service-highlights {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 6px;
    align-self: flex-start;
}

.service-highlights h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.highlight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.highlight-item span:first-child {
    color: var(--text-muted);
}

.highlight-item span:last-child {
    font-weight: 600;
}

/* Before / After Effect CSS */
.before-after-sec {
    padding: 100px 0;
    background-color: var(--bg-charcoal);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.comparison-slider-wrapper {
    max-width: 900px;
    margin: 40px auto 0;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slider-img.img-before {
    z-index: 1;
}

.slider-img.img-after {
    z-index: 2;
    width: 50%;
    border-right: 2px solid var(--accent);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--accent);
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.slider-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* Showcase Gallery Lightbox Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    height: 280px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 7, 8, 0.8);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    transition: var(--transition-fast);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 7, 8, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 2.5rem;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--accent);
}

/* Accordion FAQs */
.faq-sec {
    padding: 120px 0;
    background-color: var(--bg-black);
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-card);
    overflow: hidden;
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    transition: var(--transition-fast);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
    max-height: 500px;
}

.faq-item.active .faq-question {
    color: var(--accent);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Contact Page Custom Styles */
.contact-section {
    padding: 120px 0;
    background-color: var(--bg-black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 50px;
    height: 100%;
}

.contact-info-card h3 {
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.form-label {
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -12px;
    font-size: 0.8rem;
    color: var(--accent);
}

.map-container {
    height: 400px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-top: 60px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

/* Animations CSS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1300px) {
    .container {
        padding: 0 30px;
    }
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .about-preview-grid,
    .about-intro-grid,
    .service-intro-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .projects-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    .mission-vision-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nav-menu {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-item:hover .nav-dropdown {
        display: none !important;
    }
    
    .nav-dropdown.show-mobile,
    .nav-item:hover .nav-dropdown.show-mobile {
        display: block !important;
        position: static;
        opacity: 1;
        transform: none;
        background: transparent;
        border: none;
        padding: 10px 0 0 20px;
        box-shadow: none;
    }
    .nav-cta {
        display: flex;
        gap: 10px;
        margin-left: auto;
        margin-right: 20px;
    }
    .nav-cta .btn-secondary {
        display: none;
    }
    .nav-cta .btn-primary {
        padding: 8px 15px;
        font-size: 0.85rem;
        margin-right: 5px !important;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .counters-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }
    .process-timeline::before {
        display: none;
    }
    .process-step {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }
    .step-node {
        margin: 0;
        flex-shrink: 0;
    }
    .comparison-slider {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .projects-masonry {
        grid-template-columns: 1fr;
    }
    .mission-vision-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .counters-bar {
        grid-template-columns: 1fr;
    }
}

/* Custom Interactive Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
    background-color: rgba(232, 122, 36, 0.1);
}
