body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 150px 0; /* Reduced padding to make the hero section smaller */
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.2);
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 5.5rem; /* Increased font size */
    margin-bottom: 30px; /* Increased margin */
    font-weight: 800; /* Increased font weight */
    letter-spacing: 2px; /* Increased letter spacing */
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5); /* Enhanced text shadow */
}
.hero-section p {
    font-size: 2rem; /* Increased font size */
    margin-bottom: 60px; /* Increased margin */
    max-width: 900px; /* Increased max-width */
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95; /* Increased opacity */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* Added text shadow */
}
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    color: #28a745;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: transparent;
    border-radius: 2px;
}
.online-consignment-section {
    padding: 100px 0;
    background-color: #f0f4f8;
}
.online-consignment-section .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}
.online-consignment-section .text-content {
    flex: 1;
    padding-right: 30px;
}
.online-consignment-section .image-content {
    flex: 1;
    text-align: center;
}
.online-consignment-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 600;
}
.online-consignment-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}
.btn-yellow-custom {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #333;
    padding: 18px 40px; /* Increased padding */
    font-size: 1.4rem; /* Increased font size */
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 700; /* Increased font weight */
    text-transform: uppercase;
    letter-spacing: 1px; /* Increased letter spacing */
}
.btn-yellow-custom:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}
.products-section {
    padding: 100px 0;
    background-color: #fff;
}
.products-section .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.products-section .product-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.products-section .product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}
.products-section .product-item img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
}
.products-section .product-item h4 {
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
}
.products-section .text-content {
    padding-left: 60px;
}
.products-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 600;
}
.products-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}
.info-cards-section {
    padding: 100px 0;
    background-color: #e9ecef;
}
.info-card {
    background-color: white;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solidrgb(219, 249, 212);
}
.info-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color:rgb(94, 236, 127);
}
.info-card .icon {
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 10px rgba(13, 180, 80, 0.3));
}
.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 20px;
    font-weight: 700;
}
.info-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}
.info-card .btn-link {
    color: #28a745;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: color 0.3s ease;
}
.info-card .btn-link:hover {
    color: #28a745;
    text-decoration: underline;
}
.commodity-rates-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}
.commodity-rate-card {
    background-color: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solidrgb(204, 255, 208);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.commodity-rate-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-color: #28a745;
}
.commodity-rate-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color:rgb(52, 64, 53);
    margin-bottom: 15px;
    font-weight: 700;
}
.commodity-rate-card .rate {
    font-size: 2.2rem;
    color: #28a745;
    font-weight: 700;
}
.contact-us-section {
    padding: 100px 0;
    background-color: #f0f4f8;
}
.contact-us-section .info-card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}
.contact-us-section .info-card .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}