/* --- MAIN CONTAINER (Parent Div) --- */
.main-content-wrapper {
    display: flex;
    flex-wrap: wrap; /* Mobile par wrap karega */
    gap: 20px; /* Beech ka gap */
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}

/* --- LEFT SIDE: JOB DETAILS (70% Width) --- */
.job-details-box {
    flex: 2; /* Isko jyada jagah milegi */
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-width: 300px; /* Minimum width taaki mobile pe shrink na ho */
}

/* --- RIGHT SIDE: ADS & LATEST JOBS (30% Width) --- */
.sidebar-box {
    flex: 1; /* Isko kam jagah milegi */
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 280px;
}

/* --- RESPONSIVE (Mobile View) --- */
@media (max-width: 768px) {
    .main-content-wrapper {
        flex-direction: column; /* Mobile par upar-neeche ho jayega */
    }
    .job-details-box, .sidebar-box {
        width: 100%; /* Pura width lega */
    }
}

/* --- STYLING INSIDE DIVS --- */
.job-title { color: #004aad; font-size: 1.5rem; margin-bottom: 10px; }
.company-name { font-weight: bold; color: #555; margin-bottom: 20px; display: block; }
.job-desc { line-height: 1.6; color: #333; margin-bottom: 20px; }

/* Ad Unit Style */
.sidebar-ad {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}
.ad-label { font-size: 10px; color: #999; text-transform: uppercase; display: block; margin-bottom: 5px; }

/* Latest Jobs List Style */
.latest-jobs-widget {
    background: #002b64; /* Dark Blue */
    color: white;
    padding: 15px;
    border-radius: 8px;
}
.latest-jobs-widget h3 { margin-top: 0; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 10px; font-size: 1.1rem; }
.latest-jobs-widget ul { list-style: none; padding: 0; }
.latest-jobs-widget li { margin-bottom: 10px; border-bottom: 1px dashed rgba(255,255,255,0.1); padding-bottom: 5px; }
.latest-jobs-widget a { color: #ff9900; text-decoration: none; font-size: 0.95rem; }
.latest-jobs-widget a:hover { text-decoration: underline; }




























.offer-tagline {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  padding: 15px 25px;
  border-radius: 50px;
  color: #fff;
  background: linear-gradient(270deg, #0d6efd, #00c6ff, #6f42c1);
  background-size: 600% 600%;
  animation: gradientMove 6s ease infinite, pulseGlow 2s infinite;
  box-shadow: 0 0 15px rgba(13,110,253,0.6);
  margin: 20px auto;
  width: fit-content;
}

/* Gradient Color Movement */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Pulse / Buffering Effect */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(0,198,255,0.4); }
  50% { box-shadow: 0 0 30px rgba(0,198,255,0.9); }
  100% { box-shadow: 0 0 10px rgba(0,198,255,0.4); }
}

/* Mobile Friendly */
@media(max-width:768px){
  .offer-tagline{
    font-size:18px;
    padding:12px 18px;
  }
}

:root{
  --nws-blue:#0aa2ff;
  --nws-dark:#050b1e;
  --nws-grad:linear-gradient(135deg,#0a7cff,#06214a,#3b3be0);
}
*{box-sizing:border-box;font-family:Poppins,Arial,sans-serif;}
body{margin:0;background:var(--nws-dark);color:#fff;}

.offer-wrap{
  padding:60px 20px;
  background:var(--nws-grad);
  animation:bgMove 12s ease infinite;
}
@keyframes bgMove{
  0%{filter:hue-rotate(0deg);}50%{filter:hue-rotate(20deg);}100%{filter:hue-rotate(0deg);}
}

.offer-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.offer-box{
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(14px);
  border-radius:18px;
  padding:25px;
  transition:0.4s;
}
.offer-box:hover{transform:translateY(-8px);box-shadow:0 20px 40px rgba(0,0,0,0.4);}

.offer-box img{
  width:100%;
  border-radius:14px;
  animation:pulse 4s infinite;
}
@keyframes pulse{
  0%,100%{transform:scale(1);}50%{transform:scale(1.03);} 
}

.offer-box h2{color:var(--nws-blue);margin:15px 0 10px;font-size:24px;}
.offer-box p{font-size:15px;line-height:1.7;opacity:0.95;}
.price{font-size:22px;font-weight:700;margin:10px 0;}
.price del{opacity:0.6;font-size:16px;}

.btns{margin-top:15px;display:flex;gap:12px;flex-wrap:wrap;}
.btn{
  padding:12px 22px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}
.call{background:#00c853;color:#000;}
.whatsapp{background:#25D366;color:#000;}

.poster-section{
  margin-top:60px;
  max-width:1200px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}
.poster{
  background:rgba(0,0,0,0.4);
  border-radius:16px;
  padding:20px;
}
.poster img{width:100%;border-radius:12px;}
.poster h3{margin:12px 0;color:#4fc3ff;}

@media(max-width:600px){
  .offer-wrap{padding:40px 15px;}
}
