/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 70px;
}

body {
    margin: 0;
    margin-top: 70px;
    padding: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

/* Fixed Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #2c3e50;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    /* color: #556B2F; */
    color: #ffff0c;
}

header nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
}

header nav a:hover {
    text-decoration: underline;
}

/* Video Background Styling */
.video-bg {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay to make text readable */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Content Positioning */
.content-container {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    text-align: center;
}

h1 {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 10px;
}

p {
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #e0e0e0;
}

.glass-effect {
    background-color: rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.responsive-div {
    width: 100%;
    aspect-ratio: 2559 / 1503;
    background-image: url('../VDSHOT.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.5));
}

.text-glow {
  text-shadow: 0 0 8px yellow;
}

   .soft-glow-text {
      font-size: 48px;
      font-weight: bold;
      color: #ffffff; /* Bright white text center */
      
      /* 0 X-offset, 0 Y-offset, 15px blur radius, bright cyan glow color */
      text-shadow: 0 0 15px rgba(0, 255, 204, 0.8);
    }

