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

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a2332;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(244, 208, 63, 0.1);
}

nav.scrolled {
    background: rgba(26, 35, 50, 0.98);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(244, 208, 63, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #f4d03f;
}

.nav-menu a.active {
    color: #f4d03f;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f4d03f;
    transition: width 0.3s ease;
}

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

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    padding-right: 2rem;
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(45deg, #f4d03f, #3498db);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.hero-image.flower1 {
    background: linear-gradient(135deg, #f4d03f 0%, #f39c12 100%);
}

.hero-image.flower2 {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    margin: 2rem 0 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-contact {
    font-size: 1.1rem;
    color: #f4d03f;
    text-decoration: underline;
    margin-top: 2rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.hero-contact:hover {
    color: #f1c40f;
}

.hero-portrait {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #f4d03f 0%, #e67e22 50%, #3498db 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-portrait:hover {
    transform: translateY(-10px);
}

/* Work Section */
.work {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #1a2332 100%);
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 3rem;
    text-align: center;
    color: #f4d03f;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.work-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(244, 208, 63, 0.2);
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    box-sizing: border-box;
}

.work-item:hover {
    background: rgba(244, 208, 63, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(244, 208, 63, 0.2);
}

.work-item h3 {
    font-size: 1.5rem;
    color: #f4d03f;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.4;
}

.work-item p {
    color: #bdc3c7;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    margin: 0;
}

/* Impress Section */
.impress {
    padding: 6rem 0;
    padding-top: 10rem;
    background: #1a2332;
    min-height: 100vh;
}

.impress-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impress-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #bdc3c7;
}

.impress-text h2 {
    color: #f4d03f;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.impress-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #1a2332;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #bdc3c7;
}

.about-text a {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #bdc3c7;
}

.about-text h2 {
    color: #f4d03f;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-people-container {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    justify-content: space-between;
    padding: 20px;
    margin: 20px;
}
}

@media (max-width: 1024px) {
    .about-people-container {
        flex-direction: column;
        gap: 2rem;
    }
}

.about-people {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #bdc3c7;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(244, 208, 63, 0.2);
    transition: all 0.3s ease;
    flex: 1;
    min-height: 300px;
    align-items: center;
    justify-content: center;
}

.about-people:hover {
    background: rgba(244, 208, 63, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(244, 208, 63, 0.2);
}

.about-people h3 {
    color: #f4d03f;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-people p {
    margin-bottom: 1rem;
}

.about-people a {
    color: #f4d03f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-people a:hover {
    color: #f1c40f;
}

.about-people img {
    max-width: 200px !important;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Clients Section */
.clients {
    padding: 6rem 0;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.client-item:hover {
    background: rgba(244, 208, 63, 0.1);
    transform: translateY(-3px);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #1a2332;
}

.contact-content {
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-item {
    padding: 2rem;
}

.contact-item h3 {
    color: #f4d03f;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #bdc3c7;
    font-size: 1.1rem;
}

.contact-item a {
    color: #f4d03f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #f1c40f;
}

/* Footer */
.footer {
    background: #0f1419;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(244, 208, 63, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

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

    .about-people-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .work-item {
        padding: 1.5rem;
    }
    
    .work-item h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero-text {
        padding-right: 0;
    }
}

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

    .section-title {
        font-size: 2rem;
    }
    
    .work-item {
        padding: 1rem;
    }
    
    .work-item h3 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .work-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
}

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


.focused-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 42% 58%; /* Focus on specific area */
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}