@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0a192f; /* Dark blue background */
    color: #e6f1ff;
    overflow-x: hidden;
    background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: rgba(10, 25, 47, 0.9);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 9%;
    background: #0a192f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    border-bottom: 1px solid #64ffda;
}

.logo {
    font-size: 30px;
    color: #64ffda; /* Teal green */
    text-decoration: none;
    font-weight: 600;
}

nav a {
    font-size: 18px;
    color: #ccd6f6;
    text-decoration: none;
    font-weight: 500;
    margin-left: 40px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #64ffda;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 40px 9% 0;
}

.home h1 {
    font-size: 150px;
    color: transparent;
    text-shadow: 0 0 10px #64ffda;
    -webkit-text-stroke: 2px #64ffda;
    text-align: center;
}

.about {
    justify-content: flex-end;
    background-color: #0a192f00;
}

.about .about-content {
    width: 50%;
}

.about-content h2 {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 15px;
    color: #64ffda;
}

.about-content p {
    color: #ccd6f6;
}

.about-content a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1a73e8;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    transition: all 0.3s ease
}

.about-content a:hover {
    background: #64ffda;
    color: #0a192f;
    box-shadow: 0 0 20px #64ffda;
}

.gallery {
    background-color: rgba(10, 25, 47, 0.8);
}

.gallery-content {
    display: flex;
    gap: 100px;
}

.gallery-content .outer {
    width: 300px;
    height: 400px;
    padding: 10px;
    border-radius: 26px;
    border: 2px solid #64ffda;
    background-color: rgba(100, 255, 218, 0.1);
}

.gallery-content .inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 2px solid #1a73e8;
    background-color: rgba(26, 115, 232, 0.1);
}

.gallery-content .inner img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    object-fit: cover;
    filter: sepia(100%) hue-rotate(160deg) saturate(0.7);
}

.contact {
    background-color: rgba(10, 25, 47, 0.8);
}

.contact-form {
    width: 600px;
    background-color: rgba(10, 25, 47, 0.9);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #64ffda;
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.2);
}

.contact-form h2 {
    font-size: 50px;
    text-align: center;
    margin-bottom: 15px;
    color: #64ffda;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    background: transparent;
    border-radius: 8px;
    border: 2px solid #1a73e8;
    outline: none;
    font-size: 16px;
    color: #ccd6f6;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #64ffda;
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
}

.contact-form textarea {
    height: 300px;
    resize: none;
}

.contact-form button {
    display: block;
    padding: 12px 40px;
    background: #1a73e8;
    border-radius: 40px;
    border: none;
    box-shadow: 0 0 10px rgba(26, 115, 232, 0.5);
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #64ffda;
    color: #0a192f;
    box-shadow: 0 0 20px #64ffda;
}

#bee-model {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    transition: transform 1s ease-out;
}

.mission {
    display: flex;
    padding: 80px 5%;
    background-color: rgba(10, 25, 47, 0.8);
    color: #ccd6f6;
}

.mission-content {
    flex: 1;
    padding-right: 50px;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #64ffda;
}

.mission-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.mission-content a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1a73e8;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.mission-content a:hover {
    background-color: #64ffda;
    color: #0a192f;
}

.mission-empty {
    flex: 1;
    background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}
.gallery-content .inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 2px solid #1a73e800;
    background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
}
.home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 9%;
    gap: 50px;
}

.home-content {
    flex: 1;
    max-width: 600px;
}

.home h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.home h3 {
    font-size: 1.5rem;
    color: #64ffda;
    margin-bottom: 25px;
    font-weight: 500;
}

.home p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccd6f6;
    line-height: 1.6;
}

.home-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #64ffda;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccd6f6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.primary-btn, .secondary-btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #64ffda;
    color: #0a192f;
}

.secondary-btn {
    border: 2px solid #64ffda;
    color: #64ffda;
    background: transparent;
}

.primary-btn:hover {
    background: #52e8c9;
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
}

.secondary-btn:hover {
    background: rgba(100, 255, 218, 0.1);
}

.home-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 400px;
    height: 500px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 20px;
    border: 2px solid #64ffda;
}
.gallery-content {
    position: relative;
    height: 500px; /* Adjust based on your needs */
}

