/* ======================== */
/* Basic Reset & Body       */
/* ======================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    /* Remove body padding, hero margin handles offset */
}

/* ======================== */
/* Container & Utils        */
/* ======================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section {
    padding: 80px 0;
    border-bottom: 1px solid #e2e8f0;
}
.content-section:last-of-type {
    border-bottom: none;
}

h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 50px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* ============================ */
/* Blue Header (Fixed)          */
/* ============================ */
.blue-header {
    background-color: #2563eb;
    color: #ffffff;
    padding: 0 20px; /* Horizontal padding */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px; /* Match homepage header height */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icons/title */
}

.header-icon { /* Style for Govindaapp Icon */
    width: 36px;
    height: 36px;
    object-fit: contain;
    vertical-align: middle;
    /* Optional: if Govindaapp icon needs rounding */
    /* border-radius: 4px; */
}
.header-icon-snipbox { /* Style for SnipBox Icon */
    width: 40px; /* SnipBox icon size */
    height: 40px;
    /* Optional: if SnipBox icon needs rounding */
    /* border-radius: 6px; */
}

.header-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    margin-left: 5px; /* Space after icons */
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-header {
    font-size: 1rem;
    padding: 10px 20px;
}
.btn-header-primary { /* Get Addon Button */
    color: #2563eb; /* Blue text */
    background-color: #ffffff; /* White BG */
    border-color: #ffffff;
}
.btn-header-primary:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    transform: translateY(-2px);
}
.btn-header-secondary { /* Support Button */
    color: #ffffff; /* White text */
    background-color: transparent; /* Transparent BG */
    border-color: rgba(255, 255, 255, 0.6); /* White border */
}
.btn-header-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ================================== */
/* 1. Full Viewport Hero Section      */
/* ================================== */
.hero-section-full-viewport {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 20px 60px 20px;
    margin-top: 80px; /* Offset for fixed header */
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #7dd3fc 100%);
}

.hero-logo { /* SnipBox Logo in Hero */
    width: 120px;
    height: 120px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: -60px; /* Adjust as needed to position */
}

.hero-section-full-viewport h1 {
    font-size: 5rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 2rem;
    color: #374151;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    font-weight: 400;
}
.hero-stats {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 50px;
    font-weight: 500;
}
.hero-stats span { margin: 0 15px; }

.hero-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; }

