/* Hero Section */
header {
    background: url('/Images/Header-farm.webp') no-repeat center center/cover;
    text-align: center;
    width: 100%;
    height: 90vh;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    clip-path: ellipse(100% 85% at center top);
    border-bottom: 15px solid #2b4566;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-top: 80px;
}
header .overlay {
    width: 100%;
    height: 100%;
    padding: 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, rgba(43, 91, 150, 0.6) 50%, rgba(43, 91, 150, 0.8) 100%);
}
header h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    margin-top: -40px;
}
header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 20px;
}
header a {
    border: none;
    outline: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #2b5b96, #1e3c6d);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
    transition: 0.3s ease-in;
}
header a:hover {
    background: linear-gradient(135deg, #1e3c6d, #0f2748);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease-in;
}
@media (max-width: 768px) {
    header {
        height: 70vh;
        clip-path: ellipse(100% 90% at center top);
    }
    header .overlay {
        padding: 10vw;
    }
    header h1 {
        font-size: 2.5rem;
    }
    header p {
        font-size: 1.1rem;
    }
    header a {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    header {
        height: 60vh;
        clip-path: ellipse(100% 95% at center top);
    }
    header h1 {
        font-size: 2rem;
    }
    header p {
        font-size: 1rem;
    }
    header a {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Category Cards */
.card {
    border: 1px solid #48494a2a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card img {
    height: 200px;
    object-fit: cover;
}
.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center; 
    text-align: center;
    min-height: 240px;
    padding: 20px; 
}
.card-text{
    color: gray;
    font-size: 15px;
}
.btn-custom {
    background: #2b5b96;
    color: white;
    border-radius: 50px;
    padding: 8px 20px;
    transition: all 0.3s ease-in-out;
}
.btn-custom:hover {
    background: #1e3c6d;
    color: white;
}

/* About us */
.about-btn{
    margin-top: 10px;
}

/* Features */
#features{
    margin-top: 30px;
}
.feature-section{
    margin-bottom: 80px;
}
.feature-section h3{
    color: #28a745;
}
@media (max-width: 992px) {
    .feature-section img{
        margin-bottom: 30px;
    }
}