* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    overflow: hidden;
}

/* Background Video */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}

video::-webkit-media-controls {
  display: none !important;
}


/* Dark Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: -1;
}


/* Page Container */
.contact-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.contact-container h1 {
    font-size: 30px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px black;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px black;
}

/* Contact Box */
.contact-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px 40px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Text inside Box */
.contact-box p {
    font-size: 18px;
    margin: 10px 0;
}

/* LinkedIn Button */
.linkedin-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 22px;
    background: #0A66C2; /* LinkedIn blue */
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.linkedin-btn:hover {
    background: #084c91;
}

/* Home Button */
.back-btn {
    display: inline-block;
    margin-top: 20px;
    background: white;
    color: black;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.back-btn:hover {
    background: #d0b56f;
    color: white;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 10px 18px;
    background: #25D366;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

.wa-icon {
    width: 22px;
    height: 22px;

}

video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