/* Hero Button Styles */
.btn-hero-primary { color: #ffffff; background-color: #2563eb; border-color: #2563eb; padding: 15px 32px; font-size: 1.2rem; box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3); }
.btn-hero-primary:hover { background-color: #1d4ed8; border-color: #1d4ed8; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4); }
.btn-hero-secondary { color: #1e3a8a; background-color: #ffffff; border-color: #d1d5db; padding: 15px 32px; font-size: 1.2rem; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.btn-hero-secondary:hover { background-color: #f9fafb; border-color: #9ca3af; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }

/* Scroll Down Indicator */
.scroll-down-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); width: 50px; height: 50px; border: 2px solid rgba(30, 58, 138, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(30, 58, 138, 0.7); font-size: 1.8rem; opacity: 0.8; transition: all 0.3s ease; background-color: rgba(255, 255, 255, 0.2); backdrop-filter: blur(5px); }
.scroll-down-indicator:hover { opacity: 1; transform: translateX(-50%) translateY(5px); color: #1e3a8a; background-color: rgba(255, 255, 255, 0.3); }
.scroll-down-indicator span { display: inline-block; animation: bounce 2s infinite ease-in-out; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }

/* ======================== */
/* 2. Benefits Section      */
/* ======================== */
#benefits { background-color: #ffffff; /* White background for benefits */ }
.benefits-list { list-style: none; max-width: 900px; margin: 60px auto 0 auto; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.benefits-list li { background-color: #f9fafb; padding: 30px; border-radius: 12px; border: 1px solid #e5e7eb; color: #4b5563; font-size: 1.05rem; line-height: 1.6; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.benefits-list li:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); }
.benefits-list li strong { display: block; margin-bottom: 12px; font-size: 1.2rem; color: #1f2937; font-weight: 600; }

/* ===================================== */
/* 3. Screenshots Section (SLIDER)       */
/* ===================================== */
.screenshots-bg { background: #f3f4f6; /* Use light gray from benefits/alternating sections */ padding-bottom: 80px; }
.screenshot-slider { position: relative; max-width: 1000px; margin: 60px auto 0 auto; background-color: #ffffff; /* White frame */ border: 1px solid #d1d5db; border-radius: 8px; padding: 20px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.slider-image-container { width: 100%; overflow: hidden; border-radius: 6px; display: flex; align-items: center; justify-content: center; background-color: transparent; }
#current-screenshot { display: block; width: 100%; height: auto; max-height: 580px; object-fit: contain; border-radius: 6px; transition: opacity 0.4s ease-in-out; opacity: 1; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background-color: rgba(55, 65, 81, 0.6); color: #ffffff; border: none; padding: 0; border-radius: 50%; cursor: pointer; font-size: 1.6em; transition: all 0.2s ease; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.slider-arrow:hover { background-color: rgba(55, 65, 81, 0.8); transform: translateY(-50%) scale(1.05); }
.slider-arrow:active { transform: translateY(-50%) scale(0.98); background-color: rgba(55, 65, 81, 1); }
.slider-prev { left: 30px; }
.slider-next { right: 30px; }

/* ======================== */
/* 4. Footer Section        */
/* ======================== */
.footer-section { background-color: #1a202c; color: #cbd5e0; text-align: center; padding: 50px 20px; font-size: 1rem; }
.footer-section p { margin-bottom: 15px; font-size: 1rem; color: #cbd5e0; }
.footer-section p:last-child { margin-bottom: 0; }
.footer-link { color: #93c5fd; text-decoration: none; font-weight: 500; transition: color 0.2s ease, text-decoration 0.2s ease; display: inline-block; margin: 0 10px; }
.footer-link .fas { margin-right: 6px; }
.footer-link:hover { color: #ffffff; text-decoration: underline; }
.copyright { margin-top: 20px; font-size: 0.9rem; color: #9ca3af; }


/* ======================== */
/* Responsive Design        */
/* ======================== */
@media (max-width: 1200px) {
    .hero-section-full-viewport h1 { font-size: 4.5rem; }
    .hero-subtitle { font-size: 1.8rem; }
}

@media (max-width: 1024px) {
    .hero-logo { width: 100px; height: 100px; margin-top: -80px; }
    .hero-section-full-viewport h1 { font-size: 4rem; }
    .hero-subtitle { font-size: 1.6rem; }
    .hero-stats { font-size: 1.1rem; }
    .btn-hero-primary, .btn-hero-secondary { font-size: 1.1rem; padding: 14px 28px; }
    .benefits-list { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
     #current-screenshot { max-height: 520px; }
}

@media (max-width: 768px) {
    /* Adjust header height and internal elements */
    .blue-header { height: 70px; padding: 0 15px;}
    .header-icon { width: 32px; height: 32px;}
    .header-icon-snipbox { width: 35px; height: 35px; }
    .header-title { font-size: 1.3rem; }
    .header-actions { gap: 10px; }
    .btn-header { font-size: 0.9rem; padding: 8px 12px;}

    /* Adjust hero margin-top to match new header height */
    .hero-section-full-viewport { margin-top: 70px; padding: 60px 20px 40px 20px; }

    h2 { font-size: 2em; }

    .hero-logo { width: 90px; height: 90px; margin-top: -60px; margin-bottom: 25px;}
    .hero-section-full-viewport h1 { font-size: 3.2rem; }
    .hero-subtitle { font-size: 1.4rem; margin-bottom: 30px; }
    .hero-stats { margin-bottom: 40px; font-size: 1.1rem; }
    .hero-buttons { gap: 15px; }

    .benefits-list { grid-template-columns: 1fr; gap: 20px; }
    .benefits-list li { padding: 25px; }

    .slider-arrow { width: 50px; height: 50px; font-size: 1.6em; }
    .slider-prev { left: 25px; }
    .slider-next { right: 25px; }
    .scroll-down-indicator { width: 45px; height: 45px; font-size: 1.6rem; bottom: 30px; }
     #current-screenshot { max-height: 460px; }
     .screenshot-slider { padding: 16px; } /* Add padding back on smaller */

}

@media (max-width: 576px) {
    /* Adjust header height and internal elements */
    .blue-header { height: 65px; padding: 0 15px; }
    .header-icon { width: 28px; height: 28px;}
    .header-icon-snipbox { width: 30px; height: 30px; }
    .header-title { font-size: 1.2rem; }
    .btn-header { font-size: 0.85rem; padding: 7px 10px;}
    .header-actions { gap: 8px; }

    /* Adjust hero margin-top */
    .hero-section-full-viewport { margin-top: 65px; padding: 50px 15px 30px 15px; }

    h2 { font-size: 1.8em; margin-bottom: 40px; }

    .hero-logo { width: 80px; height: 80px; margin-top: -50px; margin-bottom: 20px;}
    .hero-section-full-viewport h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; margin-bottom: 25px; }
    .hero-stats { font-size: 1rem; margin-bottom: 35px; }
    .hero-buttons { gap: 12px; flex-direction: column; align-items: center; }
    .btn-hero-primary, .btn-hero-secondary { font-size: 1rem; padding: 12px 24px; width: 80%; max-width: 300px; }


    .benefits-list li { padding: 20px; font-size: 1rem; }
    .benefits-list li strong { font-size: 1.1rem; }

    .slider-arrow { width: 45px; height: 45px; font-size: 1.4em; }
    .slider-prev { left: 15px; }
    .slider-next { right: 15px; }
    .scroll-down-indicator { width: 40px; height: 40px; font-size: 1.4rem; bottom: 25px; }
     #current-screenshot { max-height: 360px; }
     .screenshot-slider { padding: 12px; } /* Add padding back on smaller */

    .footer-section { padding: 40px 20px; }
    .footer-section p { font-size: 1rem; }
     .footer-link { margin: 5px 5px; }
}

@media (max-width: 400px) {
    .hero-section-full-viewport h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-stats { font-size: 0.95rem; }
    .btn-hero-primary, .btn-hero-secondary { width: 90%; }
    .slider-arrow { width: 40px; height: 40px; font-size: 1.3em; }
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }
     #current-screenshot { max-height: 300px; }
}