*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --yellow: #FFD734;
    --yellow-light: #FFF3A3;
    --yellow-pale: #FFFBE8;
    --yellow-dark: #E6C000;
    --black: #0D0D0D;
    --dark: #1A1A1A;
    --gray: #6B6B6B;
    --white: #FFFFFF;
    --cream: #FDFBF3;
  }

  #tax-calendar-wrapper {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background: var(--cream);
    color: var(--black);
    width: 100%;
    position: relative;
    border-radius: 12px; /* Added a slight curve since it's a standalone widget now */
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
  }

  /* LEGEND */
  .legend-bar {
    background:var(--yellow-pale);
    border-bottom:1.5px solid rgba(255,215,52,0.35);
    padding:14px 40px;
  }
  .legend-inner {
    max-width:1100px; margin:0 auto;
    display:flex; align-items:center; gap:22px; flex-wrap:wrap;
  }
  .legend-item {
    display:flex; align-items:center; gap:7px;
    font-size:11px; font-weight:400; color:var(--gray);
    text-transform:uppercase; letter-spacing:0.5px;
  }
  .dot { width:10px; height:10px; border-radius:50%; flex-shrink:0; }
  .dot-today { background:var(--black); }
  .dot-deadline { background:var(--yellow); border:1.5px solid #c9a800; }
  .dot-ext { background:var(--black); border:2px solid var(--yellow); }
  .legend-hint { margin-left:auto; font-size:10px; font-weight:400; color:var(--gray); opacity:0.8; text-transform:uppercase; letter-spacing:0.5px; }

  /* UPCOMING */
  .upcoming-strip { background:var(--yellow); padding:14px 40px; }
  .upcoming-inner { max-width:1100px; margin:0 auto; }
  .upcoming-label {
    font-size:9px; font-weight:500; letter-spacing:2.5px;
    text-transform:uppercase; color:rgba(0,0,0,0.45); margin-bottom:10px;
  }
  .upcoming-list {
    display:flex; gap:10px; overflow-x:auto;
    scrollbar-width:none; padding-bottom:2px;
  }
  .upcoming-list::-webkit-scrollbar { display:none; }
  .upcoming-item {
    background:rgba(0,0,0,0.08); border-radius:6px;
    padding:8px 14px; white-space:nowrap; cursor:pointer;
    transition:all 0.15s; flex-shrink:0; border:1.5px solid transparent;
  }
  .upcoming-item:hover { background:rgba(0,0,0,0.15); border-color:rgba(0,0,0,0.2); }
  .upcoming-item .ui-date {
    font-size:9px; font-weight:500; letter-spacing:1.5px;
    text-transform:uppercase; color:rgba(0,0,0,0.5); margin-bottom:2px;
  }
  .upcoming-item .ui-name { font-size:12px; font-weight:400; color:var(--black); }
  .upcoming-item.ext { background:var(--black); }
  .upcoming-item.ext .ui-date { color:var(--yellow); }
  .upcoming-item.ext .ui-name { color:var(--white); }

  /* CALENDAR */
  .calendar-wrap { max-width:1100px; margin:0 auto; padding:36px 24px 52px; }
  .year-nav {
    display:flex; align-items:center; justify-content:center;
    gap:20px; margin-bottom:30px;
  }
  .year-label {
    font-size:28px; font-weight:600; color:var(--black);
    letter-spacing:-1px; min-width:90px; text-align:center;
  }
  .nav-btn {
    width:40px; height:40px; border-radius:6px;
    border:1.5px solid var(--black); background:transparent;
    cursor:pointer; display:flex; align-items:center; justify-content:center;
    font-size:14px; color:var(--black); font-family:'Poppins',sans-serif;
    font-weight:400; transition:all 0.2s;
  }
  .nav-btn:hover { background:var(--yellow); border-color:var(--yellow); }

  .months-grid {
    display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
  }
  @media(max-width:900px){ .months-grid{grid-template-columns:repeat(3,1fr);} }
  @media(max-width:640px){ .months-grid{grid-template-columns:repeat(2,1fr);} }
  @media(max-width:380px){ .months-grid{grid-template-columns:1fr;} }

  .month-card {
    background:var(--white); border-radius:12px; overflow:hidden;
    border:1.5px solid rgba(0,0,0,0.07); transition:box-shadow 0.2s, transform 0.2s;
  }
  .month-card:hover { box-shadow:0 8px 28px rgba(0,0,0,0.1); transform:translateY(-2px); }
  .month-card.has-deadline { border-color:rgba(255,215,52,0.7); }

  .month-header {
    padding:11px 13px 10px;
    display:flex; align-items:center; justify-content:space-between;
    border-bottom:1px solid rgba(0,0,0,0.05);
  }
  .month-name {
    font-size:12px; font-weight:500; color:var(--black);
    text-transform:uppercase; letter-spacing:1px;
  }
  .month-badge {
    background:var(--yellow); border-radius:4px;
    padding:2px 8px; font-size:9px; font-weight:500;
    color:var(--black); text-transform:uppercase; letter-spacing:0.5px;
  }

  .days-grid {
    display:grid; grid-template-columns:repeat(7,1fr);
    padding:10px 7px 11px; gap:1px;
  }
  .day-name {
    font-size:8px; font-weight:500; text-align:center;
    color:var(--gray); padding:2px 0 5px;
    letter-spacing:0.5px; text-transform:uppercase;
  }
  .day-cell {
    aspect-ratio:1; display:flex; align-items:center; justify-content:center;
    border-radius:5px; font-size:10.5px; font-weight:400; color:#333;
    cursor:default; position:relative; transition:all 0.15s;
  }
  .day-cell.empty { color:transparent; pointer-events:none; }
  .day-cell.past { color:#ccc; }
  .day-cell.today { background:var(--black); color:var(--white); font-weight:500; }
  .day-cell.deadline {
    background:var(--yellow); color:var(--black); font-weight:600;
    cursor:pointer; box-shadow:0 2px 8px rgba(255,215,52,0.45);
  }
  .day-cell.deadline:hover {
    background:var(--yellow-dark); transform:scale(1.15); z-index:3;
    box-shadow:0 4px 16px rgba(255,215,52,0.6);
  }
  .day-cell.deadline.extended {
    background:var(--black); color:var(--yellow);
    box-shadow:0 2px 8px rgba(0,0,0,0.25);
  }
  .day-cell.deadline.extended:hover {
    background:#2a2a2a; box-shadow:0 4px 16px rgba(0,0,0,0.35);
  }

  /* POPUP */
  .popup-overlay {
    position:fixed; inset:0; z-index:1000;
    display:none; align-items:center; justify-content:center;
    padding:20px; background:rgba(0,0,0,0.5);
    backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
  }
  .popup-overlay.active { display:flex; }
  @keyframes popIn {
    from { opacity:0; transform:scale(0.88) translateY(16px); }
    to   { opacity:1; transform:scale(1) translateY(0); }
  }
  .popup {
    background:var(--white); border-radius:16px;
    max-width:440px; width:100%; position:relative;
    box-shadow:0 24px 64px rgba(0,0,0,0.25);
    animation:popIn 0.28s cubic-bezier(0.34,1.56,0.64,1); overflow:hidden;
  }
  .popup-top { background:var(--yellow); padding:26px 28px 22px; position:relative; }
  .popup.extended .popup-top { background:var(--black); }
  .popup-close {
    position:absolute; top:14px; right:14px;
    background:rgba(0,0,0,0.1); border:none;
    width:30px; height:30px; border-radius:6px;
    font-size:14px; color:var(--black); cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    font-family:'Poppins',sans-serif; font-weight:400; line-height:1; transition:background 0.15s;
  }
  .popup.extended .popup-close { color:var(--white); background:rgba(255,255,255,0.12); }
  .popup-close:hover { background:rgba(0,0,0,0.2); }
  .popup-date-tag {
    font-size:9px; font-weight:500; letter-spacing:2px;
    text-transform:uppercase; color:rgba(0,0,0,0.45); margin-bottom:8px;
  }
  .popup.extended .popup-date-tag { color:var(--yellow); }
  .popup-title {
    font-size:17px; font-weight:600; color:var(--black);
    line-height:1.25; padding-right:30px;
  }
  .popup.extended .popup-title { color:var(--white); }
  .ext-badge {
    display:inline-block; margin-top:8px;
    background:var(--yellow); color:var(--black);
    font-size:9px; font-weight:500; letter-spacing:1.5px;
    text-transform:uppercase; border-radius:4px; padding:3px 10px;
  }
  .popup-body { padding:22px 28px 26px; }
  .popup-desc { font-size:13px; font-weight:400; color:#444; line-height:1.65; margin-bottom:18px; }
  .popup-forms { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:22px; }
  .form-chip {
    background:var(--yellow-pale); border:1.5px solid rgba(255,215,52,0.5);
    border-radius:5px; padding:4px 10px;
    font-size:10px; font-weight:500; color:var(--black);
    text-transform:uppercase; letter-spacing:0.5px;
  }
  .popup-cta { display:flex; gap:10px; flex-wrap:wrap; }
  .btn-primary {
    background:var(--yellow); color:var(--black);
    border:none; border-radius:50px; padding:11px 22px;
    font-family:'Poppins',sans-serif; font-size:10px; font-weight:500;
    letter-spacing:1.5px; text-transform:uppercase;
    cursor:pointer; transition:all 0.2s; text-decoration:none; display:inline-block;
  }
  .btn-primary:hover { background:var(--yellow-dark); transform:translateY(-1px); box-shadow:0 6px 18px rgba(255,215,52,0.4); }
  .btn-secondary {
    background:transparent; color:var(--black);
    border:1.5px solid var(--black); border-radius:50px; padding:9px 18px;
    font-family:'Poppins',sans-serif; font-size:10px; font-weight:500;
    letter-spacing:1.5px; text-transform:uppercase;
    cursor:pointer; transition:all 0.2s; text-decoration:none; display:inline-block;
  }
  .btn-secondary:hover { background:var(--black); color:var(--white); }

  /* FOOTER */
  .footer {
    text-align:center; padding:18px 24px;
    font-size:11px; font-weight:400; color:var(--gray);
    border-top:1px solid rgba(0,0,0,0.07);
    text-transform:uppercase; letter-spacing:0.5px;
    background: var(--cream);
  }
  .footer a { color:var(--black); font-weight:500; text-decoration:none; }
  .footer a:hover { text-decoration:underline; }

  @media(max-width:600px){
    .legend-bar,.upcoming-strip{padding:10px 20px;}
    .calendar-wrap{padding:24px 14px 40px;}
    .legend-hint{display:none;}
  }


/*-resource-page-*/
.sina-cs-desc {
    box-shadow: 0px 3px 10px 0px #00000012;
    padding: 21px;
    border-radius: 13px;
}

.sina-cs-desc h3 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 21px;
    line-height: 100%;
    color: #000;
}

.sina-cs-desc p{
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 23px;
}

a.tax-update-link {
    color: #155DFC;
}

.sina-cs-desc a{
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}


a.wp-info-link {
   color: #00A63E;
}

a.wp-compliance-link {
    color: #9810FA;
}


a.wp-template-link{
	color: #F54900;
}

a#planing_btn {
   background: #FFD73440 !important;
    padding: 8px 20px !important;
    border-radius: 20px !important;
    position: absolute !important;
    top: -5px;
    color: #000;
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}


div#cs_guid svg {
    position: relative;
    top: -24px;
    right: 0px;
}


