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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

.navbar {
    background: #1a2a44;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-img {
    height: 50px;
    transition: all 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link i {
    margin-right: 0.5rem;
}

.nav-link:hover {
    color: #00d4ff;
}

.cta-button {
    background: #00d4ff;
    color: #fff;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #00b4d8;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.hero {
    padding: 100px 0 50px;
   background: linear-gradient(0.25turn, #285163, #578dac, #229989);
    color: #fff;
    text-align: center;
    background: linear-gradient();
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero-image {
    margin: 2rem 0;
}

.hero-img {
    max-width: 100%;
    height: auto;
}

.hero-stats h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#stats-widget {
    margin-top: 1rem;
}

.why-tamed, .about, .stake, .stats, .blog, .faq, .team, .contact {
    padding: 50px 0;
    scroll-margin-top: 60px; /* Add this line */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.why-tamed.visible, .about.visible, .stake.visible, .stats.visible, .blog.visible, .faq.visible, .team.visible, .contact.visible {
    opacity: 1;
    transform: translateY(0);
    margin-top: 240px;
}

.section-intro, .about-overview, .about-benefits, .about-call-to-action, .tech-description {
    margin-bottom: 1.5rem;
}

.features-grid, .impact-gallery, .stats-grid, .blog-grid, .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.feature-card, .impact-item, .step, .stat-card, .blog-post, .team-member {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

.feature-card p, .impact-item p, .step p, .stat-card p, .blog-post p, .team-member p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.feature-card:hover, .impact-item:hover, .step:hover, .stat-card:hover, .blog-post:hover, .team-member:hover {
    transform: translateY(-5px);
}

.feature-icon, .step-icon {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.impact-img {
    width: 100%;
    height: 180px; /* Increased height for larger images */
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.blog-img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.sponsor-logo, .section-img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.sponsor {
    text-align: center;
    margin-top: 2rem;
}

.sponsor-logo {
    max-width: 150px;
    height: auto;
    margin-top: 0.5rem;
}

.history-vision-mission h4 {
    margin-top: 1rem;
}

.epoch-countdown {
    margin-top: 2rem;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-item summary {
    font-weight: bold;
    padding: 1rem;
    background: #f1f1f1;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form {
    display: grid;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
}

.contact-form input, .contact-form textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.social-links {
    margin-top: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    font-size: 1.5rem;
    color: #1a2a44;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #00d4ff;
}

.footer {
    background: #1a2a44;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

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

.footer-links a:hover {
    color: #00d4ff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid, .impact-gallery, .stats-grid, .blog-grid, .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .team-img {
        width: 120px;
        height: 120px;
    }

    .impact-img {
        height: 150px; /* Adjusted for larger screens */
    }

    .blog-img {
        height: 120px;
    }
    .why-tamed, .about, .stake, .stats, .blog, .faq, .team, .contact {
    padding: 50px 0;
    scroll-margin-top: 60px; /* Add this line */
    transition: opacity 0.5s ease, transform 0.5s ease;
}
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        margin-top: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        margin: 0.5rem 0;
    }

    .cta-button {
        margin-top: 1rem;
    }

    .hamburger {
        display: flex;
        align-self: flex-end;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .features-grid, .impact-gallery, .steps-grid, .stats-grid, .blog-grid, .team-grid {
        grid-template-columns: 1fr;
    }

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

    .impact-img {
        height: 120px;
    }

    .blog-img {
        height: 100px;
    }
    .why-tamed, .about, .stake, .stats, .blog, .faq, .team, .contact {
    padding: 50px 0;
    scroll-margin-top: 150px; /* Add this line */
    transition: opacity 0.5s ease, transform 0.5s ease;
}
}

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

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

    .cta-button {
        padding: 0.3rem 1rem;
        font-size: 0.9rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

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

    .impact-img {
        height: 100px;
    }

    .blog-img {
        height: 80px;
    }
    .poolid p{
        overflow-wrap: break-word;
       
        
    }
    .fullid{
 font-size: 0.7rem;
 color: orange;
 font-weight: 700;
    }


    .feature-card, .impact-item, .step, .stat-card, .blog-post, .team-member {
        padding: 1rem;
    }
    .why-tamed, .about, .stake, .stats, .blog, .faq, .team, .contact {
    padding: 50px 0;
    scroll-margin-top: 155px; /* Add this line */
    transition: opacity 0.5s ease, transform 0.5s ease;
}
}