
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #eee2df;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


.corporate-hero {
    height: 70vh;
    background: url("images/corporateevent.png") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(179, 106, 94, 0.55);
}

.hero-content {
    position: relative;
    max-width: 600px;
    padding-left: 80px;
    color: #fff;
}

.hero-content span {
    letter-spacing: 2px;
    font-size: 14px;
}

.hero-content h1 {
    font-size: 48px;
    margin: 15px 0;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.8;
}

.hero-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    background: #c89f9c;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
}


.corporate-services {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #b36a5e;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    
}

.service-card:hover {
    transform: translateY(-8px);
    border: 2px solid #bc8c80;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 0;
    font-size: 20px;
    position: relative;
}

.service-card h3::after {
    content: '';
    width: 40px;
    height: 3px;
    background: #c89f9c;
    display: block;
    margin-top: 8px;
}

.service-card p {
    padding: 15px 20px 25px;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}


@media (max-width: 768px) {
    .hero-content {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 34px;
    }
}