section#tax-planing .elementor-inner-column {
    box-shadow: 0px 3px 10px 0px #00000012;
    padding:20px 20px
}


section#tax-planing .elementor-container{
	gap: 14px !important;
}


a#download_btn {
    background: #155DFC;
    border-radius: 10px;
}

div#featured_txt svg {
    position: relative;
    top: -12px;
    left: 3px;
}


div#Resource_blogs .elementor-post__card {
    border: 0.5px solid #69727d3b;
    border-radius: 12px !important;
    box-shadow: 0px 3px 10px 0px #00000012;
}

div#Resource_blogs .elementor-post__meta-data {
    display: none;
}

div#Resource_blogs .elementor-post__badge{
    background: linear-gradient(98.43deg, #FFD734 2.89%, #FFC534 112.12%) !important;
    padding: 10px 27px !important;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    font-weight: 600;
}


section#cs-expense .elementor-icon-box-wrapper {
    box-shadow: 0px 3px 10px 0px #00000012;
    padding:20px 10px;
    border-radius:13px;
	background: #fff;
}


div#cs_templates {
    position: relative;
}

div#cs_templates svg{
    position:absolute;
    left:50%;
    top:0px;
    transform: translate(-83px, 6px);
}

@media(max-width:767px){
	a#planing_btn {
    display:none;
  }
	
	div#cs_templates svg{
		display:none;
	}
}




