* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, rgb(0, 75, 0) 0%, rgb(0, 100, 0) 50%, rgb(0, 120, 0) 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="25" cy="25" r="0.3" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="0.4" fill="rgba(255,255,255,0.025)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

#container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.opening_view_div {
    text-align: center;
    padding: 120px 0 30px;
    position: relative;
}

.opening_view_div::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
}

.opening_view_div h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
    z-index: 3;
    animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.sub_heading_p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
    animation: slideInUp 1s ease-out 0.2s both;
}

.main_page_button {
    background: linear-gradient(45deg, rgb(0, 120, 0), rgb(50, 205, 50));
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    animation: slideInUp 1s ease-out 0.4s both;
    overflow: hidden;
}

.main_page_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.main_page_button:hover::before {
    left: 100%;
}

.main_page_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.description_div, .how_it_works {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 0.8s ease-out;
}

.content-section {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}


@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 120, 0, 0.1), rgba(50, 205, 50, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(0, 120, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 120, 0, 0.4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(0, 120, 0);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #555;
    font-weight: 600;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
    animation: slideInUp 1s ease-out 0.3s both;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 15px 25px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    min-width: 140px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.25);
}

.trust-badge .badge-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, rgb(0, 75, 0), rgb(0, 120, 0));
    border-radius: 2px;
}

p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.bold {
    font-weight: 700;
    color: #2c3e50;
    background: linear-gradient(45deg, rgb(0, 75, 0), rgb(0, 120, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

ol, ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #555;
    position: relative;
}

ol li {
    counter-increment: custom-counter;
}

ul li {
    list-style: none;
    position: relative;
    padding-left: 25px;
}

ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, rgb(0, 75, 0), rgb(0, 120, 0));
    border-radius: 50%;
}

strong {
    color: #2c3e50;
    font-weight: 600;
}

.video_container {
    text-align: center;
}

.video_container iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.video_container iframe:hover {
    transform: scale(1.02);
}

footer {
    background: rgba(0,0,0,0.8);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    border-radius: 20px 20px 0 0;
    backdrop-filter: blur(10px);
}

footer p {
    margin: 5px 0;
    color: rgba(255,255,255,0.8);
}

/* Floating elements animation */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* Responsive design */
@media (max-width: 768px) {
    .opening_view_div h1 {
        font-size: 2.5rem;
    }
    
    .description_div, .how_it_works {
        padding: 25px;
        margin: 20px 0;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .video_container iframe {
        height: 250px;
    }

    .content-section {
        padding: 25px;
        margin: 20px 0;
    }

    .trust-badges {
        gap: 15px;
    }

    .trust-badge {
        min-width: 120px;
        padding: 12px 20px;
    }
}

.animate-on-scroll {
    visibility: hidden;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}