/* ----------------------------------

Template Name: Innovations in Livestock Research Pvt. Ltd. - Organic Farm Agriculture Template
Author: validtheme
Description:
Version: 1.0

Main Font    : Manrope
Main Color   : var(--color-primary)

-------------------------------------

[Typography]

Body copy:    15px 'Manrope', sans-serif
Header:     36px 'Manrope', sans-serif
Input, textarea:  16px 'Manrope', sans-serif
Sidebar heading:  20px 'Manrope', sans-serif

>>> TABLE OF CONTENTS:
=======================
        
    01. Template default css
        - Animations
        - General
        - Section Title
        - Video Button
        - Typography
        - Tables
        - Forms
        - Buttons
        - Pagination
        - Colors
    02. Preloader
    03. Topbar
	    - Topbar Regular
        - Topbar With Menu
    04 Navbar
        - Navbar Default
        - Navbar Right Menu
        - Navbar Sticky
        - Navbar Center
    05. Banner
        - Banner Style One
        - Banner Style Two
    06. About Us
	    - About Style One
        - About Style Two
    07. Services
        - What We Do (Slider)
        - Services With Image & Icon
        - Services Single
    09. Product
		- Product Light Version
        - Product Dark Version
    10. Why Choose Us
    11. Fun Factor
    12. Testimonials
    13. Farmers
        - Farmer Grid
        - Farmer Details
    14. Projects
        - Project Slider
        - Prject Grid
        - Prject Details
    15. Order Process
    16. Clients / Brand
    17. Blog
        - Standard
        - Blog Grid
        - Left Sidebar
        - Right Sidebar
        - Single
    18. Error 404
    19. Footer
    20. PHP Contact Form
    21. Others

*/

/*
** General Styles for HTML tags
*/

/* ===================================
    Custom Styles for About Us Page
====================================== */

/* Service Item Box Styling */
.service-item-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* ===================================
    Research Sectors Gateway Section
====================================== */

/* Section Header */
.research-sectors-header {
    background-color: #f9f9f9;
    padding: 80px 0 40px;
}

.research-sectors-header .section-badge {
    color: #33a147;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    display: inline-block;
}

.research-sectors-header h2 {
    color: #04000b;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.research-sectors-header p {
    color: #787878;
    font-size: 17px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .research-sectors-header h2 {
        font-size: 48px;
    }
}

/* Gateway Cards Section */
.research-gateway-cards {
    background-color: #f9f9f9;
    padding: 0 0 100px;
}

.gateway-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.gateway-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(16, 34, 16, 0) 40%, rgba(16, 34, 16, 0.95) 100%);
    transition: all 0.4s ease;
    z-index: 1;
}

.gateway-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(51, 161, 71, 0.2);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gateway-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.gateway-card:hover::after {
    opacity: 1;
}

.gateway-card:hover::before {
    background: linear-gradient(180deg, rgba(16, 34, 16, 0.2) 40%, rgba(16, 34, 16, 1) 100%);
}

/* Card Content */
.gateway-card-content {
    position: relative;
    z-index: 10;
}


.division-badge {
    background: rgba(51, 161, 71, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(51, 161, 71, 0.4);
    transition: all 0.3s ease;
}

.gateway-card:hover .division-badge {
    background: rgba(51, 161, 71, 0.4);
    border-color: rgba(51, 161, 71, 0.6);
}

.gateway-card h3 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.gateway-card p {
    color: #e0e0e0;
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 450px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gateway-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #33a147;
    font-weight: 700;
    font-size: 15px;
    transition: gap 0.3s ease;
}

.gateway-card:hover .gateway-card-link {
    gap: 18px;
}

.gateway-card-link i {
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .gateway-card {
        min-height: 450px;
        padding: 40px;
        margin-bottom: 30px;
    }

    .gateway-card h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .research-sectors-header {
        padding: 100px 0 30px;
    }

    .research-sectors-header h2 {
        font-size: 36px;
    }

    .research-gateway-cards {
        padding: 0 0 60px;
    }

    .gateway-card {
        min-height: 400px;
        padding: 35px;
    }

    .gateway-card h3 {
        font-size: 26px;
    }

    .gateway-card p {
        font-size: 15px;
    }
}

/* Animation on Scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gateway-card {
    animation: fadeInUp 0.6s ease forwards;
}

.gateway-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* .service-item-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--) 0%, #8b5cf6 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
} */

.service-item-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(98, 34, 204, 0.15);
}

.service-item-box:hover::before {
    transform: scaleX(1);
}

.service-item-box .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-item-box .icon i {
    font-size: 32px;
    color: #fff;
}

.service-item-box:hover .icon {
    transform: rotateY(360deg);
}

.service-item-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 15px;
}

