 .achievements-section {
 
     padding: 20px 20px;

 }

 /* Accordion Header layout */
 .accordion-header {
     width: 100%;
     padding: 14px 18px;
     font-size: 1rem;
     font-weight: 600;
     text-align: left;
     background: var(--bg-color-white-1);
     color: var(--text);
     border: none;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: 500;
     border-bottom: 1px solid var(--border-color-1);
     /* border-radius: 5px; */
     /* margin: 10px 0px; */
 }

 .accordion-content .accordion-content-p {
     padding: 20px;
 }

 /* Arrow icon */
 .accordion-header i {
     transition: transform 0.3s ease;
 }

 /* Rotate arrow when active */
 .accordion-item.active .accordion-header i {
     transform: rotate(180deg);
 }

 .accordion-item {
     margin: 10px 0px;
 }

 /* Content animation */
 .accordion-content {
     /*   padding: 20px; */
     max-height: 0;
     overflow-y: scroll;
     background: var(--bg-color-white-1);
     transition: max-height 0.35s ease;
 }
.accordion-content-w-p{
    padding: 20px;
}
 .accordion-content ul {
     padding: 20px;
 }

 /* OPEN BY DEFAULT (bigger height) */
 .accordion-item.active .accordion-content {
     max-height: 800px;
 }

 .achievement-list {
     max-width: 900px;
     margin: 0 auto;
     padding: 0;
     list-style: none;
 }

 .achievement-list li {
     background: #fff;
     margin-bottom: 15px;
     padding: 15px 18px;
     border-left: 4px solid #2e7d32;
     border-radius: 6px;
     line-height: 1.6;
     font-size: 14px;
     color: #333;
     transition: 0.25s ease;
 }

 .achievement-list li:hover {
     background: #f6fbf7;
     transform: translateX(4px);
 }

 .achievement-list strong {
     color: #2e7d32;
 }

 .research-section {
     max-width: 1100px;
     margin: auto;
     padding: 30px 20px;
 }

 /* Card */
 .research-card {
     background: #fff;
     padding: 20px;
     margin-bottom: 25px;
     border-radius: 12px;
     border: 1px solid #eee;
     transition: 0.3s;
 }

 .research-card:hover {
     border-color: var(--accent-1);
     ;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
 }

 /* Heading */
 .research-card h3 {
     margin-bottom: 10px;
     font-size: 18px;
     color: var(--text-color-black-2);
     border-left: 4px solid var(--accent-1);
     padding-left: 10px;
     font-weight: 500;
 }

 /* Text */
 .research-card p {
     font-size: 14px;
     color: #555;
     line-height: 1.6;
 }

 /* Image Grid */
 .image-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
     gap: 15px;
     margin-top: 15px;
 }

 /* Image Box */
 .img-box {
     text-align: center;
 }

 .img-box img {
     width: 100%;

     object-fit: cover;
     border-radius: 8px;
     transition: 0.3s;
 }



 /* Caption */
 .img-box span {
     display: block;
     font-size: 12px;
     color: #666;
     margin-top: 5px;
 }

 .research-list li {
     padding: 10px;
 }

 .research-list li .fa-circle {
     font-size: 0.4rem;
     vertical-align: middle;
     margin-right: 10px;
 }

 .exp-visits a {
     display: block;
     color: var(--primar-hover-black);
     padding: 10px;
 }


 .pub-research-card {
     margin: 40px;
     border: none;
 }

 /* Card */
 .publication-card {
     display: flex;
     max-width: 400px;
     flex-direction: column;
     justify-content: space-between;
     text-decoration: none;

     background: #ffffff;
     padding: 20px;
     border-radius: 10px;

     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     min-height: 160px;
     justify-content: center;
     margin: 40px;
     border: 1px solid var(--border-color-2);
 }



 /* Header (icon + title) */
 .publication-header {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 8px;
 }

 /* Icon */
 .publication-header i {
     font-size: 16px;
     color: #2e7d32;
 }

 /* Title */
 .publication-content-n h3 {
     margin: 0;
     font-size: 17px;
     color: #2e7d32;
     font-weight: 500;
 }

 /* Description */
 .publication-content-n p {
     margin: 5px 0 0;
     font-size: 1rem;
     color: #555;
     line-height: 1.5;
     text-align: center;
     padding: 10px;
 }

 .publication-content-n i.fa-file-pdf {
     font-size: 2rem;
     color: var(--accent-1);
 }

 /* Arrow (bottom-right) */
 .project-card .arrow {
     margin-top: 15px;
     font-size: 20px;
     color: #2e7d32;
     align-self: flex-end;
     transition: transform 0.3s ease;
 }

 .pest-pdfs-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
 }

 @media (max-width: 480px) {
     .achievements-section {
         background: #f4f8f6;
         padding: 0px;
     }
     .research-section{
        padding: 10px;
     }
 }