<style>

body {
    background-color: #f5f7fb;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* ----------------------------- RESET & BASE ----------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Times New Roman;
}


a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}
img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
}

/* ----------------------------- MAIN LAYOUT ----------------------------- */
.main-layout {
    display: flex;
    gap: 30px;
    max-width: 1300px;
    margin: 30px auto;
    padding: 0 20px;
}
.left-panel {
    flex: 5;
    max-width: 270px;
    background-color: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
    height: fit-content;
    transition: all 0.3s ease;
}
.left-panel h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1f2937;
    font-weight: 600;
}
.left-panel hr {
    border: none;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 15px;
}
.panel-section {
    margin-bottom: 30px;
}
.titles-two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
}
.titles-two-column a {
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;
    padding: 4px 6px;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.titles-two-column a:hover {
    background: linear-gradient(90deg, #4f46e5, #3b82f6);
    color: #fff;
}
.btn-search-titles {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;
    background: linear-gradient(90deg, #10b981, #059669);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}
.btn-search-titles:hover {
    opacity: 0.95;
    transform: translateY(-2px);
}
.main-content {
    flex: 3;
}

/* ----------------------------- HERO ----------------------------- */
.hero {
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    border-radius: 14px;
    margin-bottom: 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    animation: fadeInDown 1s ease;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}
.btn-primary {
    background: linear-gradient(90deg, #10b981, #059669);
    color: #fff;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.4s;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.btn-secondary {
    display: inline-block;
    margin-top: 20px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.4s;
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* ----------------------------- GRIDS & CARDS ----------------------------- */
.jobs-grid,
.companies-grid,
.blogs-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.job-card,
.company-card,
.blog-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    word-wrap: break-word;
}
.job-card:hover,
.company-card:hover,
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.job-card h3,
.company-card h3,
.blog-card h3 {
    font-size: 1.15rem;
    margin: 15px 0 10px;
    color: #1f2937;
    font-weight: 600;
}
.job-card p,
.company-card p,
.blog-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.4;
}
.blog-card img,
.company-card img,
.job-card img {
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
}
.blog-card img:hover,
.company-card img:hover,
.job-card img:hover {
    transform: scale(1.03);
}
section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #111827;
    text-align: center;
    font-weight: 700;
}

/* ----------------------------- GOOGLE MAP ----------------------------- */
.google-map {
    margin: 60px 0;
    text-align: center;
}
.map-container iframe {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ----------------------------- GOOGLE ADS ----------------------------- */
.google-ads {
    margin: 60px 0;
    text-align: center;
}
.ads-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.ad-slot {
    background-color: #f3f4f6;
    border: 1px dashed #9ca3af;
    width: 320px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #6b7280;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.ad-slot:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.ads-panel .ad-slot {
    width: 100%;
    height: 250px;
    margin-bottom: 15px;
}

/* ----------------------------- TOP SEARCH BAR ----------------------------- */
.top-search-bar {
    background: #e5e5e5;
    padding: 18px 20px;
    border-radius: 8px;
    margin: 20px auto 30px;
    max-width: 1200px;
}
.search-form {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.search-input {
    flex: 1;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 12px 14px;
    border-radius: 6px;
}
.search-input input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    color: #111827;
}
.search-btn {
    background: #ff7a1a;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}
.search-btn:hover {
    background: #e96b12;
}
.detailed-search {
    margin-top: 8px;
    text-align: center;
}
.detailed-search a {
    font-size: 14px;
    color: #333;
}



/* ----------------------------- PAGINATION ----------------------------- */
.pagination {
    margin-top: 20px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.pagination a {
    padding: 8px 12px;
    background: #f3f4f6;
    color: #111827;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    flex: 1 1 auto;
}
.pagination a.active {
    background: #4f46e5;
    color: #fff;
}
.pagination a:hover {
    background: #3b82f6;
    color: #fff;
}

/* ----------------------------- HERO ANIMATION ----------------------------- */
@keyframes fadeInDown {
    0% {opacity:0; transform: translateY(-20px);}
    100% {opacity:1; transform: translateY(0);}
}
@keyframes fadeInUp {
    0% {opacity:0; transform: translateY(20px);}
    100% {opacity:1; transform: translateY(0);}
}

/* ----------------------------- RESPONSIVE ENHANCEMENTS ----------------------------- */
@media (max-width:1200px) {
    .main-layout {flex-direction: column;}
    .left-panel {max-width:100%; margin-bottom:25px; position:relative; top:auto;}
}
@media (max-width:768px) {
    .hero {padding: 60px 15px;}
    .hero h1 {font-size: 2rem;}
    .hero p {font-size: 1rem;}
    .titles-two-column {grid-template-columns: 1fr; gap: 10px 0;}
    .panel-section {padding: 10px;}
    .left-panel .left-job-alert {padding: 14px 12px;}
    .left-panel .left-job-alert .alert-subtext {font-size: 0.8rem;}
}
@media (max-width:480px) {
    .hero h1 {font-size: 1.6rem;}
    .hero p {font-size: 0.95rem;}
    .btn-primary, .btn-secondary, .btn-search-titles {width:100%; font-size:14px; padding:12px;}
    .jobs-grid, .companies-grid, .blogs-grid {grid-template-columns:1fr; display:flex; overflow-x:auto; flex-wrap:nowrap; gap:15px; padding-bottom:10px;}
    .job-card, .company-card, .blog-card {flex:0 0 260px; margin-bottom:0;}
    .job-card h3, .company-card h3, .blog-card h3 {font-size:0.95rem;}
    .job-card p, .company-card p, .blog-card p {font-size:0.85rem; line-height:1.3;}
}
@media (max-width:320px) {
    .hero h1 {font-size:1.4rem;}
    .hero p {font-size:0.85rem;}
    .btn-primary, .btn-secondary, .btn-search-titles {padding:10px; font-size:13px;}
}





.site-footer {
    background: #111827;
    color: #e5e7eb;
    padding: 25px 15px;
    margin-top: 40px;
    font-size: 0.85rem;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.footer-brand p {
    margin: 6px 0 12px;
    color: #9ca3af;
}

.footer-links {
    margin-bottom: 12px;
}

.footer-links a {
    color: #93c5fd;
    text-decoration: none;
    margin: 0 6px;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copy {
    font-size: 0.75rem;
    color: #9ca3af;
}
/* ----------------------------- JOB ALERT SECTION ----------------------------- */
.left-panel .left-job-alert {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px 14px;
    margin-bottom: 22px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.left-panel .left-job-alert .alert-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}
.left-panel .left-job-alert .alert-underline {
    display: block;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #3b82f6);
    margin: 6px auto 10px;
    border-radius: 4px;
}
.left-panel .left-job-alert .alert-subtext {
    font-size: 0.85rem;
    color: #4b5563;
    margin-bottom: 12px;
    line-height: 1.45;
}
.left-panel .left-job-alert .alert-msg {
    font-size: 0.85rem;
    padding: 8px 10px;
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    margin-bottom: 10px;
    font-weight: 600;
}
.left-panel .left-job-alert-form {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.left-panel .left-job-alert-form input,
.left-panel .left-job-alert-form select {
    width: 100%;
    padding: 9px 11px;
    font-size: 0.85rem;
    border-radius: 6px;
    border: 1px solid #d1d5db;
}
.left-panel .left-job-alert-form input::placeholder {
    color: #9ca3af;
}
.left-panel .left-job-alert-form input:focus,
.left-panel .left-job-alert-form select:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 2px rgba(79,70,229,0.15);
}
.left-panel .left-job-alert-form button {
    padding: 10px;
    background: linear-gradient(90deg, #10b981, #059669);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.left-panel .left-job-alert-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

</style>

