/* Basic styling for the blog section */
.logo {
    bottom: 1px;
  }
.banner-section {
    height: 30vh;
    background-image: url('images/Product\ Page\ Banner\ .png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffcc00;
}

.banner-section h2 {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 50px;
    font-weight: 700;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr)); /* 3 columns with minimum width */
    column-gap: 0px; /* Decrease horizontal gap between the cards */
    row-gap: 20px; /* Keep the vertical gap */
    padding: 20px;
    justify-content: center; /* Center the grid */
    max-width: 1200px; /* Limit the width of the entire container */
    margin: 0 auto; /* Center the container */
}

.blog-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 90%; /* Adjust width to make it smaller within the grid */
    max-width: 350px; /* Limit the maximum width of each card */
    box-shadow: 0 2px 5px #ffcc00;
    text-align: center;
    margin: 0 auto; /* Center the individual card */
}

.blog-card img {
    width: 100%; /* Make the image fit the width of the card */
    height: auto; /* Maintain the aspect ratio of the image */
    display: block; /* Remove any bottom spacing */
    border-radius: 5px 5px 0px 0px;
}

.blog-card h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
    padding-top: 15px !important;
    margin-left: 5px;
    margin-right: 5px;
    font-family: "Poppins", sans-serif;
}

.blog-card p {
    color: #555;
    margin-bottom: 5px !important;
    margin-left: 5px;
    margin-right: 5px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    text-align: left;
}

.know-more {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
    margin-top: 5px;
    margin-bottom: 15px;
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
}

.know-more:hover {
    background-color: #666666;
}

.mobile-section {
    display: none;
}
/** WhatsApp Icon Starts**/
.top-icons-fixed {
    position: fixed;
    bottom: 20px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100; /* Ensure icons are above other content */
    }
    .top-icons-fixed a{
    text-align: none;
    }
    
    /* Circular icon container */
    .topiconcircle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #128C7E;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: background-color 0.3s;
    }
    
    /* Icon styles */
    .topiconcircle i {
    font-size: 25px;
    color: #fff;
    }
    
    /* Hover effect for the circular container */
    .topiconcircle:hover {
    background-color: #25d366;
    }
    .top-icons-fixed a {
    text-decoration: none;
    }    
/** WhatsApp Icon Ends**/
@media only screen and (max-width: 1280px) {
    .blog-container {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on medium screens */
    }
}

@media only screen and (max-width: 810px) {
    .mobile-section {
        height: 150px; /* Adjust the height as needed */
        background-image: url('images/Product\ Page\ Moble\ Banner.png');
        background-size: cover;
        background-position: center;
        background-color: #ffcc00;
        text-align: center;
        justify-content: center;
    }
    .mobile-section h2 {
        color: #000;
        font-family: "Poppins", sans-serif;
        font-size: 50px;
        font-weight: 700;
        text-align: center;
        
    }
    .blog-container {
        grid-template-columns: 1fr; /* 1 column on small screens */
    }

    .mobile-section {
        display: block;
    }

    .banner-section {
        display: none;
    }
    /** WhatsApp Icons Start **/
    .top-icons-fixed {
        position: fixed;
        bottom: 5px;
        right: 10px;
        display: flex;
        flex-direction: column; /* Display icons in a column on small screens */
        justify-content: flex-end; /* Align icons to the right */
        align-items: center;
        z-index: 1000; /* Ensure icons are above other content */
        margin-bottom: 5px;
        gap: 10px; /* Add a gap between icons */
      }
      
      .topiconcircle {
        width: 35px;
        height: 35px;
      }
      
      .topiconcircle i {
        font-size: 20px; /* Slightly reduce the icon size for smaller screens */
      }
    /** WhatsApp Icons Ends **/
}
