/* 
 * Strap YB - Premium Industrial Design System
 * Author: TIKATECHDZ for TIKATECHDZ
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #38b763;
    --primary-light: #4ade80;
    --primary-dark: #2a8a4b;
    --secondary: #121212;
    --accent: #f59e0b;
    --bg-light: #f8faf9;
    --bg-dark: #0a0a0a;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.95);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

/* Ensure no horizontal scroll from layout */
body {
    overflow-x: hidden;
    width: 100%;
}


@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Premium Header with Glassmorphism */
header {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-base);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
    transition: var(--transition-base);
}


.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #444;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 50px;
    transition: var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Hero Section - High End Gradients */
.hero {
    position: relative;
    height: 95vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    background: var(--secondary);
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(75deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(56, 183, 99, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: var(--white);
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    opacity: 0.85;
    margin-bottom: 3.5rem;
    font-weight: 400;
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(56, 183, 99, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(56, 183, 99, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
    transform: translateY(-8px);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 60px;
    position: relative;
}

.section-title .label {
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 1.5rem;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    max-width: 700px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Feature Cards with Glass & Hover effects */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.premium-card {
    background: var(--white);
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.premium-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-lg);
}

.premium-card .icon-box {
    width: 90px;
    height: 90px;
    background: var(--bg-light);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    color: var(--primary);
    font-size: 2.5rem;
    transition: var(--transition-base);
}

.premium-card:hover .icon-box {
    background: var(--primary);
    color: var(--white);
    transform: rotate(10deg);
}

/* Industrial Statistics */
.stats-banner {
    background: var(--secondary);
    padding: 100px 0;
    position: relative;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
}

.stat-item h3 {
    font-size: 4.5rem;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

/* Road Texture Animation */
.road-texture {
    position: relative;
}

.road-texture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.02) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

/* Projects Showcase */
.project-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 500px;
    /* cursor: pointer; Removed as per user request (no link) */
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 60%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: var(--transition-base);
}

.project-card:hover img {
    transform: scale(1.15);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h4 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 4rem;
    }
}

/* Animations & Special Effects */
@keyframes ken-burns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(5px, 5px);
    }
}

.animate-ken-burns {
    animation: ken-burns 12s ease-out infinite alternate;
}

[dir="rtl"] .fa-arrow-right {
    transform: rotate(180deg);
}
