*{margin:0;padding:0;box-sizing:border-box}
body{
    font-family:'Plus Jakarta Sans',sans-serif;
    background:#f8fafc;
    color:#111827;
}
a{text-decoration:none;color:inherit}

  /* ad related */
.main-ad {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 15px;
  flex-wrap: wrap;
}
.ad-container { 
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px 0;
}

@media (max-width: 991px) {
  .main-ad {
    flex-direction: column;
  }
}

/* Popup Styling */
  .popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    z-index: 1000;
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 300px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
  }

  .modal[data-type] {
    display: block;
  }

  .modalDialog {
    margin: auto;
    padding: 25px;
    background-color: white;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .grantButtons,
  .rewardButtons {
    display: none;
  }

  .modal[data-type="grant"] .grantButtons,
  .modal[data-type="reward"] .rewardButtons {
    display: block;
  }

  .modal input[type="button"] {
    padding: 0.5rem;
    background: blue;
    border: none;
    border-radius: 4px;
    margin: 4px;
    color: white;
  }

/* end ad related */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */
header{
    position:sticky;
    top:0;
    backdrop-filter: blur(12px);
    background:rgba(255,255,255,0.7);
    border-bottom:1px solid #e5e7eb;
    z-index:1000;
}
.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}
.logo{
    font-weight:700;
    font-size:22px;
    background:linear-gradient(90deg,#6366f1,#06b6d4);
    -webkit-background-clip:text;
    color:transparent;
    cursor: pointer;
}

/* Hero */
.hero{
    padding:80px 0;
    background:linear-gradient(135deg,#eef2ff,#ecfeff);
    text-align:center;
}
.hero h1{
    font-size:42px;
    font-weight:700;
}
.hero p{
    margin-top:15px;
    color:#6b7280;
}

/* Blog Grid */
.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin:60px 0;
}
.card{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.05);
    transition:.3s;
    cursor: pointer;
}
.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}
.card-body{
    padding:20px;
}
.card-title{
    margin-top: 20px;
    color: #2d4752;
}
.badge{
    padding: 6px 16px;
    border: 1px solid #0d0c21;
    border-radius: 8px;
    color: #0d0c21 !important;
    text-transform: lowercase;
    font-size: 14px;
    background-color: transparent !important;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.card-des{
    text-align: left;
    font-size: 15px;
    line-height: 1.6;
    color: #5d5d62;
    margin-top: 15px;
}
.bdpp-post-meta-data{
    margin: 20px 5px 5px 2px;
    font-size: 13px;
    display: inline-block;
    color: #7c7b82 !important;
    line-height: 18px;
    display: flex;
    align-items: center;
}
.card:hover .card-img {
    transition: .3s ease-in-out;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.fa-clock-o{
    margin-right: 5px;
    width: 15px!important;
    height: 15px!important;
}

/* Pagination Wrapper */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    flex-wrap: wrap;
}

/* Page Info Text */
.page-info {
    font-size: 15px;
    font-weight: 500;
    color: #555;
    letter-spacing: 0.5px;
}

/* Buttons Base */
.page-btn {
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    background: #111;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Hover Effect */
.page-btn:hover {
    background: #2d6cdf;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(45,108,223,0.25);
}

/* Active Click Effect */
.page-btn:active {
    transform: scale(0.96);
}

/* Disabled State */
.page-btn:disabled {
    background: #ccc;
    color: #777;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Responsive */
@media (max-width: 480px) {
    .pagination {
        gap: 12px;
    }

    .page-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .page-info {
        font-size: 13px;
    }
}


/* Detail Page */
.blog-detail{
    max-width:800px;
    margin:80px auto;
}
.blog-detail img{
    width:100%;
    border-radius:20px;
}
.blog-detail h1{
    margin:25px 0;
    font-size:34px;
}
.blog-detail p{
    line-height:1.9;
    color:#4b5563;
}

/* Footer */
footer.site-footer {
    background: transparent;
}
.site-footer--inverse {
    background: #222;
    color: rgba(255, 255, 255, 0.8);
}
.site-footer {
    position: relative;
    background: #F2F2F2;
    color: rgba(0, 0, 0, 0.6);
}
.home-footer {
    align-items: flex-start;
    font-family: Rubik, sans-serif;
}
.footer-container {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}
.w-layout-blockcontainer {
    /* max-width: 940px; */
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.w-container {
    /* max-width: 940px; */
    margin-left: auto;
    margin-right: auto;
}
.footer-center-wrapper {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    display: flex;
}
.footer-bottom-wrapper {
    border-top: 1px solid rgba(67, 70, 78, .08);
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
}
.footer-logo {
    margin-bottom: 18px;
    font-size: 25px;
    background: linear-gradient(90deg, #6366f1, #06b6d4);
    -webkit-background-clip: text;
    color: transparent;
}
.footer-copywrite-text {
    color: #43464e;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 15px;
}
.footer-social-icon-main {
    grid-column-gap: 12px;
    display: flex;
}
.footer-social-icon-3 {
    color: #43464e;
    font-family: "Font awesome 5 brands 400", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    justify-content: center;
    margin-top: 7px;
}
.footer-social-icon-link {
    color: #0d0c21;
    text-align: center;
    background-color: #e9eaf0;
    border-radius: 50%;
    min-width: 40px;
    min-height: 40px;
    line-height: 40px;
    text-decoration: none;
}
.footer-social-icon-link:hover {
    background-color: #fab626;
}
.link-list__link, .site-footer--inverse a, .site-footer--inverse .post__title a {
    color: #0d0c21 !important;
}
.footer-bottom-wrapper {
    border-top: 1px solid rgba(67, 70, 78, .08);
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
}
.footer-copywrite-text {
    color: #43464e;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
.fooet-terms-link-main {
    display: flex;
}
.footer-terms-link {
    color: #43464e;
    border-right: 1px solid rgba(0, 0, 0, .17);
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}
.footer-terms-link.border-none {
    border-right-style: none;
}
@media screen and (max-width: 767px) {
    .menu {
        display: none;
    }
    .footer-container{
        padding-left: 5px;
        padding-right: 5px;
    }
    .footer-social-icon-main{
        grid-column-gap: 5px;
    }
    .footer-center-wrapper,
    .footer-bottom-wrapper {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        text-align: center;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr;
        grid-auto-columns: 1fr;
        justify-items: center;
        display: grid;
    }
    .fooet-terms-link-main{
        flex-direction: column;
    }
    .fooet-terms-link-main a{
        border: none;
        margin: 5px 0;
    }
}
@media(max-width:992px){
    .blog-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:600px){
    .blog-grid{grid-template-columns:1fr;}
    .hero h1{font-size:28px;}
}

/* ===============================
   ABOUT PAGE - 2026 PREMIUM STYLE
================================ */

.about-main{
    padding:80px 0;
    max-width:1000px;
}

/* HERO CARD */
.about-hero-card{
    background:linear-gradient(135deg,#eef2ff,#f0fdfa);
    padding:50px;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,0.05);
    text-align:center;
    margin-bottom:60px;
}

.about-logo-group{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.logo-icon{
    font-size:40px;
}

.logo{
    font-size:36px;
    font-weight:700;
    background:linear-gradient(90deg,#6366f1,#06b6d4);
    -webkit-background-clip:text;
    color:transparent;
}

.about-hero-lead{
    font-size:18px;
    color:#4b5563;
    line-height:1.8;
    max-width:700px;
    margin:auto;
}

/* SECTION STYLE */
.about-section,
.about-values-wrap,
.about-contact{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.04);
    margin-bottom:40px;
}

.about-title{
    font-size:26px;
    margin-bottom:20px;
    font-weight:600;
    position:relative;
}

.about-title::after{
    content:"";
    width:50px;
    height:4px;
    background:linear-gradient(90deg,#6366f1,#06b6d4);
    position:absolute;
    left:0;
    bottom:-10px;
    border-radius:5px;
}

.about-section p,
.about-contact-invite{
    color:#4b5563;
    line-height:1.9;
    font-size:16px;
}

.about-highlight{
    color:#6366f1;
    font-weight:600;
}

/* VALUES LIST */
.about-values-list{
    list-style:none;
    padding:0;
}

.about-values-list li{
    padding:15px 0;
    border-bottom:1px solid #f1f5f9;
    color:#4b5563;
    line-height:1.7;
}

.about-values-list li:last-child{
    border-bottom:none;
}

/* CONTACT SECTION */
.about-contact-list{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.about-contact-list li{
    margin-bottom:15px;
    font-size:16px;
    display:flex;
    align-items:center;
    gap:10px;
}

.contact-icon{
    font-size:20px;
}

.about-contact-list a{
    color:#6366f1;
    font-weight:500;
}

.about-contact-list a:hover{
    text-decoration:underline;
}

/* RESPONSIVE */
@media(max-width:768px){

    .about-main{
        padding:50px 0;
    }

    .about-hero-card{
        padding:30px;
    }

    .logo{
        font-size:28px;
    }

    .about-title{
        font-size:22px;
    }

    .about-section,
    .about-values-wrap,
    .about-contact{
        padding:25px;
    }
}


/* ===============================
   CONTACT PAGE - 2026 PREMIUM UI
================================ */

.contact-wrapper{
    padding:80px 0;
    max-width:900px;
}

/* CARD */
.contact-card{
    background:linear-gradient(135deg,#ffffff,#f9fafb);
    padding:60px;
    border-radius:28px;
    box-shadow:0 25px 70px rgba(0,0,0,0.06);
    position:relative;
}

.contact-title{
    font-size:34px;
    font-weight:700;
    margin-bottom:15px;
    background:linear-gradient(90deg,#6366f1,#06b6d4);
    -webkit-background-clip:text;
    color:transparent;
}

.contact-lead{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:40px;
}

/* FORM */
.contact-form{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.form-row{
    position:relative;
}

/* INPUT + TEXTAREA */
.form-row input,
.form-row textarea{
    width:100%;
    padding:18px 16px;
    border-radius:14px;
    border:1px solid #e5e7eb;
    background:#fff;
    font-size:16px;
    outline:none;
    transition:all .3s ease;
}

.form-row textarea{
    resize:none;
}

/* Floating Label */
.form-row label{
    position:absolute;
    left:16px;
    top:18px;
    color:#9ca3af;
    font-size:14px;
    pointer-events:none;
    transition:all .25s ease;
    background:white;
    padding:0 6px;
}

/* Focus effect */
.form-row input:focus,
.form-row textarea:focus{
    border-color:#6366f1;
    box-shadow:0 0 0 4px rgba(99,102,241,0.1);
}

/* Move label */
.form-row input:focus + label,
.form-row input:not(:placeholder-shown) + label,
.form-row textarea:focus + label,
.form-row textarea:not(:placeholder-shown) + label{
    top:-8px;
    font-size:12px;
    color:#6366f1;
}

/* SUBMIT BUTTON */
.contact-submit{
    margin-top:10px;
    padding:16px;
    border:none;
    border-radius:16px;
    background:linear-gradient(90deg,#6366f1,#06b6d4);
    color:white;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s ease;
}

.contact-submit:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(99,102,241,0.25);
}

.contact-submit:disabled{
    background:#d1d5db;
    cursor:not-allowed;
    box-shadow:none;
    transform:none;
}

/* EXTRA CONTACT DETAILS */
.contact-extra{
    margin-top:50px;
    padding-top:30px;
    border-top:1px solid #f1f5f9;
    display:flex;
    flex-wrap:wrap;
    gap:30px;
}

.contact-detail{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:16px;
}

.contact-detail a{
    color:#6366f1;
    font-weight:500;
}

.contact-detail a:hover{
    text-decoration:underline;
}

/* RESPONSIVE */
@media(max-width:768px){

    .contact-wrapper{
        padding:50px 0;
    }

    .contact-card{
        padding:30px;
        border-radius:20px;
    }

    .contact-title{
        font-size:26px;
    }

    .contact-extra{
        flex-direction:column;
        gap:15px;
    }
}

/* ===============================
   PRIVACY POLICY - 2026 LEGAL STYLE
================================ */

.privacy-policy-card{
    padding:80px 0;
    max-width:900px;
}

/* Main Card */
.privacy-policy-card > *{
    background:#ffffff;
}

.privacy-policy-card{
    background:#fff;
    padding:60px;
    border-radius:28px;
    box-shadow:0 25px 70px rgba(0,0,0,0.05);
}

/* Title */
.privacy-title{
    font-size:38px;
    font-weight:700;
    margin-bottom:10px;
    background:linear-gradient(90deg,#6366f1,#06b6d4);
    -webkit-background-clip:text;
    color:transparent;
}

.privacy-meta{
    color:#9ca3af;
    font-size:14px;
    margin-bottom:40px;
}

/* Section Headings */
.privacy-policy-card h2{
    font-size:22px;
    margin-top:40px;
    margin-bottom:15px;
    font-weight:600;
    position:relative;
}

.privacy-policy-card h2::after{
    content:"";
    width:40px;
    height:3px;
    background:linear-gradient(90deg,#6366f1,#06b6d4);
    position:absolute;
    left:0;
    bottom:-6px;
    border-radius:4px;
}

/* Paragraph */
.privacy-policy-card p{
    color:#4b5563;
    line-height:1.9;
    font-size:16px;
    margin-bottom:15px;
}

/* Lists */
.privacy-policy-card ul{
    padding-left:20px;
    margin-bottom:15px;
}

.privacy-policy-card ul li{
    margin-bottom:10px;
    line-height:1.8;
    color:#4b5563;
}

/* Strong highlight */
.privacy-policy-card strong{
    color:#111827;
}

/* Links */
.privacy-policy-card a{
    color:#6366f1;
    font-weight:500;
}

.privacy-policy-card a:hover{
    text-decoration:underline;
}

/* Section spacing */
.privacy-policy-card section{
    margin-bottom:30px;
}

/* RESPONSIVE */
@media(max-width:768px){

    .privacy-policy-card{
        padding:30px;
        border-radius:20px;
    }

    .privacy-title{
        font-size:26px;
    }

    .privacy-policy-card h2{
        font-size:18px;
    }

    .privacy-policy-card p,
    .privacy-policy-card ul li{
        font-size:14px;
    }
}


/* ===============================
   BLOG DETAIL - PREMIUM ARTICLE STYLE
================================ */

.blog-detail{
    max-width:850px;
    margin:80px auto;
    padding:0 20px;
}

/* MAIN TITLE */
.blog-detail h1{
    font-size:38px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:25px;
    color:#111827;
}

/* SUB HEADINGS */
.blog-detail h2{
    font-size:24px;
    margin-top:50px;
    margin-bottom:18px;
    font-weight:600;
    position:relative;
}

.blog-detail h2::after{
    content:"";
    width:45px;
    height:3px;
    background:linear-gradient(90deg,#6366f1,#06b6d4);
    position:absolute;
    left:0;
    bottom:-8px;
    border-radius:4px;
}

/* PARAGRAPH */
.blog-detail p{
    font-size:17px;
    line-height:1.9;
    color:#4b5563;
    margin-bottom:20px;
}

/* STRONG TEXT */
.blog-detail strong{
    color:#111827;
    font-weight:600;
}

/* LISTS */
.blog-detail ul,
.blog-detail ol{
    margin:20px 0 20px 25px;
}

.blog-detail li{
    margin-bottom:10px;
    line-height:1.8;
    color:#4b5563;
}

/* HR DIVIDER */
.blog-detail hr{
    border:none;
    height:1px;
    background:#e5e7eb;
    margin:50px 0;
}

/* TABLE */
.table-container{
    overflow-x:auto;
    margin:30px 0;
}

.blog-detail table{
    width:100%;
    border-collapse:collapse;
    font-size:15px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.blog-detail th{
    background:#f3f4f6;
    padding:14px;
    text-align:left;
    font-weight:600;
}

.blog-detail td{
    padding:14px;
    border-top:1px solid #e5e7eb;
}

/* LINKS */
.blog-detail a{
    color:#6366f1;
    font-weight:500;
}

.blog-detail a:hover{
    text-decoration:underline;
}

/* RESPONSIVE */
@media(max-width:768px){

    .blog-detail{
        margin:50px auto;
    }

    .blog-detail h1{
        font-size:26px;
    }

    .blog-detail h2{
        font-size:20px;
    }

    .blog-detail p{
        font-size:15px;
    }

    .blog-detail table{
        font-size:13px;
    }
}

