* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ffc0cb 0%, #ffb6c1 50%, #ffa8ba 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 500px;
    width: 100%;
    position: relative;
}

/* Logo Section */
.logo-section {
    margin-bottom: 30px;
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 15px;
    transform: rotate(45deg);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.logo img {
    transform: rotate(-45deg);
    max-width: 70%;
    max-height: 70%;
}

/* If no logo image, show initials */
.logo::before {
    content: 'HE';
    color: white;
    font-size: 32px;
    font-weight: bold;
    transform: rotate(-45deg);
    position: absolute;
}

.logo img:not([src=""]) ~ .logo::before {
    display: none;
}

/* Company Name */
.company-name {
    font-size: 32px;
    font-weight: 300;
    color: #888;
    margin-bottom: 10px;
    letter-spacing: 8px;
}

.tagline {
    font-size: 14px;
    color: #bbb;
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Know More Button */
.know-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 15px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
    transition: all 0.3s ease;
}

.know-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.5);
}

/* Button Grid */
.button-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

/* Icon Buttons */
.icon-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.icon-button i {
    font-size: 28px;
    color: white;
    /*margin-bottom: 0px;*/
}

.button-label {
    font-size: 11px;
    color: #666;
    margin-top: 8px;
    font-weight: 500;
}

.icon-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Button Colors */
.whatsapp {
    background: linear-gradient(135deg, #7ed957, #4dc247);
}

.call {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.email {
    background: linear-gradient(135deg, #f0e68c, #f4d03f);
}

.contact {
    background: linear-gradient(135deg, #ffb347, #ff8c42);
}

.brochure {
    background: linear-gradient(135deg, #ff6b9d, #ff1744);
}

.share {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.facebook {
    background: linear-gradient(120deg, #3b5998, #00C6FF);
}

.instagram {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
}

.linkedin {
    background: linear-gradient(135deg, #ff0000, #333333);

}

/* Decorative Circle */
.decorative-circle {
    position: absolute;
    top: -50px;
    right: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 480px) {
    .company-name {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .tagline {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .button-grid {
        gap: 20px;
        padding: 0 10px;
    }

    .icon-button {
        width: 70px;
        height: 70px;
    }

    .icon-button i {
        font-size: 24px;
    }

    .button-label {
        font-size: 10px;
    }

    .know-more-btn {
        padding: 12px 40px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .button-grid {
        gap: 15px;
    }

    .icon-button {
        width: 60px;
        height: 60px;
    }

    .icon-button i {
        font-size: 20px;
    }
}