.service-item-box p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Breed Table Styling */
.breed-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.breed-table thead {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.breed-table thead th {
    padding: 20px 15px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-align: left;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breed-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.breed-table tbody tr:last-child {
    border-bottom: none;
}

.breed-table tbody tr:hover {
    background: #f8f9fa;
    transform: scale(1.01);
    box-shadow: 0 2px 10px rgba(98, 34, 204, 0.1);
}

.breed-table tbody td {
    padding: 20px 15px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    border: none;
}

.breed-table tbody td strong {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 16px;
}

/* Responsive table */
@media (max-width: 991px) {
    .breed-table {
        font-size: 13px;
    }

    .breed-table thead th,
    .breed-table tbody td {
        padding: 15px 10px;
    }
}

@media (max-width: 767px) {
    .service-item-box {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .breed-table thead {
        display: none;
    }

    .breed-table tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 15px;
    }

    .breed-table tbody td {
        display: block;
        text-align: right;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
        position: relative;
        padding-left: 50%;
    }

    .breed-table tbody td:last-child {
        border-bottom: none;
    }

    .breed-table tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        padding-right: 10px;
        text-align: left;
        font-weight: 600;
        color: var(--color-primary);
    }
}

/* About Content Styling */
.about-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.about-area h3 {
    color: #232323;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.about-area h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.text-center h3::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ===================================
    Blog Grid Layout Styles
====================================== */

.blog-item-box {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.blog-item-box .item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-item-box .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(98, 34, 204, 0.2);
}

.blog-item-box .item .thumb {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.blog-item-box .item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-item-box .item:hover .thumb img {
    transform: scale(1.1);
}

.blog-item-box .item .thumb .date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #fff;
    /* padding: 10px; */
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(98, 34, 204, 0.3);
    z-index: 2;
}

.blog-item-box .item .thumb .date strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    /* margin-bottom: 5px; */
}

.blog-item-box .item .thumb .date span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-item-box .item .info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-item-box .item .info .meta {
    margin-bottom: 15px;
}

.blog-item-box .item .info .meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-item-box .item .info .meta ul li {
    display: inline-flex;
    align-items: center;
}

.blog-item-box .item .info .meta ul li a {
    color: #999;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-item-box .item .info .meta ul li a:hover {
    color: #6222cc;
}

.blog-item-box .item .info .meta ul li i {
    margin-right: 8px;
    color: #6222cc;
}

.blog-item-box .item .info .title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-item-box .item .info .title a {
    color: #232323;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-item-box .item .info .title a:hover {
    color: #6222cc;
}

.blog-item-box .item .info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-item-box .item .info .btn {
    align-self: flex-start;
}

/* Grid Columns */
.blog-grid-item {
    padding: 0 15px;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 767px) {
    .blog-item-box .item .thumb {
        height: 220px;
    }

    .blog-item-box .item .info {
        padding: 20px;
    }

    .blog-item-box .item .info .title {
        font-size: 18px;
    }

    .blog-item-box .item .thumb .date {
        padding: 10px 15px;
        bottom: 15px;
        left: 15px;
    }

    .blog-item-box .item .thumb .date strong {
        font-size: 20px;
    }
}

/* ===================================
    Certification Page Styles
====================================== */

/* Certification Card */
.certification-card .card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.certification-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(51, 161, 71, 0.15) !important;
    border-color: rgba(51, 161, 71, 0.3) !important;
}

.certification-card .cert-icon {
    width: 50px;
    height: 50px;
    background: #f9f9f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-card .cert-icon i {
    font-size: 24px;
    color: #33a147;
}

.certification-card .cert-ref {
    font-size: 10px;
    letter-spacing: 1.5px;
    padding: 5px 12px;
}

.certification-card .btn-link-arrow {
    color: #33a147;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.certification-card .btn-link-arrow:hover {
    gap: 8px;
    color: #26b240;
}

.certification-card .btn-link-arrow i {
    transition: transform 0.3s ease;
}

.certification-card:hover .btn-link-arrow i {
    transform: translateX(5px);
}

/* Quality Icon Box */
.quality-icon-box {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.quality-icon-box i {
    font-size: 36px;
    color: #33a147;
}

.quality-icon-box:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(51, 161, 71, 0.2);
}

/* Audit Timeline */
.audit-timeline {
    position: relative;
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
    display: flex;
    gap: 20px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    width: 14px;
    height: 14px;
    background: #33a147;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 5px;
}

.timeline-item:not(:last-child) .timeline-marker::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    background: #e0e0e0;
}

.timeline-content h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #04000b;
}

.timeline-content p {
    font-size: 14px;
    line-height: 1.6;
}

/* Audit Results Card */
.audit-results-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 20px;
}

.audit-results-card .badge {
    font-size: 11px;
    padding: 8px 16px;
    letter-spacing: 0.5px;
}

.audit-metrics .metric-item {
    margin-bottom: 0;
}

.audit-metrics .progress {
    border-radius: 10px;
    overflow: hidden;
}

.audit-metrics .progress-bar {
    background: linear-gradient(90deg, #33a147 0%, #26b240 100%);
    transition: width 1s ease;
}

/* Association Logo */
.association-logo {
    opacity: 0.6;
    transition: all 0.3s ease;
}

.association-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Related Pages Cards */
.related-page-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: #f9f9f9;
    border-radius: 12px;
    text-decoration: none;
    color: #04000b;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-page-card:hover {
    background: #33a147;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(51, 161, 71, 0.2);
}

.related-page-card i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.related-page-card:hover i {
    transform: translateX(5px);
}

