/* General Reset */


/* Main Container */
.homepage-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}




/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #004080, #0066cc);
    padding: 60px 20px;
    text-align: center;
    border-radius: 0 0 20px 20px;
    color: white;
}

.hero-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.large-search-input {
    padding: 12px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    border: 1px solid #ccc;
    outline: none;
}

.large-search-button {
    padding: 12px;
    background-color: #FF8800;
    color: white;
    border: none;
    border-radius: 30px;
    margin-left: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.large-search-button:hover {
    background-color: #ff7300;
}

.large-search-button img {
    width: 20px;
    height: 20px;
}

/* Products Section */
.products-section {
    margin: 50px 0;
    text-align: center;
}

.products-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #004080;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 64, 128, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 15px rgba(0, 64, 128, 0.15);
}

.product-card img {
    width: 70px;
    margin-bottom: 15px;
}

.product-card h4 {
    font-size: 1.3rem;
    color: #004080;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 1rem;
    color: #666;
}

/* Blog Section */
.blog-section {
    text-align: center;
    background-color: #f0f4fa; /* Light background color */
    padding: 40px 20px;
    border-radius: 15px; /* Optional: adds rounded corners */
}

.blog-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #004080;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.blog-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 64, 128, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 64, 128, 0.2);
}

.blog-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.blog-content {
    padding: 15px;
    text-align: left;
}

.blog-content h4 {
    font-size: 1.2rem;
    color: #004080;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 1rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-logo h1 {
        font-size: 1.5rem;
    }

    .large-search-input {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .product-card img {
        width: 60px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .blog-card img {
        height: 120px;
    }
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    

}