/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f5f7fa;
    color: #222;
}

/* ===== CONTAINER ===== */
.container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
}

/* ===== HEADER ===== */
.main-header {
    background: #0b3c6d; /* logo blue */
    border-bottom: 3px solid #0e5aa7;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

/* LOGO */
.logo img {
    height: 55px;
}

/* NAV MENU */
.nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
}

.nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 8px;
}

.nav ul li a:hover {
    background: #0e5aa7;
    border-radius: 4px;
}

/* MOBILE MENU BUTTON */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0b3c6d;
        display: none;
    }

    .nav ul {
        flex-direction: column;
        padding: 10px 0;
    }

    .nav ul li {
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.15);
    }

    .nav ul li a {
        display: block;
        padding: 12px;
    }

    .nav.active {
        display: block;
    }
}

/* ===== FOOTER (basic, next step refine) ===== */
footer {
    background: #0b3c6d;
    color: #fff;
    text-align: center;
    padding: 15px 5px;
    margin-top: auto;
}

/* ===== SARKARI RESULT STYLE ===== */

.mt-20 {
    margin-top: 20px;
}

.page-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* GRID */
.sr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* BOX */
.sr-box {
    background: #ffffff;
    border: 1px solid #bdbdbd;
}

/* BOX TITLE (RED STRIP STYLE) */
.sr-box-title {
    background: #8b0000; /* SarkariResult red */
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    padding: 8px;
    font-size: 15px;
}

/* LIST */
.sr-box ul {
    list-style: none;
    padding: 10px;
}

.sr-box ul li {
    border-bottom: 1px dotted #999;
}

.sr-box ul li:last-child {
    border-bottom: none;
}

.sr-box ul li a {
    display: block;
    padding: 6px 4px;
    font-size: 14px;
    color: #0000ee;
    text-decoration: none;
}

.sr-box ul li a:hover {
    text-decoration: underline;
    background: #f5f5f5;
}

/* MOBILE */
@media (max-width: 768px) {
    .sr-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 18px;
    }
}

/* ===== TOP INFO (SARKARI RESULT STYLE) ===== */

.top-info {
    text-align: center;
    margin: 20px 0;
}

.top-text {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.live-badge {
    display: inline-block;
    background: #fff;
    border: 1px solid red;
    color: red;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px 0;
}

.tools-link a {
    display: block;
    margin-top: 8px;
    color: #0b3c6d;
    font-weight: bold;
    text-decoration: underline;
}

/* ===== QUICK COLOR BOXES ===== */

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 20px 0;
}

