/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Global Image Setup */
img {
    max-width: 100%;
    display: block;
}

/* Navbar Layout */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%; 
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-bottom 0.3s;
}

.nav-links a:hover {
    color: #2e7d32;
    border-bottom: 2px solid #2e7d32;
}

/* Primary Button with Hover */
.btn-primary {
    background-color: #2e7d32;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* Banner SECTION  */
.banner {
    width: 100%;
    min-height: 90vh; 
    padding: 100px 20px;
    background: url("./assets/hero-bg.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.banner-content {
    max-width: 800px;
    color: white;
}

.early-access {
    position: relative;
    background: white;
    color: #2e7d32;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    border: none;
    cursor: default;
    overflow: hidden; 
    z-index: 1;
    animation: pulse-glow 1.5s infinite ease-out; 
}

/* Neon Snake Line Animation */
.early-access::before {
    content: '';
    position: absolute;
    width: 200%; 
    height: 200%;
    background: conic-gradient(
        #2e7d32 0deg, 
        #00ff44 45deg, 
        #2e7d32 90deg, 
        transparent 130deg, 
        transparent 360deg
    );
    animation: snake-trace 3s linear infinite;
    top: -50%;
    left: -50%;
    z-index: -2;
    filter: blur(4px); 
}

.early-access::after {
    content: '';
    position: absolute;
    inset: 3px; 
    background: white;
    border-radius: 50px;
    z-index: -1;
}

/* Pulse Glow Animation */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7);
    }
    70% {
        box-shadow: 0 0 10px 30px rgba(46, 125, 50, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0);
    }
}

@keyframes snake-trace {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.Circle-icon {
    width: 16px;
}

.banner h1 {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.green-text {
    color: #28a745;
}

.banner-desc {
    font-size: 18px;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 35px;
}

.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Main Green Button */
.btn-start {
    background-color: #2e7d32;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-start:hover {
    background-color: #1b5e20;
}

/* Video Button */
.btn-video {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(6px);
    transition: 0.3s;
}

.btn-video:hover {
    background: rgba(255, 255, 255, 0.25);
}

.play-icon {
    width: 16px;
}

/* Banner Edge Hover Effect */
.overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: auto;
}

/* Overlay Gradient Strip */
.overlay {
    background:
      repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.4) 0 6px,
        transparent 6px 18px
      ),
      rgba(0,0,0,0.30);
}

/* LEFT */
.left {
    inset: 0 auto 0 0;
    width: 6%;
}

/* RIGHT */
.right {
    inset: 0 0 0 auto;
    width: 6%;
}

/* TOP */
.top {
    inset: 0 0 auto 0;
    height: 10%;
}

/* BOTTOM */
.bottom {
    inset: auto 0 0 0;
    height: 10%;
}

/* SHOW ONLY ON HOVER */
.banner:hover .overlay:hover {
    opacity: 1;
}


/* Notes Section */
.notes-section {
    padding: 80px 0;
    background-color: #fbfbfb; 
    text-align: center;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.note-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); 
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
}

/* Designing Circle for Icons */
.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #ff5e5e; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.icon-circle img {
    width: 24px;
    filter: brightness(0) invert(1); 
}

.note-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 12px;
}

.note-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Hover Effect */
.note-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Solution Section Styles */
.solution-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.solution-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.solution-image {
    flex: 1;
}

.solution-image img {
    width: 100%;
    max-width: 500px;
    display: block;
}

.solution-content {
    flex: 1;
}

.solution-tag {
    color: #2e7d32; 
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.solution-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #0d1b2a;
    margin-bottom: 20px;
}

.solution-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 18px;
}

.list-icon {
    width: 20px;
    height: 20px;
}

/*  Early Access Section Styles  */
.early-access-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.cta-box {
    background-color: #f9f8f3; 
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 15px;
}

.cta-box .subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.cta-box .promo-text {
    font-size: 16px;
    color: #888;
    margin-bottom: 30px;
}

/* Button with Hover Effect */
.btn-early {
    background-color: #519872; 
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
    margin-bottom: 30px;
}

.btn-early:hover {
    background-color: #3b7355;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-early img {
    width: 20px;
}

