:root {
    --primary-color: #003F1B;
    --secondary-color: #27ae60;
    --text-color: #333;
    --background-color: #f9f9f9;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.header {
    background-color: var(--primary-color);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
   
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-img {
    width: 80px;
    height: 80px;
    margin-right: 0.5rem;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.header nav {
    display: flex;
    gap: 1rem;
}

.header nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header nav a:hover {
    color: var(--secondary-color);
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7); /* Darkens the video slightly to make text more readable */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    width: 800px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero h1, .hero p {
    margin: 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.executive-summary {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.stakeholders {
    list-style: none;
    padding: 0;
}

.stakeholders li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.stakeholders li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.download-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    margin: 2rem 0;
}

.qr-code {
    width: 200px;
    height: 200px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Added box shadow */
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-button {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.app-button:hover {
    background: var(--secondary-color);
}
.collaboration-section {
    text-align: center;
    margin: 2rem 0;
}

.collaboration-section p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.collaboration-section img {
    width: 100px; /* Adjust size as needed */
    height: auto;
    margin: 0 10px;
    display: inline-block;
    vertical-align: middle;
}


.contact-section {
    background: white;
    padding: 4rem 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.contact-container {
    display: flex;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    flex: 2;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-color);
}

.social-links {
    flex: 1;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;  
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 2px 5px 10px rgba(0,0,0,0.3);
}
.security-info {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.security-badge {
    color: #28a745;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.security-details {
    margin-top: 1rem;
    text-align: left;
}

.security-details summary {
    cursor: pointer;
    color: var(--primary-color);
}

.security-details ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.install-instructions {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.instructions-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
}

.instructions-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.instructions-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.instructions-content button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.download-icon {
    animation: bounce 2s infinite;
    margin-right: 0.5rem; /* Add some space between the icon and text */
}
/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .header{
        width: 100%;
    }

    .header nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }

    .header nav.active {
        display: flex;
    }

    .download-section {
        flex-direction: column;
        gap: 2rem;
    }

    .container {
        padding: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
        height: 80vh;
    }

    .hero-content {
        width: 90%;
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }

    .executive-summary {
        padding: 1.5rem;
    }
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }

    .social-links {
        padding-top: 2rem;
        border-top: 1px solid #ddd;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    .qr-code {
        width: 150px;
        height: 150px;
    }

    .app-button {
        padding: 0.8rem 1.5rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    .hero {
      
        height: 70vh;
    }
}