/* home-calender */


 #tax-calendar-wrapper {
        margin: 0 auto;
    }

    .tax-calendar-box {
        background-color: #ffffff;
        border: 1px solid #d4dae6;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    }

    .tax-month-header {
        background: linear-gradient(90deg, #ff9f00 0%, #ffcb3d 100%);
        color: #ffffff;
        text-align: center;
        padding: 20px 16px;
        font-size: 22px;
        font-weight: 700;
    }

    .tax-weekday-grid,
    .tax-day-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
    }

    .tax-weekday-grid div {
        text-align: center;
        padding: 15px 8px;
        font-size: 14px;
        font-weight: 700;
        background-color: #f1f5fd;
        color: #2f3d56;
        border-bottom: 1px solid #d0d9e5;
    }

    .tax-day-grid {
        padding: 8px;
        background-color: #ffffff;
    }

    .tax-day-cell,
    .empty-cell {
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        border-radius: 14px;
        margin: 4px;
        font-size: 16px;
    }

    .empty-cell {
        background-color: transparent;
    }

    .tax-day-cell {
        cursor: pointer;
        color: #2f3d56;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }

    .tax-day-cell:hover {
        transform: translateY(-2px);
    }

    .highlighted-today {
        border: 3px solid #3358e2;
        font-weight: 700;
        background-color: #f1f6ff;
    }

    .highlighted-tax-deadline {
        cursor: pointer;
        background-color: #e1f1ff;
        color: #3358e2;
        font-weight: 700;
        animation: pulseEffect 1.8s infinite;
        box-shadow: 0 0 0 0 rgba(51, 88, 226, 0.5);
        background: linear-gradient(90deg, #ff9f00 0%, #ffcb3d 100%);
    }

    .highlighted-tax-deadline:hover {
        background-color: #d2e6ff;
        box-shadow: 0 8px 20px rgba(51, 88, 226, 0.2);
    }

    .highlighted-tax-deadline::after {
        content: "";
        position: absolute;
        top: 6px;
        right: 6px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #2d66d6;
    }

    @keyframes pulseEffect {
        0% {
            box-shadow: 0 0 0 0 rgba(51, 88, 226, 0.5);
        }
        70% {
            box-shadow: 0 0 0 16px rgba(51, 88, 226, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(51, 88, 226, 0);
        }
    }

    .tax-calendar-legend {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
        margin-top: 18px;
        font-size: 14px;
        color: #6b7c91;
    }

    .tax-legend-item {
        display: flex;
        align-items: center;
        gap: 9px;
    }

    .tax-legend-dot {
        width: 13px;
        height: 13px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .tax-legend-dot.today-dot {
        border: 3px solid #3358e2;
        background-color: #ffffff;
    }

    .tax-legend-dot.deadline-dot {
        background-color: #2d66d6;
    }

    .tax-popup-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background-color: rgba(15, 23, 42, 0.65);
        justify-content: center;
        align-items: center;
        z-index: 9999;
        padding: 18px;
    }

    .tax-popup-box {
        width: 100%;
        max-width: 420px;
        background-color: #ffffff;
        border-radius: 20px;
        padding: 28px 22px 22px;
        position: relative;
        box-shadow: 0 22px 65px rgba(0, 0, 0, 0.2);
        animation: fadeInPopup 0.3s ease;
    }

    @keyframes fadeInPopup {
        from {
            opacity: 0;
            transform: translateY(12px) scale(0.98);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .tax-popup-close-btn {
        position: absolute;
        top: 12px;
        right: 16px;
        border: none;
        background: none;
        font-size: 30px;
        cursor: pointer;
        color: #788397;
    }

    .tax-popup-close-btn:hover {
        color: #111827;
    }

    .tax-popup-tag {
        display: inline-block;
        background-color: #eef3fb;
        color: #1f4b99;
        font-size: 13px;
        font-weight: 700;
        padding: 8px 12px;
        border-radius: 999px;
        margin-bottom: 14px;
    }

    .tax-popup-date {
        font-size: 15px;
        color: #6b7280;
        margin-bottom: 10px;
    }

    .tax-popup-title {
        font-size: 26px;
        font-weight: 700;
        color: #1f2d3d;
        margin-bottom: 12px;
    }

    .tax-popup-description {
        font-size: 16px;
        line-height: 1.7;
        color: #4b5563;
        margin-bottom: 20px;
    }

    .tax-popup-forms {
        font-size: 15px;
        color: #1f2d3d;
        margin-bottom: 20px;
        padding: 14px 16px;
        background-color: #f8fbff;
        border: 1px solid #e3ecfb;
        border-radius: 14px;
    }

    .tax-popup-forms strong {
        display: block;
        margin-bottom: 7px;
        color: #1f4b99;
    }

    .tax-popup-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .tax-btn-primary,
    .tax-btn-secondary {
        flex: 1 1 160px;
        text-align: center;
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        transition: 0.3s ease;
    }

    .tax-btn-primary {
        background: linear-gradient(135deg, #3358e2, #2d66d6);
        color: #ffffff;
        border: none;
    }

    .tax-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 22px rgba(51, 88, 226, 0.2);
    }

    .tax-btn-secondary {
        background-color: #ffffff;
        color: #1f2d3d;
        border: 1px solid #d7dfeb;
        cursor: pointer;
    }

    .tax-btn-secondary:hover {
        background-color: #f8fafc;
    }

    @media (max-width: 480px) {
        .tax-calendar-heading-text {
            font-size: 26px;
        }

        .tax-calendar-header {
            font-size: 20px;
        }

        .tax-day-cell,
        .empty-cell {
            height: 48px;
            font-size: 14px;
        }

        .tax-popup-title-text {
            font-size: 23px;
        }
    }
