
/* Hero Section */
.hero-section {
    background: url("../images/catalog/img_frame_10.png") ;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%; /* Placeholder image */
    height: 500px; /* Fixed height */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Recent Posts Section */
.recent-posts-section {
    padding: 60px 0; /* Generous vertical padding */
    background-color: #F5F5F5;
}

.recent-posts-section h2 {
    text-align: left;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #1A2B3C;
    padding-left: 20px; /* Align with container padding */
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; /* Consistent gap between grid items */
}

.post-item {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    overflow: hidden;
    transition: transform 0.3s ease;
}

.post-item:hover {
    transform: translateY(-5px);
}

.post-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-item h3 {
    font-size: 1.3rem;
    color: #1A2B3C;
    padding: 15px;
    margin-bottom: 5px;
    font-weight: 700;
}

.post-item p {
    font-size: 0.95rem;
    color: #555555;
    padding: 0 15px 15px;
}





/* CTA Section */
        .cta-section {
            margin: 110px 2rem 68px 2rem;
        }

        .cta-container {
            
            background: url("../images/catalog/img_close_36px.png"), #325573;
            background-size: cover;
            background-position: center;
            border-radius: 30px;
            padding: 30px 20px;
            text-align: center;
        }

        .cta-image {
            width: 100%;
            max-width: 1414px;
            height: 210px;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 64px;
        }

        .cta-title {
            font-size: 32px;
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            color: #fdfeff;
            margin-bottom: 32px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #e44a1b;
            color: #fdfeff;
            padding: 18px 24px ;
            border-radius: 32px;
            text-decoration: none;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            line-height: 21px;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background-color: #c73e17;
            transform: translateY(-2px);
        }

        .cta-btn-icon {
            width: 24px;
            height: 24px;
        }



/* Responsive Design */
@media (max-width: 992px) {
    
    
    .btn-contact-header {
        margin-top: 10px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .recent-posts-section h2 {
        font-size: 2rem;
        text-align: center;
        padding-left: 0;
    }

    .post-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .need-assistance-section h2 {
        font-size: 2rem;
    }

    .need-assistance-section p {
        font-size: 1rem;
    }
}
 @media (max-width: 768px) {
                 .cta-title {
                padding: 0 20px;
            }
           }

@media (max-width: 768px) {
     /* .hamburger {
                display: none;
            } */

            /* .nav-menu {
                display: flex;
            } */

    .hero-section {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .post-grid {
        grid-template-columns: 1fr;
    }

    .post-item img {
        height: 180px;
    }

    .need-assistance-section {
        padding: 50px 0;
    }

    .need-assistance-section h2 {
        font-size: 1.8rem;
    }

    .need-assistance-section p {
        font-size: 0.9rem;
    }

    .btn-contact {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-header .logo {
        font-size: 1.5rem;
    }

     /* .hamburger {
                display: none;
            } */

            /* .nav-menu {
                display: flex;
            } */


    .hero-section {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.8rem;
    }

    .recent-posts-section h2 {
        font-size: 1.8rem;
    }

    .post-item h3 {
        font-size: 1.1rem;
    }

    .post-item p {
        font-size: 0.85rem;
    }

   

    .btn-contact {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (min-width: 1024px) {
          
            .hamburger{
            display: none;
          }
          .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 150px;
        }
        }

