:root {
    /* Brand Colors */
    --primary: #FF6B00;
    /* Orange */
    --primary-dark: #e65100;
    --secondary: #121212;
    /* Deep Black */
    --surface: #1E1E1E;
    /* Dark Gray */
    --text: #ffffff;
    --text-muted: #b0b0b0;
    --light: #f4f4f4;

    /* CMYK Accents */
    --cyan: #00AEEF;
    --magenta: #EC008C;
    --yellow: #FFF200;
    --black-k: #231F20;

    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: white;
    color: var(--secondary);
}

/* Navbar */
.navbar {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    background: white;
    padding: 5px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    object-fit: contain;
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-contact {
    background: var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    color: white !important;
}

.btn-contact:hover {
    background: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #121212 0%, #2a2a2a 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    /* Center align all hero content */
    margin: 0 auto;
}

.hero-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin: 0 auto 40px auto;
    display: block;
    filter: brightness(0) invert(1);
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.highlight {
    background: linear-gradient(to right, var(--primary), #FF9100);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* CMYK Decorative Stripes */
.cmyk-stripes {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 30%;
    display: flex;
    transform: skewX(-15deg) translateX(100px);
    opacity: 0.1;
    z-index: 1;
}

.stripe {
    flex: 1;
    height: 100%;
}

.cyan {
    background: var(--cyan);
}

.magenta {
    background: var(--magenta);
}

.yellow {
    background: var(--yellow);
}

.black {
    background: var(--black-k);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--surface);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--cyan), var(--magenta), var(--yellow), var(--black-k));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    margin-bottom: 10px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card ul li::before {
    content: '•';
    color: var(--primary);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #181818;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.history-text h3,
.market-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text);
}

.history-text p,
.market-section p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.objective-box {
    background: rgba(255, 107, 0, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    margin: 30px 0;
}

.objective-box h4 {
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.objective-box p {
    margin-bottom: 0;
    font-size: 1rem;
}

.mission-vision {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.mv-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

.mv-item h4 {
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-item h4 i {
    color: var(--primary);
}

.mv-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.market-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
}

.market-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    padding: 12px 20px;
    border-radius: 10px;
    transition: var(--transition);
}

.market-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.market-list li i {
    color: var(--primary);
    font-size: 0.8rem;
}

.market-focus {
    margin-top: 20px;
    color: var(--text) !important;
    border-left: 3px solid var(--primary);
    padding-left: 15px;
}

.testimonial-box {
    background: linear-gradient(135deg, var(--surface), #252525);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 15px;
}

.testimonial-box p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
}

/* Join Team Section */
.join-team {
    padding: 100px 0;
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
    position: relative;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    color: var(--text);
    margin-left: 5px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.input-icon input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff !important;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.input-icon input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.input-icon input:focus+i {
    color: var(--primary-dark);
}

.input-icon input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
    border: none;
    font-size: 1.1rem;
    padding: 16px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: var(--surface);
    border-radius: 20px;
    overflow: hidden;
}

.contact-info {
    padding: 60px;
}

.contact-info h2 {
    margin-bottom: 10px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.map-container {
    min-height: 400px;
}

/* Footer */
.main-footer {
    background: #0a0a0a;
    padding: 80px 0 30px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo-container {
    background: white;
    display: inline-block;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 60px;
    width: auto;
    display: block;
}

.footer-brand h3 {
    color: var(--text);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-info h4,
.footer-hours h4 {
    color: var(--text);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-info h4::after,
.footer-hours h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-links i {
    color: var(--primary);
    margin-top: 5px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.hours-list li span {
    color: var(--text);
}

.footer-social {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 400px;
    }

    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--surface);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        padding: 10px 0;
    }

    .btn-contact {
        display: inline-block;
        margin-top: 10px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        text-align: center;
        justify-content: center;
        padding-top: 120px;
        height: auto;
        min-height: 100vh;
        padding-bottom: 60px;
    }

    .hero-content {
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        padding: 0 20px;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .cmyk-stripes {
        opacity: 0.05;
        width: 100%;
        transform: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-info {
        padding: 30px;
    }

    /* Center Footer on Mobile */
    .footer-content {
        text-align: center;
        gap: 40px;
        grid-template-columns: 1fr;
    }

    .footer-logo-container {
        display: inline-block;
        margin: 0 auto 20px;
    }

    .footer-info h4::after,
    .footer-hours h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links li {
        justify-content: center;
    }

    .hours-list li {
        justify-content: space-between;
        max-width: 300px;
        margin: 0 auto 10px;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-logo {
        max-width: 200px;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Dynamic Carousels Section */
.portfolio-section {
    padding: 100px 0;
    background: var(--secondary);
}

.portfolio-category {
    margin-bottom: 80px;
}

.portfolio-category h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text);
    border-left: 5px solid var(--primary);
    display: inline-block;
    padding-left: 15px;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: rgba(30, 30, 30, 0.5);
    /* Semi-transparent dark background */
    backdrop-filter: blur(10px);
}

.carousel-slide {
    display: none;
    height: 500px;
    /* Increased height for better vertical image visibility */
    position: relative;
}

.carousel-slide.active {
    display: block;
    animation: fadeEffect 1s;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensures full image is visible without cropping */
    object-position: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Navigation Buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    z-index: 10;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: var(--primary);
}

/* Caption */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

@keyframes fadeEffect {
    from {
        opacity: 0.4
    }

    to {
        opacity: 1
    }
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
    animation: zoomIn 0.3s;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .carousel-slide {
        height: 300px;
    }

    .prev,
    .next {
        font-size: 14px;
        padding: 10px;
    }
}