:root {
    --primary: #fdd509;
    --secondary: #f5f7f8;
    --tetriary: #46d2a4;
    --fouthcolor: black;
    --navbar-bg: transparent;
    --navbar-bg-scrolled: var(--fouthcolor);
    --hover-bg: rgba(244, 206, 20, 0.2); 
    --transition-speed: 0.3s;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: var(--primary);
    color: var(--fouthcolor);
}

header.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    background: var(--navbar-bg);
    color: var(--secondary);
    z-index: 100;
    transition: background var(--transition-speed);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header.navbar.scrolled {
    background: var(--navbar-bg-scrolled);
    color: var(--primary);
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--tetriary);
    
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);

}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-left: 100px;
}

header nav ul li a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all var(--transition-speed);
}

header nav ul li a:hover {
    background: var(--hover-bg);
    color: var(--primary);}

.video-section {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    position: relative;
    left: 0;
    right: 0;
}

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

main {
    margin: 0;
    padding: 20px;
}

.content {
    padding: 100px 20px 20px;
    text-align: center;
    height: 700px;
}

.content h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2rem;
    color: var(--fouthcolor);
    line-height: 1.6;
}

.more-content {

    text-align: center;
    left: 0;
    right: 0;
    bottom: 0;
    position: relative;
    background: var(--primary);
    color: var(--secondary);
    border-top: 5px solid var(--tetriary);
    padding: 0 20px;
    z-index: 10;

    min-height: 298px;
    width: 100%;

    overflow: scroll;
}

.more-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.more-content p {
    font-size: 1.1rem;
}


@media (max-width: 768px) {
    header .nav-links {
        gap: 10px;
    }

    .content h1 {
        font-size: 2rem;
    }

    .more-content h2 {
        font-size: 1.5rem;
    }
}
.video-section {
    position: relative;
    width: 100%;
    height: 75vh; 
    overflow: hidden;
}

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

.animated-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 200px;
    color: var(--secondary);
    font-family: Arial, sans-serif;
    font-size: 200px;
}

.animated-text h1 {
    font-size: 5.5rem;
    margin: 10px 0;
    opacity: 0;
    transform: translateX(-100%);
    animation: slideIn 1s forwards;
}

.animated-text h1:nth-child(1) {
    animation-delay: 0.3s; 
}

.animated-text h1:nth-child(2) {
    animation-delay: 0.6s;
}

.animated-text h1:nth-child(3) {
    animation-delay: 0.9s; 
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.card-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 100px;
}
.card{
    
    border-radius: 8px;
    overflow: hidden;
    margin: 20px;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
    
} 

.card image{
    object-fit:fill;

}
.card-content{
    padding: 16px;
}
.card-content h3{
    font-size: 28px;
    margin-bottom: 8px;

}
.card-content p{
    color: #666;
    font-size: 15px;
    line-height: 1.3;

}
.card-content .button{
    display: inline block;
    padding: 8px 16px;
    background-color: #333;
    border-radius: 4px;
    margin-top: 16px;
    color: #fff;
    margin-bottom: 50px;
}
.footer {
    background: #000; color: #fff; padding: 20px; text-align: center;
    margin-top: 800px;
}

.footer-content {
    display: flex; justify-content: space-between; flex-wrap: wrap; max-width: 1200px; margin: auto;
}

.footer-content div {
    flex: 1; margin: 10px; min-width: 200px;
}

h3 {
    border-bottom: 2px solid #555; padding-bottom: 5px; margin-bottom: 10px; font-size: 1.1rem;
}

ul { list-style: none; padding: 0; }

ul li { margin: 5px 0; }

a { color: #fff; text-decoration: none; transition: color 0.3s; }

a:hover { color: #00bcd4; }



.cloud {
    width: 90%; 
    height: 25%; 
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), inset 0 -5px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 20px;
    padding: 10px;
    font-size: 1.5rem; 
    color: #333;
    border: 2px solid #ddd; 
    margin-bottom: 30px;
    margin-left: 80px;
 
 
   
    background: linear-gradient(45deg, #fdd509, #AF752A, black);
    background-size: 300% 300%;
    animation: gradientAnimation 6s ease infinite;
}


main{
    margin-bottom: 50px;
}
@keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
}

.content {
    z-index: 1;
    text-align: center;
}

