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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Common Styles */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.center {
    text-align: center;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background-color: #6B8F8C;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Button */
.btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #6B8F8C;
    color: #fff;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #5a7c79;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 30px;
    margin-right: 10px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    transition: color 0.3s ease;
}

header.scrolled .logo-text {
    color: #333;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 24px;
    position: relative;
}

.nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

header.scrolled .nav-toggle span {
    background: #333;
}

.nav-toggle span:nth-child(1) {
    top: 0px;
}

.nav-toggle span:nth-child(2), .nav-toggle span:nth-child(3) {
    top: 10px;
}

.nav-toggle span:nth-child(4) {
    top: 20px;
}

.nav-toggle.active span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.nav-toggle.active span:nth-child(2) {
    transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.nav-toggle.active span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 40px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: color 0.3s ease;
    position: relative;
}

header.scrolled .nav-link {
    color: #333;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #6B8F8C;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('../img/Designer.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Rouge Script', cursive;
    font-size: 80px;
    color: #fff;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease both;
    animation-delay: 0.3s;
}

.hero-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 1s ease both;
    animation-delay: 0.6s;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Services Section */
.services {
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    height: 140px;
    background-color: #6B8F8C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.service-details ul {
    list-style: none;
    margin-top: 15px;
}

.service-details li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
    font-size: 14px;
}

.service-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #6B8F8C;
}

/* Company Info Section */
.company-info {
    background-color: #f9f9f9;
}

.company-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    overflow: hidden;
}

.company-table tr {
    border-bottom: 1px solid #eee;
}

.company-table tr:last-child {
    border-bottom: none;
}

.company-table th, .company-table td {
    padding: 20px 30px;
    text-align: left;
}

.company-table th {
    width: 30%;
    font-weight: 700;
    color: #333;
    background-color: #f5f5f5;
}

/* Contact Section */
.contact {
    background-color: #fff;
    text-align: center;
}

.contact-text {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    opacity: 0.7;
}

/* Media Queries */
@media (max-width: 1200px) {
    .services-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 60px;
    }
    
    .hero-content p {
        font-size: 22px;
    }
    
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .nav-link {
        color: #333 !important;
        font-size: 18px;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .company-table th, .company-table td {
        padding: 15px 20px;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .company-table th, .company-table td {
        display: block;
        width: 100%;
    }
    
    .company-table th {
        padding-bottom: 5px;
    }
    
    .company-table td {
        padding-top: 5px;
    }
}