/* Footer Notes below the button */
.footer-notes {
    color: #888;
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.dot {
    font-size: 18px;
}

/* Footer Section Styles */
.footer-section {
    background-color: #001220; 
    padding: 80px 0 40px;
    color: white;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 45px; 
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.social-icons a {
    color: white; 
    font-size: 24px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #2e7d32; 
    transform: scale(1.2);
}

/* A horizontal divider */
.footer-line {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0 30px;
    width: 100%;
}

/* Copyright message below */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    padding-bottom: 25px; 
}

/* Developer link style */
.footer-bottom a {
    color: #00ca72; 
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* RESPONSIVE DESIGN */

/* Mobile Layout (Max 576px) */
@media screen and (max-width: 576px) {
    /* Navbar Section */
    .navbar { 
        padding: 12px 10px; 
        justify-content: space-between;
    }

    .logo img {
          width: 60px; 
        height: auto; 
    }

    .nav-links { 
        display: flex; 
        gap: 13px; 
    }

    .nav-links a {
        font-size: 9px; 
        
    }
    .btn-primary {
        padding: 4px 8px; 
        font-size: 8px;
        border-radius: 4px;
        
    }

    /* Banner Section */
    .banner {
       padding: 60px 15px; 
       min-height: 400px; 
       background-size: 100% 100%;
    }

    /* All Overlay Control */
    .banner.overlay {
        opacity: 0;
        pointer-events: auto;
        transition: opacity 0.3s ease;
    }

    /* Touch Effect */
    .banner.overlay:active {
        opacity: 1;
    }

    .banner .overlay.left {
        width: 3%; 
    }

    .banner .overlay.right {
       width: 3%;
    }

    .early-access {
        padding: 6px 16px;
        font-size: 11px;
        margin-bottom: 15px;
    }

    .banner h1 { 
        font-size: 23px; 
        line-height: 1.3;
    }

    .banner-desc { 
        font-size: 13px; 
        margin-bottom: 20px;
    }

    .banner-buttons { 
        padding: 13px;
        font-size: 10px;
        width: 100%;
    }

    .btn-start, .btn-video { 
        padding: 13px;
        font-size: 10px;
        width: 100%; 
    }
    
   /* Notes Section */
    .section-header h2 {
        font-size: 20px; 
        line-height: 1.2;
        margin-bottom: 10px;
        padding: 0 10px;
    }

    .section-header p {
        font-size: 10px; 
        line-height: 1.5;
        padding: 0 20px;
        margin-bottom: 10px;
    }

    .notes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }

    .note-card {
        padding: 20px 10px;
        min-height: 160px; 
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .note-card img, .note-card i {
        width: 35px; 
        margin-bottom: 10px;
    }

    .note-card h3 {
        font-size: 14px; 
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .note-card p {
        font-size: 11px; 
        line-height: 1.4;
    }

/* Start of Solution Section */
   .solution-section {
       padding: 10px 0;
       background-color: #ffffff; 
       overflow: hidden;  
    }
    .solution-container {
        flex-direction: column; 
        gap: 15px; 
        text-align: center;
    }

    .solution-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .solution-image img {
        max-width: 250px; 
        width: 100%;
    }

    .solution-content {
        margin-top: 0;
        padding: 0 10px;
    }

    .solution-content h2 {
        font-size: 24px; 
        line-height: 1.3;
    }

    .solution-desc {
        font-size: 13px; 
    }

    .feature-list {
        display: inline-block; 
        text-align: left; 
    }

    .feature-list li {
        font-size: 13px;
        gap: 10px;
    }

    .list-icon {
        width: 16px;
        height: 16px;
    }

/* Start of Early Access Section */
.early-access-section {
    padding: 30px 15px; 
}

.cta-box {
    padding: 30px 20px;
}

.cta-box h2 {
    font-size: 20px; 
    line-height: 1.2;
}

.cta-box .subtitle {
    font-size: 11px;
    margin: 10px 0;
}

.cta-box .promo-text {
    font-size: 10px; 
    margin-bottom: 15px;
}

/* Early Access Button  */
.btn-early {
    width: fit-content; 
    margin: 0 auto; 
    padding: 10px 20px; 
    font-size: 13px; 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-early img {
    width: 14px; 
}

.footer-notes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; 
    margin-top: 15px;
}

.footer-notes span, .footer-notes .dot {
    font-size: 8px; 
    display: inline-block; 
}

 /* Footer Section */
    .footer-section {
        padding: 20px 0;
        min-height: auto; 
    }

    .footer-top {
        display: flex;
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center;
        padding: 0 10px;
    }

    .footer-logo img {
        width: 65px; 
        height: auto;
    }

    .social-icons {
        display: flex;
        gap: 12px;
        margin-top: 0;
    }

    .social-icons a i { 
        font-size: 13px;
     }

    .footer-bottom {
        padding-bottom: 10px;
    }

    .footer-bottom p {
        font-size: 7px;
        text-align: center;
    }

    }
