* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}

@font-face {
font-family: 'Inter';
font-style: normal;
src: url('../fonts/Inter/Inter_18pt-Medium.ttf'); 
}

body {
font-family: 'Inter', sans-serif;
overflow-x: hidden;
}

.container {
width: 100%;
max-width: 1000px;  
margin: 0 auto;
padding: 0 30px;
}

.highlighter {
color: #00c3ff;
font-weight: 800;
}

h1 {
font-size: 45px;
font-weight: 400;
}

h2 {
font-size: 42px;
font-weight: 300;
margin: 0 auto;
}

p {
font-size: 20px;
margin: 30px 0;
opacity: 0.6;
}

h3 {
font-size: 2.5rem;
font-weight: bold;
margin: 20px 0;
}

h4 {
font-size: 24px;
}

.navbar {
padding-top: 20px;
padding-bottom: 20px;
}

.headers {
width: 100%;
max-width: 1200px;  
margin: 0 auto;
padding: 0 30px;
}

.logo {
max-height: 50px;
}

.hero {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding-top: 50px;
padding-bottom: 50px;
}

.bullet-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-top: 30px;
}

.bullet {
display: flex;
align-items: center;
gap: 15px;
border-radius: 16px;
padding: 10px ;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
font-size: 14px;
font-weight: bold;
transition: all 0.2s ease-in-out;
}

.bullet-icon {
width: 18px;
height: 18px;
background-color: #00c3ff; 
color: #ffffff;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}

.bullet:hover,
.bullet.hover-active { 
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.835);
transform: translateY(-2px);
transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.video-container {
position: relative;
width: 100%; 
overflow: hidden;
}

video {
width: 100%;

display: block;
cursor: pointer;
}

.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
color: white;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
font-size: 18px;
border-radius: 12px;
cursor: pointer;
}

.overlay span {
padding: 10px 15px;
border-radius: 5px;
font-weight: bold;
margin-top: 10px;
}

.progress-container {
bottom: 0;
left: 0;
width: 100%;
height: 8px;
background-color: #ccc;
cursor: pointer;
}

.progress-bar {
height: 100%;
background-color: #00c3ff;
width: 0%;
transition: width 0.1s;
}

.cta {
display: flex;
justify-content: center;
align-items: center;
padding-top: 100px;
padding-bottom: 100px;
margin: 0 auto;  
}

.cta-box {
background: rgba(255, 255, 255, 0.95);
padding: 50px 10px;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
border: 1px solid rgba(255, 255, 255, 0.1);
width: 100%;  
margin: 0 auto;
border-radius: 16px;;
}

.cta-box p {
font-weight: 700;
color: rgba(0, 0, 0, 0.689);
margin-bottom: 25px;
opacity: 10;
}

.cta-button {
display: inline-block;
background: linear-gradient(90deg, #0033cc, #0055ff); 
color: white;
font-size: 20px;
font-weight: bold;
padding: 15px 30px;
border-radius: 10px;
text-decoration: none;
text-align: center;
box-shadow: 0 0 15px rgba(0, 51, 204, 0.6);
transition: all 0.3s ease-in-out;
margin: 30px 0;
}

.cta-button:hover {
background: linear-gradient(90deg, #0055ff, #0033cc);
box-shadow: 0 0 25px rgba(0, 51, 204, 0.8);
transform: scale(1.05);
}

footer p {
margin: 0;
padding: 0;
}

.footer-p a {
display: block; 
color: white;
text-decoration: none; 
font-size: 1em;
line-height: 1.7;
color: #9b9b9b;
}

.footer-p a:hover {
color: #0BA4E0; 
}

.footer-h p {
color: white;
font-size: 1em;
opacity: 1;
}

.footer-color {
background-color: #273171;
}

.footer-container {
display: flex;
flex-wrap: wrap;
gap: 150px;
max-width: 1000px;
margin: 0 auto;
padding-top: 100px;
padding-bottom: 100px;
padding-right: 35px;
padding-left: 35px;
}

.copyright-section {
background-color: #333d7a;
padding: 20px 0;
}

.tags p {
font-size: 14px;
margin: 0;
}

.rights p {
color: #fff;
font-size: 1em;
margin: 0;
opacity: 1;
}

.copyright-section-copy {
display: flex;
flex-wrap: wrap;
align-items: center; 
justify-content: space-between;
max-width: 1000px;
margin: 0 auto;
padding-right: 35px;
padding-left: 35px;
}

@media screen and (max-width: 800px) {

h1 {
font-size: 32px;
}

h2 {
font-size: 42px;
font-weight: 300;
margin: 0 auto;
}

p {
font-size: 14px;
margin: 30px 0;
opacity: 0.6;
}

.cta-button {
display: inline-block;
background: linear-gradient(90deg, #0033cc, #0055ff); 
color: white;
font-size: 14px;
font-weight: bold;
padding: 10px 20px;
border-radius: 10px;
text-decoration: none;
text-align: center;
box-shadow: 0 0 15px rgba(0, 51, 204, 0.6);
transition: all 0.3s ease-in-out;
}

.bullet {
display: flex;
align-items: center;
gap: 10px;
border-radius: 10px;
padding: 10px ;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
font-size: 10px;
font-weight: bold;
}

.bullet-icon {
width: 18px;
height: 18px;
background-color: #00c3ff; 
color: #ffffff;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}

.play-button img {
width: 40px; 
height: 40px; 
}
}

@media screen and (max-width: 620px) {

h1 {
font-size: 22px;
}

p {
font-size: 14px;
line-height: 1.4;
}

.bullet-container {
flex-direction: column;
gap: 15px;
align-items: center;
}

.bullet {
font-size: 12px;
padding: 8px 12px;
gap: 10px;
width: 100%;
justify-content: center;
}

.video-container {
margin-top: 20px;
}

.play-button img {
width: 20px; 
height: 20px; 
}

.overlay {
font-size: 14px;
padding: 10px;
}

.overlay span {
font-size: 12px;
}

.cta {
padding-top: 50px;
padding-bottom: 50px;
}

.cta-box {
padding: 20px 15px;
}

.cta-box p {
font-size: 14px;
}

.cta-button {
font-size: 14px;
padding: 10px 20px;
}

}
