/* Hero Section Styles */
.hero-section {
    background: linear-gradient(rgb(0 0 0 / 20%), rgb(0 0 0 / 45%)), url(assets/agribg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-content {
    padding: 3rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}
.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
}
.hero-image img {
    max-width: 100%;
    height: auto;
}

@keyframes fadeBounce {
    0% { opacity: 0; transform: translateY(-20px); }
    50% { opacity: 1; transform: translateY(10px); }
    100% { transform: translateY(0); }
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
@keyframes colorChange {
    0% { color: #1f2937; }
    50% { color: #3b82f6; }
    100% { color: #1f2937; }
}
@keyframes rotateText {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}
.animate-text {
    animation: fadeBounce 1.5s ease-in-out, pulse 2s infinite, colorChange 3s infinite, rotateText 4s infinite;
}
/* Hero Content Styles */
.hero-content {
    padding: 2rem 0;
}

/* Features Section Styles */
.features-section {
    background-color: #f8f9fa;
}
.feature-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.accordion-button:not(.collapsed) {
    background-color: #198754;
    color: white;
}

/* Video Container Styles */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#testimonialCarousel {
    padding-bottom: 50px;
}
.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5) !important;
    border-radius: 50% !important;
    color: white !important;
}

.testimonial-carousel .owl-prev {
    left: -50px;
}

.testimonial-carousel .owl-next {
    right: -50px;
}

.testimonial-carousel .owl-dots {
    margin-top: 20px;
}

.testimonial-carousel .owl-dot span {
    background: #ccc !important;
}

.testimonial-carousel .owl-dot.active span {
    background: #0d6efd !important;
}
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

#testimonialCarousel .carousel-control-prev {
    left: -50px;
}

#testimonialCarousel .carousel-control-next {
    right: -50px;
}

#testimonialCarousel .carousel-indicators {
    bottom: 0;
}

#testimonialCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    margin: 0 5px;
}

#testimonialCarousel .carousel-indicators button.active {
    background-color: #0d6efd;
}

.testimonial-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.user-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content h5 {
    color: #333;
    margin-bottom: 0.5rem;
}

.testimonial-content .position {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-content .message {
    color: #555;
    font-style: italic;
}
.style-link{
    text-decoration: none !important;
    color: #fff;
}

.blog-card{
    margin: 0 auto;
    background: white;
    height:350px;
    border-radius: 10px;
    padding: 5px;
    text-align: justify;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
}
.blog-card img{
    height: 250px;
    object-fit: cover;
}
.blog-card a{
    text-decoration: none !important;
    color: #000;
}

.blog-card .card-title{
    margin-top: 5px;
    font-weight:bold;
    color: #000;
}
.btn-gird{
    width:100%;
    
}