.decorative-line {
    position: absolute;
    height: 2px;
    width: 120px;
    background: #ffffff;
}

.decorative-line.left {
    left: -130px; /* Negative value to position to the left */
    top: 40%;
}

.decorative-line.right {
    right: -130px; /* Negative value to position to the right */
    top: 30%;
    background: #ffd700;
}

.line-text {
    position: absolute;
    color: white;
    font-size: 0.9em;
    max-width: 100px;
}

.left-text {
    left: -150px;
    top: 20%;
    text-align: right;
}

.right-text {
    right: -150px;
    top: 32%;
    text-align: left;
}

.line-text h3 {
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

.line-text p {
    opacity: 0.8;
}

/* Keep your original image styles */
.outer {
    /* Your existing outer container styles */
}

.inner {
    /* Your existing inner image styles */
}
.footer {
    text-align: center;
    padding: 20px;
    background-color: #182641; /* Match the design theme */
    color: #d8e6f0; /* Light text color for contrast */
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 14px;
}

.footer p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        font-size: 12px; /* Adjust font size for smaller screens */
        padding: 15px;
    }
}
/* Your existing CSS remains unchanged until the end */

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Header adjustments */
    header {
        padding: 10px 5%;
        flex-direction: column;
        text-align: center;
    }
    
    nav {
        margin-top: 15px;
    }
    
    nav a {
        margin: 0 10px;
        font-size: 16px;
    }
    
    /* Home section */
    .home {
        flex-direction: column;
        height: auto;
        padding: 100px 5% 50px;
        text-align: center;
    }
    
    .home h1 {
        font-size: 2.5rem;
        -webkit-text-stroke: 1px #64ffda;
    }
    
    .home-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .home-image {
        margin-top: 40px;
    }
    
    .image-placeholder {
        width: 100%;
        max-width: 300px;
        height: 350px;
    }
    
    /* About section */
    .about {
        height: auto;
        padding: 80px 5%;
        justify-content: center;
    }
    
    .about .about-content {
        width: 100%;
    }
    
    /* Mission section */
    .mission {
        flex-direction: column;
        height: auto;
    }
    
    .mission-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .mission-empty {
        height: 300px;
    }
    
    /* Gallery section */
    .gallery {
        height: auto;
        padding: 80px 5%;
    }
    
    .gallery-content {
        flex-direction: column;
        height: auto;
        gap: 50px;
    }
    
    .outer {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .decorative-line.left,
    .decorative-line.right {
        display: none; /* Hide decorative lines on mobile */
    }
    
    /* Contact section */
    .contact {
        height: auto;
        padding: 80px 5%;
    }
    
    .contact-form {
        width: 100%;
        padding: 30px;
    }
    
    .contact-form h2 {
        font-size: 2.5rem;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 15px 5%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Further adjustments for very small screens */
    .home h1 {
        font-size: 2rem;
    }
    
    .home h3 {
        font-size: 1.2rem;
    }
    
    .about-content h2,
    .mission-content h2,
    .contact-form h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .primary-btn, 
    .secondary-btn {
        width: 100%;
        text-align: center;
    }
    
    .contact-form button {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .left-text {
        left: -40px;
        top: 5px;
        text-align: right;
        /* Additional mobile styling if needed */
        font-size: 0.8em; /* Smaller font for mobile */
        max-width: 80px; /* Narrower text container */
        background: rgba(10, 25, 47, 0.9); /* Better contrast */
        padding: 5px 8px; /* Tighter padding */
    }
}
@media (max-width: 768px) {
    .right-text {
        right: -10px; /* Bring closer to content on mobile */
        top: 25%; /* Adjust vertical position */
        text-align: left;
        /* Mobile-specific enhancements */
        font-size: 0.8em;
        max-width: 90px;
        background: rgba(10, 25, 47, 0.9);
        padding: 6px 10px;
        z-index: 2; /* Ensure it stays above other elements */
    }
}
@media (max-width: 600px) {
    nav a {
        margin-right: 20px; /* Reduce margin for mobile */
        font-size: 10px;     /* Smaller font size for mobile */
    }
}