:root {
    --primary: #FF6A2D;
    --accent: #E84D1C;
    --dark: #0f0b09; /* Deep dark reddish-black */
    --soft: #F2F2F2;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    background-color: var(--dark);
    background-image: url('/images/bg-full.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    color: var(--soft);
    overflow-x: hidden;
}

.text-primary {
    color: var(--primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    margin: 0;
    font-weight: 600; /* Less bold than before */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-img {
    height: 35px;
    width: auto;
}

.nav-center {
    display: flex;
    gap: 50px;
}

.nav-center a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    font-weight: 500;
    opacity: 0.8;
}

.nav-center a:hover {
    opacity: 1;
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-bar {
    cursor: pointer;
    color: var(--primary);
    font-size: 24px;
    transition: color 0.3s;
}

.menu-bar:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 50px;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('/images/thumb1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: none;
    z-index: -1;
}

.hero-content {
    width: 100%;
}

.hero-headline {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    max-width: 800px;
    font-weight: 500;
}

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

/* Button Styles - Gradient and glow */
.btn {
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(129deg, #ff9e1b 0%, #df5806 20%, #6d2d14 100%) padding-box,
                linear-gradient(90deg, rgba(252,176,80,1) 0%, rgba(252,176,80,0.5) 100%) border-box;
    background-size: 200% auto;
    color: white;
    border: 1px solid transparent;
    border-radius: 6px;
}

.btn-outline {
    background: linear-gradient(129deg, #492620 0%, #0b0505 100%) padding-box,
                linear-gradient(90deg, rgb(102, 72, 34) 0%, rgba(130, 57, 16, 0.33) 100%) border-box;
    background-size: 200% auto;
    color: white;
    border: 1px solid transparent;
    border-radius: 6px;
}

.btn-primary:hover, .btn-outline:hover {
    background-position: right center;
}

.btn-primary-small, .btn-outline-small {
    padding: 10px 24px;
    font-size: 13px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 20px;
}

.btn-primary-small {
    background: linear-gradient(129deg, #ff9e1b 0%, #df5806 20%, #6d2d14 100%) padding-box,
                linear-gradient(90deg, rgba(252,176,80,1) 0%, rgba(252,176,80,0.5) 100%) border-box;
    background-size: 200% auto;
    color: white;
    border: 1px solid transparent;
    border-radius: 6px;
}

.btn-outline-small {
    background: linear-gradient(129deg, #492620 0%, #0b0505 100%) padding-box,
                linear-gradient(90deg, rgb(102, 72, 34) 0%, rgba(130, 57, 16, 0.33) 100%) border-box;
    background-size: 200% auto;
    color: white;
    border: 1px solid transparent;
    border-radius: 6px;
}

.btn-primary-small:hover, .btn-outline-small:hover {
    background-position: right center;
}

/* Typography elements */
.section-subtitle {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 500;
}

.section-title-center {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 500;
}

.section-subtitle-center {
    text-align: center;
    font-size: 15px;
    opacity: 0.7;
    margin-bottom: 50px;
}

/* Common Grids */
.about {
    padding: 100px 0;
}

.featured {
    padding: 150px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.featured-slider {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

.featured-slider .slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.featured-slider .slide.active {
    opacity: 1;
}

.slider-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: none;
    z-index: 1;
}

.featured-text-centered {
    max-width: 600px;
}

.about-grid, .featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-desc, .featured-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #ccc;
    opacity: 0.8;
}

.about-desc p, .featured-desc p {
    margin-bottom: 15px;
}

/* Visual Placeholders */
.visual-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.img-about {
    background-image: url('/images/about.jpg');
}



.logo-overlay {
    font-family: var(--heading-font);
    font-size: 5rem;
    color: var(--primary);
    font-weight: 600;
    text-shadow: 0 0 30px rgba(255, 106, 45, 0.6);
    opacity: 0.8;
}

/* Services */
.services {
    padding: 80px 0;
    position: relative;
}

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

.service-card {
    height: 380px;
    background: linear-gradient(to bottom, #1a1411, #0a0505) padding-box,
                linear-gradient(180deg, rgba(255, 106, 45, 0.5) 0%, rgba(255, 106, 45, 0) 100%) border-box;
    border: 1px solid transparent;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.card-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('/images/abstract_neon_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: all 0.5s ease;
}

.service-card:hover .card-bg {
    transform: scale(1.05);
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(255,106,45,0.2);
    transform: translateY(-5px);
}

.card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    box-sizing: border-box;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to top, rgba(15,11,9,0.9) 0%, rgba(15,11,9,0.3) 100%);
}

.card-text-top {
    text-align: center;
    margin-top: 10px;
}

.card-text-top h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.card-desc {
    font-size: 13px;
    color: #ccc;
    line-height: 1.6;
    opacity: 0.8;
}

.card-footer-bottom {
    text-align: center;
}

.card-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 106, 45, 0.5), transparent);
    margin-bottom: 20px;
}

.card-btn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-card:hover .card-btn-more {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 15px rgba(255,106,45,0.6);
}

/* CTA */
.cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.small-text-center {
    font-family: var(--body-font);
    font-size: 12px;
    letter-spacing: 3px;
    opacity: 0.5;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 2.8rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
    font-weight: 500;
}

/* Timeline Section */
.timeline {
    padding: 100px 0;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 106, 45, 0.2);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-dot {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 0 15px rgba(255, 106, 45, 0.6);
    transition: transform 0.3s ease;
}

.timeline-step:hover .step-dot {
    transform: scale(1.5);
    background: var(--accent);
}

.timeline-step h3 {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Client Trust Section */
.trust {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 40px;
    margin-bottom: 60px;
}

.metric-item .counter {
    font-size: 4rem;
    color: var(--primary);
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 10px;
}

.metric-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.5;
}

.logo-placeholder {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    padding: 20px 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
}

/* Behind The Scenes */
.behind-scenes {
    padding: 100px 0;
}

.bts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.bts-desc p {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 300;
}

.img-bts {
    background-image: url('/images/bts_orange_bg.png');
    transition: transform 0.5s ease;
}

.img-bts:hover {
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: #0a0505;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 106, 45, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .about-grid, .featured-grid, .bts-grid, .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-center { display: none; }
    .hero-headline { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .timeline-container { flex-direction: column; gap: 40px; }
    .timeline-line { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
}

@media (max-width: 600px) {
    .services-grid, .metrics-grid { grid-template-columns: 1fr; }
    .hero-headline { font-size: 2.2rem; }
    .hero-ctas { flex-direction: column; }
    .navbar { padding: 20px; }
    .container { padding: 0 20px; }
}
