/* Homepage Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    overflow: hidden;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    padding: 50px;
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 120px;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.gold-divider {
    width: 100%;
    height: 3px;
    background-color: #d4af37;
    margin: 30px 0;
    position: relative;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
}

.contact-icon {
    color: #d4af37;
    font-size: 1.2rem;
}

/* Circuit board image */
.circuit-image {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50%;
    height: auto;
    z-index: 1;
}

.circuit-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Gold accent animation */
.gold-accent-animation {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gold-curve {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 70%;
    height: 80%;
    border-radius: 50%;
    border: 3px solid #d4af37;
    opacity: 0.3;
    animation: pulse 4s infinite alternate;
}

.gold-curve:nth-child(2) {
    top: 20%;
    right: -5%;
    width: 60%;
    height: 70%;
    animation-delay: 1s;
}

.gold-curve:nth-child(3) {
    top: 30%;
    right: 0;
    width: 50%;
    height: 60%;
    animation-delay: 2s;
}

@keyframes pulse {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }
    100% {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

/* Responsive styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        width: 60%;
    }
    
    .circuit-image {
        width: 40%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        justify-content: center;
        padding: 50px 0;
    }
    
    .hero-content-wrapper {
        width: 100%;
        padding: 20px;
        align-items: center;
        text-align: center;
    }
    
    .circuit-image {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 80%;
        margin: 30px auto 0;
    }
    
    .hero-logo {
        width: 100px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-info {
        align-items: center;
    }
}

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