.icon-nav {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.icon-item {
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    min-width: 120px;
}

.icon-item:hover {
    background: #f5f5f5;
    transform: translateY(-5px);
}

.icon-item i {
    font-size: 2.5rem;
    color: #4caf50;
    margin-bottom: 10px;
}

.btn-search {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.info-card {
    background-color: #cfffcf;
    font-size: 20px;
    font-weight: 600;
    fill: #760d57;
    color: #760d57;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, .33);
    border-radius: 15px;
    padding: 20px 15px;
    cursor: pointer;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #4caf50;
}

.disease-info {
    padding: 80px 0;
    position: relative;
}

.warning-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
    position: relative;
}

.blog-section {
    background: #ffe5d9;
    padding: 40px 0;
}

.social-section {
    background: white;
    padding: 60px 0;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.social-row {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 15px;
}

.social-icon {
    text-align: center;
    margin: 0 15px;
    font-size: 24px;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 40%;
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon i {
    font-size: 2rem;
}

.social-icon b {
    display: block;
    margin-top: 8px;
    font-size: 12px;
}

.faq-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq-header {
    background: #007623;
    color: white;
    text-align: center;
}

.faq-item {
    background: #ffffff;
    color: #000;
    border: 2px solid #00ca3c;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    color: #000;
    border-color: #00ca3c;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #000;
    align-items: center;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    /* background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%); */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    color: white;
}

.socicons {
    width: 35%;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .icon-nav {
        justify-content: center;
    }

    .social-icons {
        gap: 20px;
    }
}
