 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a4a5c 0%, #1a6b5c 50%, #2a8b6c 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
} 
.logo {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    gap: 0.7rem; /* Add spacing between image and text */
    flex-direction: row; 
}
.logo img {
    order: 0; /* Image first */
    margin-right: 0;
    width: 90px;
    height: auto;
}
.logo span {
    order: 1; /* Text after image */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 1.2rem;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s cubic-bezier(0.4,0,0.2,1);
    overflow: visible;
    max-height: none;
    opacity: 1;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
}
    
    .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    gap: 1rem;
    max-height: 500px; /* Enough to show all links */
    opacity: 1;
    z-index: 1001;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu-toggle {
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu-toggle.active {
    transform: rotate(90deg) scale(1.2);
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    }

.nav-links a:hover {
    color: #4ade80;
    }

/* Hero Section */
.floating-element {
    position: absolute;
    font-size: 2.2rem;
    pointer-events: none;
    opacity: 0.8;
    animation: floatY 6s ease-in-out infinite;
}

.floating-1 { top: 20%; left: 8%; animation-delay: 0s; }
.floating-2 { top: 60%; right: 90%; animation-delay: 1.5s; }
.floating-3 { bottom: 18%; left: 22%; animation-delay: 3s; }
.floating-4 { top: 25%; right: 18%; animation-delay: 2.2s; }
.floating-5 { bottom: 30%; right: 8%; animation-delay: 0.8s; }
.floating-6 { top: 55%; left: 35%; animation-delay: 2.8s; }
.floating-7 { top: 20%; right: 30%; animation-delay: 1.2s; }
.floating-8 { bottom: 12%; left: 60%; animation-delay: 3.5s; }
.floating-9 { top: 40%; left: 70%; animation-delay: 2.5s; }
.floating-10 { bottom: 25%; right: 25%; animation-delay: 1.8s; }

@keyframes floatY {
    0% { transform: translateY(0); }
    50% { transform: translateY(-24px); }
    100% { transform: translateY(0); }
}
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
 }
 .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.cta-button {
    background: linear-gradient(45deg, #4ade80, #22c55e);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 222, 128, 0.3);
}

/* Vision Section */
.vision-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.vision-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #4ade80;
}

.vision-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.vision-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.vision-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.vision-item h3 {
    color: #4ade80;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4ade80;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.team-member img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #4ade80;
    object-fit: cover;
}

.team-member h3 {
    color: #4ade80;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: #94a3b8;
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4ade80;
}

.about-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
}

.blog-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4ade80;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-post {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-post h3 {
    color: #4ade80;
    margin-bottom: 1rem;
}

.blog-meta {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.blog-readmore {
display: inline-flex;
align-items: center;
gap: 0.4em;
color: #4ade80;
font-weight: 600;
text-decoration: none;
margin-top: 0.5em;
transition: color 0.2s;
background: rgba(255,255,255,0.08);      /* Subtle background */
border: 1.5px solid #4ade80;             /* Green border */
border-radius: 30px;
padding: 0.4em 1.2em 0.4em 1em;
box-shadow: 0 2px 8px rgba(74,222,128,0.07);
}
.blog-readmore i {
transition: transform 0.2s;
color: #4ade80;
}
.blog-readmore:hover {
color: #c1c1c1;
}
.blog-readmore:hover i {
transform: translateX(4px);
color: #c1c1c1
}
/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4ade80;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4ade80;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
}
.faq-section {
    padding: 60px 0;
    background: #2a8b6c;
    border-radius: 40px;
    max-width: 900px;
    margin: 32px auto 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.faq-form-style {
    background: #000000;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4ade80;
}

.faq-item h3 {
    margin-bottom: 8px;
    color: #4ade80;
    font-size: 1.18rem;
    font-weight: 600;
}

.faq-item p {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
}
.submit-btn {
    background: linear-gradient(45deg, #4ade80, #22c55e);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 222, 128, 0.3);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
        }
.footer-top {
    display: flex;
    align-items: center;
    justify-content: center; /* Center all by default */
    gap: 2rem;
    margin-bottom: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-left: 0;
}
    .social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}
        
.footer-logo {
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 100px;
    height: auto;
}
       
.social-links a {
            color: #4ade80;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

.social-links a:hover {
            transform: scale(1.3);
            color: #22c55e;
        }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    gap: 1rem;
}
@media (min-width: 1024px) {
.container {
min-height: 15vh;
}
}

@media (max-width: 600px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        position: static;
    }
    .footer-logo {
        position: static;
        margin-bottom: 0.5rem;
        left: unset;
        bottom: unset;
    }
}
/* Mobile Responsiveness */
 @media (max-width: 768px) {
.container {
    padding: 0 15px;
    min-height: 10vh;
}
.nav-links {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    gap: 1rem;
    max-height: 0;
    opacity: 0;
    z-index: 1001;
}
.nav-links.mobile-open {
    max-height: 500px;
    opacity: 1;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu-toggle {
            display: block;
        }


.hero {
    height: 90vh;
    padding: 2rem 0;
    }

.hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.vision-section {
    padding: 3rem 0;
}

.vision-content {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.vision-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.vision-items {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.vision-item {
    padding: 1.5rem;
}

.team-section {
    padding: 3rem 0;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.team-member {
    padding: 1.5rem;
}

    .team-member img {
        width: 100px;
        height: 100px;
    }

    .about-section {
        padding: 3rem 0;
    }

    .about-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about-content {
        padding: 2rem 1.5rem;
        text-align: left;
    }

    .blog-section {
        padding: 3rem 0;
    }

    .blog-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-post img {
        height: 180px;
    }

    .blog-content {
        padding: 1.2rem;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .contact-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
     .faq-form-style {
        padding: 20px 10px;
    }

    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .vision-text h2,
    .team-section h2,
    .about-section h2,
    .blog-section h2,
    .contact-section h2 {
        font-size: 1.7rem;
    }

    .vision-item,
    .team-member,
    .about-content,
    .contact-form {
        padding: 1rem;
    }

    .team-member img {
        width: 80px;
        height: 80px;
    }

    .blog-content {
        padding: 1rem;
    }

    .blog-post h3 {
        font-size: 1.1rem;
    }
}

/* Floating particles effect */
.particle {
    position: absolute;
    background: rgba(74, 222, 128, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}