/* Letter Spacing Helper */
.letter-spacing-wide {
    letter-spacing: 3px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .certification-card .card-body {
        padding: 30px;
    }

    .timeline-item {
        padding-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .audit-timeline {
        padding-left: 20px;
    }

    .timeline-item {
        gap: 15px;
    }

    .quality-icon-box {
        width: 70px;
        height: 70px;
    }

    .quality-icon-box i {
        font-size: 30px;
    }

    .related-page-card {
        padding: 20px;
    }
}

/* ===================================
    Divisions & Expertise Section
====================================== */

.divisions-expertise-section {
    background: #f9f9f9;
}

.division-card .card {
    transition: all 0.3s ease;
    border-radius: 12px;
    cursor: pointer;
}

.division-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(51, 161, 71, 0.15) !important;
}

.division-icon {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.division-card:hover .division-icon {
    transform: scale(0.95);
}

.division-icon i {
    font-size: 2.5rem;
}

.division-card .card-title {
    color: #04000b;
    font-size: 1rem;
    line-height: 1.3;
}

.division-card .card-text {
    font-size: 0.75rem;
    line-height: 1.4;
}

/* ===================================
    Why IILP Section
====================================== */

.why-iilp-section .card {
    background-color: #f9f9f9;
}

.feature-card .card {
    transition: all 0.3s ease;
    border-radius: 16px;
}

.feature-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(51, 161, 71, 0.15) !important;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
}

.fw-black {
    font-weight: 900;
}

/* ===================================
    Collaboration Section
====================================== */

.collaboration-section {
    padding: 60px 0;
}

.collaboration-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}

.collaboration-bg-icon {
    position: absolute;
    right: -80px;
    top: -80px;
    font-size: 240px;
    opacity: 0.1;
    z-index: 1;
}

.collaboration-info-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.collaboration-info-card:hover {
    transform: scale(1.05);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.border-opacity-25 {
    border-color: rgba(255, 255, 255, 0.25) !important;
}

.bg-opacity-10 {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.bg-opacity-20 {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

.opacity-75 {
    opacity: 0.75;
}

/* Responsive Design */
@media (max-width: 991px) {
    .division-icon {
        aspect-ratio: 1.2;
    }

    .collaboration-bg-icon {
        font-size: 180px;
        right: -60px;
        top: -60px;
    }
}

@media (max-width: 767px) {
    .divisions-expertise-section h2 {
        font-size: 1.75rem;
    }

    .division-card .card-body {
        padding: 1rem;
    }

    .division-icon i {
        font-size: 2rem;
    }

    .why-iilp-section h2 {
        font-size: 1.75rem;
    }

    .collaboration-banner {
        padding: 2rem 1.5rem !important;
    }

    .collaboration-banner h2 {
        font-size: 1.75rem;
    }

    .collaboration-bg-icon {
        font-size: 120px;
        right: -40px;
        top: -40px;
    }
}

@media (max-width: 575px) {
    .division-card .card-title {
        font-size: 0.9rem;
    }

    .division-card .card-text {
        font-size: 0.7rem;
    }
}


/* ===================================
    Biosecurity Page Styles
====================================== */



.biosecurity-hero-section .hero-card {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    min-height: 300px;
}

.biosecurity-hero-section .badge {
    font-size: 0.7rem;
    letter-spacing: 1px;
}

/* Pillar Cards */
.pillar-card .card {
    transition: all 0.3s ease;
}

.pillar-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(51, 161, 71, 0.15) !important;
    border-color: #33a147 !important;
}

.pillar-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content-center;
    transition: all 0.3s ease;
}

.pillar-icon i {
    font-size: 2.5rem;
}

.pillar-card:hover .pillar-icon {
    background-color: #33a147 !important;
}

.pillar-card:hover .pillar-icon i {
    color: #fff !important;
}

/* Protocol Steps */
.protocol-item .card {
    transition: all 0.3s ease;
}

.protocol-item .card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(51, 161, 71, 0.1) !important;
}

/* Compliance Card */
.compliance-card {
    /* background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%); */
}

.compliance-check {
    min-width: 24px;
    min-height: 24px;
}

/* Commitment Banner */
.commitment-banner {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

.pattern-overlay {
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 24px 24px;
}

.letter-spacing-wide {
    letter-spacing: 2px;
}

/* Related Page Cards */
.related-page-card .bg-light {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-page-card:hover .bg-light {
    background-color: #33a147 !important;
    border-color: #26b240 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(51, 161, 71, 0.2);
}

.related-page-card:hover i {
    color: #fff !important;
}

.related-page-card:hover .text-dark {
    color: #fff !important;
}

/* Responsive Design */
@media (max-width: 991px) {
    .biosecurity-hero-section h2 {
        font-size: 2rem;
    }

    .pillar-icon {
        width: 70px;
        height: 70px;
    }

    .pillar-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .biosecurity-hero-section .hero-card {
        min-height: auto;
    }

    .biosecurity-hero-section h2 {
        font-size: 1.75rem;
    }

    .protocol-number span {
        font-size: 2rem !important;
    }

    .compliance-card {
        margin-top: 2rem;
    }
}