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

:root {
    --dark-bg: #1a1a1a;
    --charcoal: #2d2d2d;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --blue: #1e3a8a;
    --blue-light: #3b82f6;
    --text-light: #e5e5e5;
    --text-dark: #999;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
    padding: 2rem 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo-container {
    text-align: center;
    margin-bottom: 1.5rem;
    background: 
        linear-gradient(135deg, rgba(45, 45, 45, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0, 0, 0, 0.1) 2px, rgba(0, 0, 0, 0.1) 4px);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.logo-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.6)) 
            drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-image:hover {
    filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.8)) 
            drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

.logo-png {
    display: none;
}

.logo-fallback {
    display: none;
}

/* Fallback text logo styles (shown only if images fail to load) */
.logo-fallback {
    display: none;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    font-style: italic;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.logo-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    filter: blur(2px);
}

.logo-icon {
    color: var(--gold);
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.logo-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
}

.logo-subtitle i {
    font-size: 1rem;
}

.navbar {
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--charcoal) 100%);
}

.hero-slogan {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: fadeInUp 1s ease;
}

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

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.video-player {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: var(--charcoal);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--text-light);
    text-align: left;
    z-index: 2;
}

.video-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.video-info p {
    font-size: 1rem;
    color: var(--text-light);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--dark-bg);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--gold-light);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7);
}

.video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    border: none;
    color: var(--dark-bg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-nav:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.video-nav.prev {
    left: -25px;
}

.video-nav.next {
    right: -25px;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: var(--charcoal);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.service-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Portfolio Section */
.portfolio {
    padding: 5rem 2rem;
    background: var(--dark-bg);
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.project-image {
    width: 100%;
    padding-top: 100%; /* Square aspect ratio */
    position: relative;
    border-radius: 10px;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-overlay h4 {
    color: var(--gold);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: var(--charcoal);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--dark-bg) 100%);
    padding: 4rem 2rem 2rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    position: relative;
}

.social-media {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--gold-light);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.copyright {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.footer-title {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.form-input,
.form-textarea {
    padding: 0.8rem;
    background: rgba(26, 26, 26, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-dark);
}

.submit-button {
    padding: 1rem 2rem;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-button:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.5);
}

.decorative-star {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 2rem;
    opacity: 0.6;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slogan {
        font-size: 2rem;
    }

    .logo-text {
        font-size: 2.5rem;
    }

    .nav-list {
        gap: 1.5rem;
    }

    .video-nav {
        display: none;
    }

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

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

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

    .decorative-star {
        display: none;
    }
}

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

    .logo-text {
        font-size: 2rem;
    }

    .nav-list {
        gap: 1rem;
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
