/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --secondary-black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --accent-blue: #1877F2;
    --white: #FFFFFF;
    --white-80: rgba(255, 255, 255, 0.8);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-40: rgba(255, 255, 255, 0.4);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body.dark-theme {
    background-color: var(--primary-black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 12%;
    z-index: 1000;
    padding: 8px 0;
    background-color: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(10px);
}
/* Update Header Content Layout */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo in Center */
.logo-left {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 70%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

/* Add Company Name on Left */
.company-name-left {
    color: var(--white);
    font-family: 'Montserrat';
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
    transition: var(--transition);
    white-space: nowrap;
}

.company-name-left:hover {
    opacity: 1;
    color: var(--accent-blue);
}

/* Adjust Hamburger Button */
.hamburger-btn {
    margin-left: auto; /* Push to far right */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .company-name-left {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }

    .logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .company-name-left {
        font-size: 1rem;
    }

    .logo-left {
        transform: translate(-50%, -50%) scale(0.9);
    }
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-left .logo-link {
    display: block;
    z-index: 1001;
}

.logo-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.logo-link:hover .logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    transform: scale(1.05);
}

/* Hamburger Button - FIXED */
.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    top: 100%;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    padding: 18px;
    z-index: 1001;
    position: relative;
}

.menu-text {
    opacity: 0.9;
}

.hamburger-icon {
    width: 28px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
    transform-origin: center;
}

/* Hamburger to X Animation - FIXED */
.hamburger-btn.active .line-1 {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .line-2 {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.active .line-3 {
    transform: translateY(-8px) rotate(-45deg);
}

.hamburger-btn.active .menu-text {
    opacity: 0;
}

.hamburger-btn:hover .line {
    background-color: var(--accent-blue);
}

.hamburger-btn:hover .menu-text {
    color: var(--accent-blue);
}

/* Company Name Left */
.company-name-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.company-name-link {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
    white-space: nowrap;
}

.company-name-link:hover {
    opacity: 1;
    color: var(--accent-blue);
}

/* Adjust Logo Center positioning */
.logo-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

/* Adjust Hamburger Button positioning */
.hamburger-btn {
    margin-left: auto;
    position: relative;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .company-name-link {
        font-size: 1.1rem;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 768px) {
    .company-name-link {
        font-size: 1rem;
        letter-spacing: 0.6px;
    }

    .logo-img {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .company-name-left {
        position: relative;
        left: auto;
        transform: none;
        flex: 1;
    }

    .company-name-link {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

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

    .logo-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 50%;
    }

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

/* For smaller screens, hide company name and keep only logo */
@media (max-width: 480px) {
    .company-name-left {
        display: none;
    }

    .logo-center {
        position: absolute;
        left: 20px;
        transform: translateY(-50%);
    }

    .hamburger-btn {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
}
/* Navigation Overlay - FIXED */
.nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-black);
    z-index: 999;
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-overlay.active {
    left: 0;
}

.overlay-inner {
    padding: 0 80px;
    width: 100%;
}

.overlay-nav ul {
    list-style: none;
}

.overlay-nav li {
    margin-bottom: 25px;
    overflow: hidden;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    transform: translateX(-100%);
    transition: var(--transition);
    opacity: 0;
}

.nav-overlay.active .nav-link {
    transform: translateX(0);
    opacity: 0.7;
    transition-delay: calc(var(--i, 0) * 0.1s);
}

.nav-link:hover {
    opacity: 1;
    color: var(--accent-blue);
    transform: translateX(20px);
}

/* Home Page Sections */
.home-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.section-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 500;
    letter-spacing: -2px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease forwards 0.5s;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--accent-blue);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease forwards 0.8s;
}

/* Video Section */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.fullscreen-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Explore Button */
.explore-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 15px 40px;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--accent-blue);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease forwards 1.1s;
}

.explore-btn:hover {
    background-color: var(--accent-blue);
    color: var(--primary-black);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Page - FIXED VISIBILITY */
/*.content-page {
    padding-top: 80px;
    min-height: 100vh;
    background-color: var(--primary-black);
    opacity: 1 !important;
    visibility: visible !important;
}

.content-section {
    padding: 120px 0;
    opacity: 1 !important;
    visibility: visible !important;
}

.content-section:nth-child(even) {
    background-color: var(--secondary-black);
}

.content-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
    position: relative;
    opacity: 1 !important;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-blue);
}

!* Process Steps - FIXED VISIBILITY *!
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 40px 25px;
    position: relative;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.step-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(24, 119, 242, 0.1);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.process-step p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--white-60);
    position: relative;
    z-index: 1;
}

!* Projects Grid - FIXED VISIBILITY *!
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 350px;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.8);
}

.project-item:hover .project-image {
    transform: scale(1.05);
    filter: brightness(1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: var(--white);
}

.project-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.project-overlay p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--white-60);
}

!* Footer - FIXED VISIBILITY *!
.footer {
    background-color: var(--secondary-black);
    padding: 60px 0 30px;
    opacity: 1 !important;
    visibility: visible !important;
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--accent-blue);
}

.footer-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: var(--white-60);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    transition: var(--transition);
}

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

.contact-info {
    margin-top: 15px;
}*/

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--white-60);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--accent-blue);
    margin-right: 12px;
    margin-top: 3px;
    min-width: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--dark-gray);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent-blue);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--dark-gray);
    color: var(--white-40);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 4rem;
    }

    .nav-link {
        font-size: 3rem;
    }

    .content-title {
        font-size: 2.8rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }

    .nav-link {
        font-size: 2.5rem;
    }

    .overlay-inner {
        padding: 0 40px;
    }

    .content-title {
        font-size: 2.3rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .menu-text {
        display: none;
    }

    .hamburger-icon {
        width: 24px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .nav-link {
        font-size: 2rem;
    }

    .overlay-inner {
        padding: 0 20px;
    }

    .content-title {
        font-size: 2rem;
    }

    .explore-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .logo-img {
        height: 30px;
    }
}
