:root {
    --primary: #F6A623;
    --secondary: #E94E3C;
    --accent: #1E3A8A;
    --bg: #F5F7FA;
    --text: #1F2933;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 60px;
}

.navbar nav a {
    margin-left: 10px;
    text-decoration: none;
    color: #333;
    padding: 6px 14px;
    border-radius: 6px;
    transition: 0.2s;
    font-size: 14px;
}

.navbar nav a:hover {
    background: var(--accent);
    color: white;
}

/* Hero */
.hero {
    padding: 80px 20px;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-slider {
    max-width: 700px;
    margin: auto;
}

.slide {
    display: none;
    animation: fade 0.6s ease-in-out;
}

.slide.active {
    display: block;
}

.slide h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

@keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Services */
.services {
    padding: 50px 20px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Profile */
.profile-banner {
    background: linear-gradient(135deg, var(--accent), #4c6ef5);
    color: white;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about, .vision {
    padding: 40px;
    background: white;
    margin: 15px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Clients */
.hq {
    padding: 40px;
    background: white;
    margin: 20px 40px;
    border-radius: 10px;
    text-align: center;
}

.hq-list {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 30px;
}

.circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #ddd;
}

.circle img {
    width: 75%;
    height: 75%;
    object-fit: contain;
}

.hq-item a {
    display: block;
    margin-top: 10px;
    text-decoration: none;
    color: var(--accent);
    font-weight: 500;
}

/* Message */
.message {
    padding: 40px;
    margin: 20px 40px;
    background: white;
    border-radius: 10px;
}

.message-container {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

form {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

button {
    padding: 10px;
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: var(--secondary);
}

.output {
    width: 50%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: #f9fafb;
}

/* ===== MUSIC PLAYER ===== */

.music-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 3000;
}

/* Circle Button */
.music-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.music-circle:hover {
    transform: scale(1.1);
}

/* Player Popup */
.music-player {
    width: 320px;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 15px;
    color: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    display: none;
    flex-direction: column;
    gap: 15px;
    animation: fadeIn 0.3s ease-in-out;
}

.music-player.active {
    display: flex;
}

.music-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.music-header h4 {
    margin: 0;
    font-size: 16px;
}

.music-header span {
    font-size: 12px;
    opacity: 0.7;
}

.music-header button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

/* Controls */
.music-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.music-controls button {
    background: none;
    border: none;
    font-size: 22px;
    color: white;
    cursor: pointer;
}

/* Progress */
.progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.progress-container input {
    flex: 1;
}

/* Volume */
.volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {

    .music-player {
        width: 90vw;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        text-align: center;
    }

    .about, .vision,
    .hq,
    .message {
        margin: 15px;
        padding: 25px;
    }

    .hq-list {
        flex-direction: column;
        gap: 30px;
    }

    .message-container {
        flex-direction: column;
    }

    form, .output {
        width: 100%;
    }
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}