/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
/* .navbar {
    background: #0d6efd;
}
.navbar-brand {
    font-weight: 600;
    font-size: 22px;
    color: white !important;
}
.navbar a {
    color: white !important;
    margin-left: 5px;
    text-decoration: none;
}
.navbar a:hover {
    color: #ffc107 !important;
} */

/* Hero Section */
.hero {
    background: linear-gradient(120deg, #0d6efd, #0048a8);
    color: white;
    text-align: center;
    padding: 80px 20px;
}
.hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}
.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}
.hero form {
    max-width: 600px;
    margin: auto;
    display: flex;
    gap: 10px;
}
.hero input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
}
.hero button {
    background: #ffc107;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}
.hero button:hover {
    background: #e0a800;
}

/* Job Categories */
.container h3 {
    margin-bottom: 15px;
    font-weight: 500;
}
.btn-outline-primary {
    border-radius: 5px;
    padding: 8px 15px;
    font-weight: 500;
}
.btn-outline-primary:hover {
    background: #0048a8;
    color: white !important;
}

/* Job Cards */
.job-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.3s;
    overflow: hidden;
}
.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.job-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.job-card .card-body h5 {
    font-size: 20px;
    margin-bottom: 5px;
}
.job-card .text-muted {
    font-size: 14px;
    margin-bottom: 5px;
}

/* Buttons */
.btn-primary {
     background: #0048a8;
    border: none;
    align-items: center;
    color: white;
    text-align: center;  /* centers the text */
    display: block; /* ensures text-align works */
    font-weight: 500;
    padding: 5px 5px;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover {
    background: #0048a8;
}

/* AdSense / Ads Section */
.ads {
    margin: 40px 0;
    text-align: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Make ads responsive */
.ads ins {
    display: inline-block !important;
    max-width: 100% !important;
    height: auto !important;
}

/* Footer */
.footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 25px;
    margin-top: 50px;
    font-size: 14px;
}

/* Responsive */
@media(max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }
    .hero form {
        flex-direction: column;
    }
    .hero input,
    .hero button {
        width: 100%;
    }
    .job-card img {
        height: 180px;
    }
    .container .row {
        justify-content: center;
    }
}

/* Floating WhatsApp & YouTube */
.floating-whatsapp, .floating-youtube {
    position: fixed;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}
.floating-whatsapp {
    bottom: 30px; /* WhatsApp at bottom */
}
.floating-youtube {
    bottom: 100px; /* YouTube above WhatsApp */
}
.floating-text {
    background: #0dfd8d; /* WhatsApp green */
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    margin-bottom: 5px;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.floating-youtube .floating-text {
    background: #FF0000; /* YouTube red */
}
.floating-whatsapp img, .floating-youtube img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}
.floating-whatsapp img:hover, .floating-youtube img:hover {
    transform: scale(1.1);
}
@keyframes blink {
  0% { transform: scale(1); box-shadow: 0 0 5px #25d366; }
  50% { transform: scale(1.2); box-shadow: 0 0 15px #25d366; }
  100% { transform: scale(1); box-shadow: 0 0 5px #25d366; }
}
.floating-whatsapp img {
    animation: blink 1s infinite;
}

/* Details Page */
.details {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}
.details img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}
.details h2 {
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
}
.details p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}
.details .btn {
    margin-top: 20px;
    background-color: #0048a8;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}
.details .btn:hover {
    background-color: #0048a8;
    transform: scale(1.05);
}

/* Breaking News */
.breaking-news {
    font-weight: bold;
    font-size: 16px;
    background: #dc3545;
    color: white;
    padding: 10px 0;
    margin-bottom: 1px;
}
.breaking-news marquee {
    width: 100%;
}
footer a:hover{
color:#0d6efd !important;
transition:0.3s;
}