* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:
        "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans",
        Arial, sans-serif;
}

body {
    height: 200vh;
    background: #f5f9ff;
}

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

/* LOGO */

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0d6efd;
    letter-spacing: 1px;
    cursor: pointer;
}

/* MENU */

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* hover line */

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #0d6efd;
    transition: 0.4s;
}

.nav-menu a:hover {
    color: #0d6efd;
}

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

/* RIGHT SECTION */

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* BUTTON */

.nav-btn {
    padding: 10px 22px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #0d6efd, #3d8bfd);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

/* MOBILE MENU ICON */

.menu-toggle {
    font-size: 22px;
    display: none;
    cursor: pointer;
}

.btn.outline:hover {
    background-color: #00c6f0;
}

/* MOBILE */

@media (max-width: 900px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 50%;
        background: white;
        flex-direction: column;
        text-align: left;
        padding: 25px 0;
        gap: 25px;
        transition: 0.4s;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .nav-menu li {
        padding-left: 50px;
    }

    .hero-btn {
        margin-top: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-btn {
        display: none;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f7f9fc;
}

/* HERO VIDEO SECTION */
.hero-video {
    position: relative;
    width: 100%;
    height: 90vh;
    /* Full viewport height */
    overflow: hidden;
}

/* Video as background */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    object-fit: cover;
    /* Cover entire section */
    z-index: 1;
}

/* Content overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertical center */
    align-items: center;
    /* Horizontal center */
    text-align: center;
    /* background: rgba(0/,0,0,0.35); Optional dark overlay for readability */
    color: #fff;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 48px;

    font-size: 52px;
    font-weight: 800;

    margin-bottom: 20px;
    font-family:
        "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans",
        Arial, sans-serif;
}

.hero-overlay h1 span {
    color: #00c6f0;
    /* Gold accent */
}

.hero-overlay h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 18px;
    margin-bottom: 20px;
    font-family:
        "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans",
        Arial, sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-family:
        "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans",
        Arial, sans-serif;
}

.btn {
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.4s ease;
}

.btn.gold {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn.gold:hover {
    background: #00c6f0;
    transform: translateY(-2px);
}

.btn.outline {
    border: 1px solid #fff;
    color: #fff;
}

.btn.outline:hover {
    background: transparent;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay h2 {
        font-size: 20px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

/* GOOGLE FONT */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f4f8ff;
}

/* SECTION */

.welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 10%;
    gap: 60px;
    overflow: hidden;
}

/* CONTENT */

.welcome-content {
    flex: 1;
    animation: fadeSlideLeft 1s ease forwards;
    opacity: 0;
}

.welcome-content h4 {
    color: #0d6efd;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.welcome-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    margin-bottom: 20px;
}

/* GRADIENT TEXT */

.welcome-content h1 span {
    background: linear-gradient(90deg, #0d6efd, #3d8bfd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

/* BUTTONS */

.welcome-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    padding: 12px 28px;
    background: linear-gradient(135deg, #0d6efd, #3d8bfd);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

.btn-outline {
    padding: 12px 28px;
    border: 2px solid #0d6efd;
    background: transparent;
    color: #0d6efd;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #0d6efd;
    color: white;
}

/* IMAGE */

.welcome-image {
    flex: 1;
    animation: fadeSlideRight 1s ease forwards;
    opacity: 0;
}

.welcome-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.welcome-image img:hover {
    transform: scale(1.05);
}

/* ANIMATIONS */

@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .welcome {
        flex-direction: column;
        text-align: center;
    }

    .welcome-content h1 {
        font-size: 34px;
    }

    .welcome-buttons {
        justify-content: center;
    }
}

/* ABOUT PREMIUM */

.about-premium{
display:flex;
align-items:center;
justify-content:space-between;
padding:100px 10%;
gap:60px;
background:white;
overflow:hidden;
}

/* IMAGE */

.about-image{
flex:1;
animation:fadeLeft 1s ease forwards;
opacity:0;
}

.about-image img{
width:100%;
border-radius:15px;
box-shadow:0 15px 40px rgba(0,0,0,0.1);
transition:0.4s;
}

.about-image img:hover{
transform:scale(1.05);
}

/* CONTENT */

.about-content{
flex:1;
animation:fadeRight 1s ease forwards;
opacity:0;
}

.about-content h4{
color:#0d6efd;
letter-spacing:2px;
font-size:14px;
margin-bottom:10px;
}

.about-content h2{
font-size:44px;
font-weight:800;
color:#111;
line-height:1.2;
margin-bottom:20px;
}

/* GRADIENT TEXT */

.about-content h2 span{
background:linear-gradient(90deg,#0d6efd,#3d8bfd);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.about-content p{
color:#555;
line-height:1.6;
margin-bottom:30px;
}

/* STATS */

.about-stats{
display:flex;
gap:40px;
margin-bottom:30px;
}

.stat h3{
font-size:28px;
color:#0d6efd;
}

.stat p{
font-size:14px;
color:#777;
}

/* BUTTON */

.about-btn{
padding:12px 26px;
background:linear-gradient(135deg,#0d6efd,#3d8bfd);
color:white;
border:none;
border-radius:8px;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.about-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(13,110,253,0.3);
}

/* ANIMATIONS */

@keyframes fadeLeft{
from{
opacity:0;
transform:translateX(-50px);
}
to{
opacity:1;
transform:translateX(0);
}
}

@keyframes fadeRight{
from{
opacity:0;
transform:translateX(50px);
}
to{
opacity:1;
transform:translateX(0);
}
}

/* RESPONSIVE */

@media(max-width:900px){

.about-premium{
flex-direction:column;
text-align:center;
}

.about-content h2{
font-size:30px;
}

.about-stats{
justify-content:center;
}

}