* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 1em 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    color: rgb(11, 64, 64);
    font-size: 1.8em;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.3);
    flex-shrink: 0;
}
#logo a {
    text-decoration: none;
    color: rgb(11, 64, 64);
}

.nav-bar ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.5em;
    margin-left: auto; /* Pushes nav to the right */
}

.nav-bar li a {
    color: rgb(11, 64, 64);
    font-weight: 600;
    font-size: 1em;
    position: relative;
    text-decoration: none;
    padding: 4px 6px;
    transition: all 0.3s ease-in-out;
    font-family: Arial, Helvetica, sans-serif;
}

.nav-bar li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: rgb(11, 64, 64);
    transition: 0.4s ease;
}

.nav-bar li a:hover::after {
    width: 100%;
}

.nav-bar li a:hover {
    color: rgb(53, 42, 28);
}
.nav-bar ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.5em;
}

.register {
  margin-left: auto;  /* pushes first register item and the one after it to far right */
}

.register a,
.register {
  padding: 6px 12px;
  border-radius: 2px;
  font-weight: 600;
  color: rgb(11, 64, 64);
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1{
    text-align:left;
    font-family: Arial, Helvetica, sans-serif;
    color:rgb(182, 214, 214);
    padding: 30px;
    padding-left: 10px;
    padding-top: 100px;;

}
body {
    background-color:rgb(24, 21, 53);
}

p {
    color: rgb(182, 214, 214);
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    padding-left: 10px;
}
.flex-container {
    display: flex;
    background-color: transparent;
    
}
.flex-container > div {
    width: 500px;
    margin: 50px;
    

}

#videoPlay {
    display:flex;
    margin: 40px;
    height: 250px;
    width: 500px;
    overflow: hidden;
    position:relative;
    border-radius: 10px;

}
.video {
    position: relative;
    left: 0;
    top: 0;
    opacity: 1;
    border-radius: 20px;
    align-items:flex-end;
}
.vid{
    text-align: center;
}
.active {
    color: rgb(3, 14, 14);
    text-decoration: underline;
    height: 10px;
    text-size-adjust: 5px;
}
#get-started {
    padding-left: 45px;
    font-family: Arial, Helvetica, sans-serif;
    
}
#get-started input[type="button"] {
    font-family: 'Arial', sans-serif; 
    font-weight: bold;               /* Optional: make it bold */
}
input[type=button] {
    margin: 10px;
    padding: 20px;
    
}
input[type=button]:hover {
    background-color: rgb(179, 221, 221);
    transition: all 1s ease-in-out;
    
}

.video-sec {
    margin-top: 50px;
    background-color: #2196F3; /* blue */
    color: white;
    width: 100%;         /* Ensure full width */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    padding: 20px 0;      /* Optional: spacing inside */
    margin: 0;            /* Prevent unintended spacing */
   
}

