        .section-title {
            font-size: 2rem;
            text-align: center;
            margin: 50px 0 20px;
        }
        .job-categories, .job-places {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 0 50px;
            margin-bottom: 50px;
        }
        .category-card, .place-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 20px;
            width: 200px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: 0.3s;

        }
        .category-card:hover, .place-card:hover {
            transform: translateY(-5px);
        }

        .category-card div{

            display: block;
        }
        .job-listings {
            padding: 50px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .job-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 20px;
            margin: 15px;
            width: 300px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: 0.3s;
        }
        .job-card:hover {
            transform: translateY(-5px);
        }
        .apply-btn {
            display: inline-block;
            background: #FFD700;
            color: #6A2F8D;
            padding: 10px 15px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
        }
        .apply-btn:hover {
            background: #FFA500;
        }
        
        /* Ads wrapper in marquee section */
.marquee_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px;
  gap: 20px;
}

.marquee_section div{
    
 width: 100%;   
 text-align: center;
    
}
/* Responsive ad container */
.ad-banner {
  flex: 0 0 200px;
  max-width: 200px;
  height: auto;
}

@media (max-width: 768px) {
  .ad-banner {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }

  .ad-banner iframe {
    width: 100% !important;
    height: auto !important;
  }

    .marquee_section div{
    
 width: 100%;   
    
}
    
}

        .dream{
            display: flex; justify-content: space-between; align-items: center; padding: 50px; background: #f8f9fa;
        }
        .dream-img{
            width: 400px; height: 400px; border-radius: 50%; object-fit: cover; box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
        }
        .findjob-btn{
            
            padding: 15px 30px; background-color: #4A2573; color: white; border: none; border-radius: 25px; cursor: pointer;
        
            
        }
        
        .interest {
            padding: 50px; background: white; text-align: center;
        }
        
        .interest-cat{
            display: flex; justify-content: space-around; gap: 20px;
        }
        .interest-card{
            width: 250px; padding: 30px; background: #f8f9fa; border-radius: 15px; box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1); cursor: pointer;
        }
        
        .newspaper{
            
            max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
        }
        
        
        