.quick-box {
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 14px 8px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

/* COLOR VARIANTS (LOGO FRIENDLY) */
.qb-blue { background: #0b3c6d; }
.qb-green { background: #1b8f3c; }
.qb-purple { background: #6a1b9a; }
.qb-orange { background: #ef6c00; }
.qb-teal { background: #00796b; }
.qb-red { background: #8b0000; }
.qb-navy { background: #1a237e; }
.qb-dark { background: #37474f; }

/* MOBILE */
@media (max-width: 768px) {
    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ===== SARKARI RESULT STYLE HEADER ===== */

.sr-header {
    background: #0b3c6d; /* logo blue */
    padding: 15px 0;
}

.sr-header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* LOGO FIX */
.sr-logo img {
    height: 80px;       /* IMPORTANT */
    width: auto;
    display: block;
}

/* ===== NAV BAR ===== */

.sr-nav {
    background: #062a4d;
}

.nav-flex {
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 22px;
    padding: 10px 0;
}

.nav-menu li a {
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    padding: 6px 10px;
}

.nav-menu li a:hover {
    background: #0e5aa7;
    border-radius: 4px;
}

/* MOBILE NAV */
@media (max-width: 768px) {

    .sr-logo img {
        height: 60px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

/* ===== LOGO + SITE NAME ===== */

.sr-logo-wrap {
    display: flex;
    justify-content: center;
}

.sr-logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

/* Logo */
.sr-logo-link img {
    height: 70px;
    width: auto;
}

/* Site Name Text */
.site-name {
    color: #ffffff;
    font-size: 34px;     /* BIG TEXT */
    font-weight: 800;   /* BOLD */
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .site-name {
        font-size: 22px;
    }

    .sr-logo-link img {
        height: 55px;
    }
}

/* ===== FOOTER (SARKARI RESULT STYLE) ===== */

.sr-footer {
    background: #1e1e1e;
    color: #ffffff;
    padding: 15px 0;
    margin-top: 30px;
    font-size: 14px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left {
    font-size: 13px;
}

.footer-right a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 15px;
    font-size: 13px;
}

.footer-right a:hover {
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-right a {
        margin: 0 8px;
    }
}

/* ===== READ MORE ===== */

.read-more-wrap {
    text-align: center;
    padding: 10px;
}

.read-more-btn {
    display: inline-block;
    background: #0b3c6d;
    color: #fff;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
}

.read-more-btn:hover {
    background: #062a4d;
}

/* ===== TWO COLUMN LAYOUT ===== */

.two-col-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* LEFT CONTENT */
.left-content {
    width: 70%;
}

/* RIGHT SIDEBAR */
.right-sidebar {
    width: 30%;
}

/* AD BOX */
.ad-box {
    background: #ffffff;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    padding: 10px;
    text-align: center;
    font-size: 13px;
}

.ad-box p {
    font-weight: bold;
    margin-bottom: 8px;
}

.ad-placeholder {
    background: #f2f2f2;
    color: #555;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MOBILE */
@media (max-width: 768px) {
    .two-col-layout {
        flex-direction: column;
    }

    .left-content,
    .right-sidebar {
        width: 100%;
    }

    .ad-placeholder {
        height: 200px;
    }
}

/* ===== NEWS PAGE ===== */

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.news-card {
    display: block;
    background: #ffffff;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #000;
}

.news-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.news-content {
    padding: 10px;
}

.news-content h3 {
    font-size: 15px;
    margin-bottom: 6px;
    color: #0b3c6d;
}

.news-content p {
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}

.news-card:hover {
    background: #f5f9ff;
}

/* MOBILE */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card img {
        height: 180px;
    }
}

/* ===== TOOLS PAGE ===== */

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.tool-card {
    background: #ffffff;
    border: 1px solid #ccc;
    text-align: center;
    padding: 25px 10px;
    text-decoration: none;
    color: #000;
    border-radius: 6px;
    transition: 0.2s;
}

.tool-card:hover {
    background: #f5f9ff;
    border-color: #0b3c6d;
}

/* ICON */
.tool-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

/* TITLE */
.tool-title {
    font-size: 15px;
    font-weight: bold;
    color: #0b3c6d;
}

/* MOBILE */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== STICKY FOOTER FIX ===== */

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

/* ===== CONTACT PAGE LAYOUT ===== */

.contact-layout {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

/* LEFT */
.contact-left {
    width: 55%;
    background: #ffffff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 6px;
}

/* RIGHT */
.contact-right {
    width: 45%;
}

/* FORM */
.contact-heading {
    text-align: center;
    margin-bottom: 15px;
    color: #0b3c6d;
}

.contact-form .form-group {
    margin-bottom: 12px;
}

.contact-form label {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 4px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0b3c6d;
    outline: none;
}

.submit-btn {
    width: 100%;
    background: #0b3c6d;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}

.submit-btn:hover {
    background: #062a4d;
}


/* INFO BOX */
.info-box {
    background: #ffffff;
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
}

.info-box h3 {
    margin-bottom: 5px;
    color: #0b3c6d;
}

/* MAP */
.map-box {
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-layout {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }
}

.thank-you-text {
    background: #e7ffe7;
    border: 1px solid #3cb371;
    padding: 15px;
    border-radius: 6px;
}


/* ===== POLICY PAGES ===== */

.policy-box {
    background: #ffffff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
}

.policy-box h3 {
    margin-top: 15px;
    color: #0b3c6d;
}

/* ===== SARKARI SEVA – STATE CARDS ===== */

.page-subtitle {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
    font-size: 14px;
}

.state-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* CARD */
.state-card {
    background: #0b3c6d;
    color: #ffffff;
    padding: 14px 10px;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
}

/* HOVER ANIMATION */
.state-card:hover {
    background: #062a4d;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 768px) {
    .state-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.latest-box {
    border: 1px solid #bbb;
    background: #fff;
}

.latest-header {
    background: #8b0000;
    color: #fff;
    padding: 8px;
    font-weight: bold;
    text-align: center;
}

.latest-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.latest-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    border-bottom: 1px dotted #999;
    font-size: 14px;
}

.latest-list li a {
    color: #0000ee;
    text-decoration: none;
}

.latest-list li a:hover {
    text-decoration: underline;
}

.latest-list li span {
    color: #000;
    font-size: 13px;
}

.read-more {
    text-align: center;
    padding: 10px;
}

.read-more a {
    font-weight: bold;
    color: #8b0000;
    text-decoration: none;
}

.apply-link{
color:#b00000;
font-weight:bold;
text-decoration:none;
}
.apply-link:hover{
text-decoration:underline;
}

.title-list{
    list-style:none;
    padding:0;
}
.title-list li{
    padding:8px 0;
    border-bottom:1px dotted #ccc;
}
.title-list li a{
    color:#0b5ed7;
    font-weight:600;
    text-decoration:none;
}
.title-list li a:hover{
    text-decoration:underline;
}

/* ===== Latest Box Design (Category Pages) ===== */

.latest-box{
    border:1px solid #cfcfcf;
    background:#fff;
    margin:20px 0;
}

.latest-box-title{
    background:#8b0000;   /* dark red */
    color:#fff;
    padding:8px 12px;
    font-weight:bold;
    font-size:16px;
}

.latest-box-content{
    padding:10px 12px;
}

.latest-box-content ul{
    list-style:none;
    margin:0;
    padding:0;
}

.latest-box-content ul li{
    padding:6px 0;
    border-bottom:1px dotted #999;
}

.latest-box-content ul li:last-child{
    border-bottom:none;
}

.latest-box-content ul li a{
    color:#0000ee;
    text-decoration:none;
    font-size:14px;
}

.latest-box-content ul li a:hover{
    text-decoration:underline;
}

/* ===== Two Column Layout ===== */
.page-wrapper{
    display:flex;
    gap:20px;
    margin:20px 0;
}

/* Left Content */
.page-left{
    width:70%;
}

/* Right Sidebar (Ads) */
.page-right{
    width:30%;
}

/* Latest Box */
.latest-box{
    border:1px solid #cfcfcf;
    background:#fff;
}

.latest-box-title{
    background:#8b0000;
    color:#fff;
    padding:8px 12px;
    font-weight:bold;
    font-size:16px;
}

.latest-box-content{
    padding:10px 12px;
}

.latest-box-content ul{
    list-style:none;
    margin:0;
    padding:0;
}

.latest-box-content ul li{
    padding:6px 0;
    border-bottom:1px dotted #999;
}

.latest-box-content ul li:last-child{
    border-bottom:none;
}

.latest-box-content ul li a{
    color:#0000ee;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

.latest-box-content ul li a:hover{
    text-decoration:underline;
}

/* Ad Box */
.ad-box{
    border:1px solid #ccc;
    background:#fff;
    padding:10px;
    text-align:center;
}

.ad-box h3{
    font-size:15px;
    margin-bottom:10px;
    background:#f2f2f2;
    padding:6px;
}

/* ===== Sticky Footer (FINAL FIX) ===== */

html, body {
    height: 100%;
    margin: 0;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}

.container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 12px;   /* MOBILE GAP */
}

.view-more{
    text-align:right;
    padding:6px 10px 10px;
}

.view-more a{
    font-weight:600;
    color:#0b5ed7;
    text-decoration:none;
}

.view-more a:hover{
    text-decoration:underline;
}

/* ===== HOME 3 BOX GRID ===== */
.sr-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:20px;
    margin-top:30px;
}

/* ===== BOX DESIGN ===== */
.sr-box{
    background:#fff;
    border:1px solid #ccc;
    display:flex;
    flex-direction:column;
    min-height:320px;   /* 🔥 SAME SIZE FIX */
}

/* TITLE BAR */
.sr-box-title{
    background:#8b0000;
    color:#fff;
    padding:8px 10px;
    font-weight:bold;
    font-size:15px;
}

/* LIST AREA */
.sr-box ul{
    list-style:none;
    padding:10px;
    margin:0;
    flex:1;             /* 🔥 pushes View More down */
}

.sr-box ul li{
    padding:4px 0;
    border-bottom:1px dotted #ccc;
}

.sr-box ul li a{
    color:#0044cc;
    text-decoration:none;
    font-size:14px;
}

.sr-box ul li a:hover{
    text-decoration:underline;
}

/* VIEW MORE FIXED BOTTOM */
.view-more{
    text-align:right;
    padding:8px 10px;
    background:#f7f7f7;
    border-top:1px solid #ddd;
}

.view-more a{
    font-weight:bold;
    color:#0044cc;
    text-decoration:none;
}

/* ===== MOBILE ===== */
@media(max-width:900px){
    .sr-grid{
        grid-template-columns:1fr;
    }
}

/* ===== POST PAGE FIX ===== */

.post-wrapper{
    background:#ffffff;
    border:1px solid #ccc;
    border-radius:6px;
    padding:20px;          /* 🔥 LEFT RIGHT GAP */
    max-width:100%;
}

/* Title */
.post-title{
    font-size:22px;
    margin-bottom:10px;
    color:#0b3c6d;
}

/* Meta */
.post-meta{
    font-size:13px;
    color:#555;
    margin-bottom:15px;
}

/* Content */
.post-content{
    font-size:15px;
    line-height:1.7;
    color:#222;
}

/* Apply Button */
.apply-wrap{
    margin-top:20px;
}

.apply-btn{
    display:inline-block;
    background:#b00000;
    color:#fff;
    padding:10px 20px;
    font-weight:bold;
    border-radius:4px;
    text-decoration:none;
}

.apply-btn:hover{
    background:#8b0000;
}

/* MOBILE FIX */
@media(max-width:768px){
    .post-wrapper{
        padding:15px;
    }
}

/* ===== TRENDING JOBS ===== */
.trending-box{
    background:#ffffff;
    border-radius:8px;
    padding:15px 20px;
    margin:25px 0;
    box-shadow:0 4px 12px rgba(0,0,0,0.06);
}

.trending-title{
    margin:0 0 12px;
    font-size:20px;
    color:#b30000;
    animation: blinkGlow 1.5s infinite;
}

/* blink / glow animation */
@keyframes blinkGlow{
    0%{opacity:1;}
    50%{opacity:0.6;}
    100%{opacity:1;}
}

.trending-list{
    list-style:none;
    padding:0;
    margin:0;
}

.trending-list li{
    padding:8px 0;
    border-bottom:1px dashed #ddd;
    font-size:15px;
    line-height:1.5;
}

.trending-list li:last-child{
    border-bottom:none;
}

.trending-list li a{
    color:#003399;
    text-decoration:none;
    display:block;
    transition:all 0.3s ease;
}

.trending-list li a:hover{
    color:#d40000;
    padding-left:6px;
    font-weight:600;
}

/* ===== FLOATING SOCIAL ===== */
.floating-social{
    position:fixed;
    right:15px;
    bottom:20px;
    z-index:9999;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.float-btn{
    padding:10px 16px;
    border-radius:30px;
    color:#fff;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 6px 15px rgba(0,0,0,0.2);
    animation: floatPulse 2s infinite;
}

.whatsapp{
    background:#25d366;
}
.telegram{
    background:#0088cc;
}

@keyframes floatPulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.07);}
    100%{transform:scale(1);}
}


.quick-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
    margin:20px 0;
}

.quick-box{
    padding:16px;
    color:#fff;
    font-weight:600;
    border-radius:10px;
    text-decoration:none;
    position:relative;
    overflow:hidden;
    transition:all .3s ease;
}

.quick-box span{
    display:block;
    font-size:13px;
    opacity:.9;
}

/* Hover */
.quick-box:hover{
    transform:translateY(-4px);
}

@keyframes blink{
    0%,100%{opacity:1}
    50%{opacity:.6}
}
.blink{
    animation:blink 1.4s infinite;
}

@keyframes glow{
    0%{box-shadow:0 0 5px rgba(255,255,255,.3)}
    50%{box-shadow:0 0 18px rgba(255,255,255,.8)}
    100%{box-shadow:0 0 5px rgba(255,255,255,.3)}
}
.glow{
    animation:glow 2s infinite;
}

@keyframes pulse{
    0%{transform:scale(1)}
    50%{transform:scale(1.04)}
    100%{transform:scale(1)}
}
.pulse{
    animation:pulse 2.2s infinite;
}

@keyframes shadowMove{
    0%{box-shadow:0 0 0 rgba(0,0,0,.2)}
    50%{box-shadow:0 8px 20px rgba(0,0,0,.4)}
    100%{box-shadow:0 0 0 rgba(0,0,0,.2)}
}
.shadow-move{
    animation:shadowMove 2.5s infinite;
}

.quick-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:15px;
    margin:20px 0;
}

/* Mobile responsive */
@media(max-width:768px){
    .quick-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}
@media(max-width:480px){
    .quick-grid{
        grid-template-columns:repeat(1, 1fr);
    }
}

/* Dashboard Yellow Button Fix */
a.yellow{
    display:inline-block;
    background:#fffeb5;
    color:#000;
    padding:10px 14px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

a.yellow:hover{
    background:#fffbbd;
}

/* Apply Online Button – Light Green */
.latest-list .apply-link{
    background:#e6f7ec;
    color:#1e7e34;
    padding:6px 14px;
    border-radius:4px;
    font-size:13px;
    font-weight:600;
    text-decoration:none !important;
    transition:all .25s ease;
    border:1px solid #b7e4c7;
}

.latest-list .apply-link:hover{
    background:#d4f3df;
    box-shadow:0 4px 10px rgba(30,126,52,0.25);
    color:#145c2a;
    text-decoration:none !important;
}

/* TOOL PAGE FIX */
.site-content.tool-page{
    padding-top:20px !important;
}

/* ===== LEFT SOCIAL ICONS ===== */
.left-social{
    position:fixed;
    left:15px;
    top:40%;
    z-index:9999;
    display:flex;
    flex-direction:column;
    gap:10px;
}
.left-social .social{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    text-decoration:none;
    box-shadow:0 4px 10px rgba(0,0,0,.25);
    transition:.3s;
}
.left-social .social:hover{
    transform:scale(1.1);
}

.facebook{background:#1877F2;}
.instagram{background:#E1306C;}
.twitter{background:#000;}
.youtube{background:#FF0000;}
.share{background:#555;}

/* ===== MOBILE TOGGLE BUTTON ===== */
.mobile-toggle{
    position:fixed;
    right:18px;
    bottom:90px; /* WhatsApp button ke upar */
    width:42px;
    height:42px;
    background:#333;
    color:#fff;
    border-radius:50%;
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
    box-shadow:0 4px 10px rgba(0,0,0,.3);
}

/* ===== MOBILE VIEW ===== */
@media(max-width:768px){
    .left-social{
        display:none;
        left:auto;
        right:15px;
        top:auto;
        bottom:180px;   /* 🔥 WhatsApp se gap */
    }
    .mobile-toggle{
        display:flex;
        bottom:110px;   /* 🔥 arrow bhi thoda upar */
    }
}


.page-right{
    width:110px;   /* sidebar width thoda extra for padding */
}

.ad-box{
    width:90px;
    height:728px;
    margin:20px auto;
    padding:0;
    overflow:hidden;
    background:transparent;
}

.ad-box img{
    width:90px;
    height:728px;
    display:block;
}






