/**
 * DPDT Theme - Main Styles
 * Designed to match dpdt.gov.bd
 * Version: 4.2.0
 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@300;400;500;600;700;800&display=swap');

:root {
    --dpdt-primary: #1a5276;
    --dpdt-primary-dark: #0e3a54;
    --dpdt-primary-light: #2e86c1;
    --dpdt-accent: #d4ac0d;
    --dpdt-accent-dark: #b7950b;
    --dpdt-accent-light: #f4d03f;
    --dpdt-dark: #0b2838;
    --dpdt-light: #f8f9fa;
    --dpdt-border: #dce4e8;
    --dpdt-text: #2c3e50;
    --dpdt-text-light: #5d6d7e;
    --dpdt-white: #ffffff;
    --dpdt-success: #27ae60;
    --dpdt-danger: #c0392b;
    --dpdt-shadow: 0 2px 12px rgba(26, 82, 118, 0.1);
    --dpdt-shadow-lg: 0 8px 30px rgba(26, 82, 118, 0.15);
    --dpdt-radius: 6px;
    --dpdt-font-size: 16px;
    --dpdt-heading-font: 'Noto Sans Bengali', sans-serif;
    --dpdt-body-font: 'Noto Sans Bengali', sans-serif;
}


/* ====== Container ====== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====== Header - dpdt.gov.bd style ====== */
.site-header {
    background: var(--dpdt-white);
    box-shadow: var(--dpdt-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Top Bar - Dark navy */
.header-top-bar {
    background: var(--dpdt-dark);
    color: #fff;
    padding: 5px 0;
    font-size: 0.78rem;
    border-bottom: 2px solid var(--dpdt-accent);
}

.header-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--dpdt-body-font);
}

.established-text {
    color: var(--dpdt-accent);
    font-weight: 600;
}

.top-bar-divider {
    opacity: 0.4;
    color: #7fb3d3;
}

.gov-text {
    color: #b8d4e8;
    font-weight: 400;
}


.top-bar-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-bar-link {
    color: #b8d4e8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    opacity: 0.9;
    transition: all 0.3s;
    font-size: 0.78rem;
}

.top-bar-link:hover {
    opacity: 1;
    color: var(--dpdt-accent);
}

.top-bar-link .dashicons {
    font-size: 13px;
    width: 13px;
    height: 13px;
}

.top-bar-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 12px;
    background: var(--dpdt-accent);
    color: var(--dpdt-dark);
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.top-bar-btn:hover {
    background: var(--dpdt-accent-light);
    color: var(--dpdt-dark);
}

.top-bar-btn.btn-outline {
    background: transparent;
    border: 1px solid rgba(212, 172, 13, 0.6);
    color: var(--dpdt-accent);
}

.top-bar-btn.btn-outline:hover {
    background: var(--dpdt-accent);
    color: var(--dpdt-dark);
}


/* Header Main - Government style with navy */
.header-main {
    padding: 14px 0;
    background: var(--dpdt-primary);
    border-bottom: 3px solid var(--dpdt-accent);
}

.header-branding {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-logo img,
.site-logo .dpdt-header-logo-img {
    max-height: 65px;
    width: auto;
    border-radius: 4px;
    background: #fff;
    padding: 3px;
}

.site-identity .site-title {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.3;
    font-family: var(--dpdt-heading-font);
}

.site-identity .site-title a {
    color: var(--dpdt-white);
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.site-identity .site-title a:hover {
    color: var(--dpdt-accent);
}

.site-identity .site-description {
    margin: 2px 0 0;
    color: #b8d4e8;
    font-size: 0.85rem;
}

.site-identity .site-name-en {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    font-style: italic;
}


/* ====== Navigation - dpdt.gov.bd dark blue nav ====== */
.main-navigation {
    background: var(--dpdt-primary-dark);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.main-navigation .container {
    display: flex;
    align-items: center;
}

.menu-container {
    width: 100%;
}

.primary-menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.primary-menu-list > li {
    position: relative;
}

.primary-menu-list > li > a {
    display: block;
    padding: 13px 18px;
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.06);
    font-family: var(--dpdt-body-font);
}

.primary-menu-list > li:first-child > a {
    border-left: 1px solid rgba(255,255,255,0.06);
}

.primary-menu-list > li > a:hover,
.primary-menu-list > li.current-menu-item > a,
.primary-menu-list > li.dpdt-active > a {
    background: var(--dpdt-accent);
    color: var(--dpdt-dark);
}


/* Dropdown */
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dpdt-white);
    min-width: 240px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    border-top: 3px solid var(--dpdt-accent);
    border-radius: 0 0 var(--dpdt-radius) var(--dpdt-radius);
    z-index: 100;
    list-style: none;
    padding: 6px 0;
    margin: 0;
}

.primary-menu-list > li:hover > .sub-menu {
    display: block;
    animation: dpdt-dropdown-in 0.25s ease;
}

@keyframes dpdt-dropdown-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.sub-menu li a {
    display: block;
    padding: 9px 20px;
    color: var(--dpdt-text);
    text-decoration: none;
    font-size: 0.84rem;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.sub-menu li a:hover {
    background: #ebf5fb;
    color: var(--dpdt-primary);
    border-left-color: var(--dpdt-accent);
    padding-left: 24px;
}

/* Sub-sub menu */
.sub-menu .sub-menu {
    top: 0;
    left: 100%;
    border-top: 3px solid var(--dpdt-primary-light);
}

/* Dropdown arrow */
.dpdt-dropdown-arrow {
    font-size: 0.7em;
    margin-left: 4px;
}


/* Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.dpdt-dropdown-toggle {
    display: none;
}

/* ====== Main Content ====== */
.site-content {
    min-height: 60vh;
}

.site-main {
    padding: 40px 0;
}

/* ====== Page ====== */
.page-content-wrapper {
    background: var(--dpdt-white);
    padding: 40px;
    border-radius: var(--dpdt-radius);
    box-shadow: var(--dpdt-shadow);
    border-top: 3px solid var(--dpdt-primary);
}

.entry-title {
    color: var(--dpdt-primary);
    font-size: 1.8rem;
    margin: 0 0 20px;
    font-family: var(--dpdt-heading-font);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--dpdt-accent);
}

.entry-content {
    font-size: var(--dpdt-font-size);
    line-height: 1.8;
    font-family: var(--dpdt-body-font);
}

.entry-content p {
    margin-bottom: 1em;
}


/* ====== Homepage Sections ====== */
.home-services-section {
    padding: 60px 0;
    background: var(--dpdt-white);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--dpdt-primary);
    margin: 0 0 8px;
    font-family: var(--dpdt-heading-font);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--dpdt-accent);
    margin: 10px auto 0;
}

.section-header p {
    color: var(--dpdt-text-light);
    margin: 0;
    font-size: 1rem;
}

.section-header-light h2 {
    color: #fff;
}

.section-header-light h2::after {
    background: var(--dpdt-accent);
}

/* Two Columns Layout */
.home-two-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 40px 0;
}

/* Section Card - Government panel style */
.section-card {
    background: var(--dpdt-white);
    border-radius: var(--dpdt-radius);
    box-shadow: var(--dpdt-shadow);
    overflow: hidden;
    border: 1px solid var(--dpdt-border);
}


.section-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--dpdt-primary), var(--dpdt-primary-dark));
    color: #fff;
    border-bottom: 3px solid var(--dpdt-accent);
}

.section-card-header h2 {
    color: #fff;
    font-size: 1.05rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--dpdt-heading-font);
}

.section-card-header h2::after {
    display: none;
}

.section-card-header .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    color: var(--dpdt-accent);
}

.view-all-link {
    color: var(--dpdt-accent);
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
}

.view-all-link:hover {
    opacity: 1;
    color: var(--dpdt-accent-light);
}

.section-card-body {
    padding: 20px;
}

/* Notice List */
.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.notice-item:last-child {
    border-bottom: none;
}


.notice-item a {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    color: var(--dpdt-text);
}

.notice-item a:hover .notice-title {
    color: var(--dpdt-primary);
}

.notice-date {
    font-size: 0.75rem;
    color: var(--dpdt-text-light);
    white-space: nowrap;
    background: var(--dpdt-light);
    padding: 2px 8px;
    border-radius: 4px;
    border-left: 2px solid var(--dpdt-accent);
}

.notice-title {
    flex: 1;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.notice-badge-new {
    background: var(--dpdt-danger);
    color: #fff;
    font-size: 0.65rem;
    padding: 1px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Officer */
.officer-profile {
    text-align: center;
}

.officer-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--dpdt-accent);
    box-shadow: 0 4px 12px rgba(26,82,118,0.2);
}

.officer-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--dpdt-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--dpdt-border);
}

.officer-photo-placeholder .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: var(--dpdt-text-light);
}


.officer-name {
    font-size: 1.1rem;
    margin: 12px 0 4px;
    color: var(--dpdt-primary);
    font-family: var(--dpdt-heading-font);
}

.officer-designation {
    color: var(--dpdt-text-light);
    margin: 0;
    font-size: 0.9rem;
}

.officer-dept {
    color: var(--dpdt-text-light);
    font-size: 0.8rem;
    margin: 4px 0 0;
}

/* Activity List */
.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.activity-list a {
    font-size: 0.85rem;
    color: var(--dpdt-text);
}

.activity-list a:hover {
    color: var(--dpdt-primary);
}

.activity-list small {
    display: block;
    color: var(--dpdt-text-light);
    font-size: 0.75rem;
}

/* Statistics Section - Government style gradient */
.home-statistics-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dpdt-primary-dark) 0%, var(--dpdt-primary) 50%, var(--dpdt-primary-light) 100%);
    position: relative;
}

.home-statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--dpdt-accent);
}


/* Important Links */
.important-links-section {
    padding: 50px 0;
    background: var(--dpdt-white);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--dpdt-light);
    border: 1px solid var(--dpdt-border);
    border-radius: var(--dpdt-radius);
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    border-top: 3px solid transparent;
}

.link-card:hover {
    background: #ebf5fb;
    border-top-color: var(--dpdt-accent);
    transform: translateY(-3px);
    box-shadow: var(--dpdt-shadow-lg);
}

.link-card .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: var(--dpdt-primary);
}

.link-title {
    font-size: 0.85rem;
    color: var(--dpdt-text);
    font-weight: 500;
}

/* ====== Footer - Government dark style ====== */
.site-footer {
    background: var(--dpdt-dark);
    color: #adb5bd;
    margin-top: 40px;
    border-top: 4px solid var(--dpdt-accent);
}

.footer-widgets {
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


.footer-col .widget-title {
    color: var(--dpdt-white);
    font-size: 1.1rem;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--dpdt-accent);
    font-family: var(--dpdt-heading-font);
}

.footer-col p {
    margin: 8px 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col a {
    color: #adb5bd;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--dpdt-accent);
}

.footer-col .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    margin-right: 4px;
    vertical-align: middle;
    color: var(--dpdt-accent);
}

.footer-established {
    font-weight: 600;
    color: var(--dpdt-accent);
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    padding: 4px 0;
}

.footer-menu li a {
    font-size: 0.9rem;
}

.footer-menu li a::before {
    content: '\276F ';
    color: var(--dpdt-accent);
    font-size: 0.7em;
    margin-right: 6px;
}

/* Social */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}


.social-link {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
    background: var(--dpdt-accent);
    border-color: var(--dpdt-accent);
}

.social-link .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    margin: 0;
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    background: rgba(0,0,0,0.2);
}

.footer-bottom-content {
    text-align: center;
}

.copyright {
    margin: 0 0 4px;
    font-size: 0.85rem;
    color: #8fa8b8;
}

.footer-credits {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.6;
    color: #6c8795;
}

/* ====== Posts Grid ====== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.post-card {
    background: var(--dpdt-white);
    border-radius: var(--dpdt-radius);
    overflow: hidden;
    box-shadow: var(--dpdt-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 3px solid var(--dpdt-primary);
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--dpdt-shadow-lg);
}


.post-card-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card-content {
    padding: 20px;
}

.post-card .entry-title {
    font-size: 1.1rem;
    margin: 0 0 8px;
    border-bottom: none;
    padding-bottom: 0;
}

.post-card .entry-meta {
    font-size: 0.8rem;
    color: var(--dpdt-text-light);
    margin-bottom: 10px;
}

.post-card .entry-excerpt {
    font-size: 0.9rem;
    color: var(--dpdt-text-light);
    margin-bottom: 12px;
}

.read-more-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dpdt-primary);
}

.read-more-link:hover {
    color: var(--dpdt-accent-dark);
}

/* ====== 404 ====== */
.error-404-wrapper {
    text-align: center;
    padding: 80px 20px;
}

.error-code {
    font-size: 6rem;
    color: var(--dpdt-primary);
    margin: 0;
    line-height: 1;
}

/* ====== Buttons - Government gold accent ====== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--dpdt-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: var(--dpdt-body-font);
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--dpdt-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--dpdt-primary-dark);
    color: #fff;
    box-shadow: 0 4px 12px rgba(26,82,118,0.3);
}


.btn-accent {
    background: var(--dpdt-accent);
    color: var(--dpdt-dark);
}

.btn-accent:hover {
    background: var(--dpdt-accent-dark);
    color: var(--dpdt-dark);
}

/* ====== Breadcrumb ====== */
.breadcrumb {
    padding: 12px 0;
    font-size: 0.85rem;
    color: var(--dpdt-text-light);
    background: var(--dpdt-light);
    border-bottom: 1px solid var(--dpdt-border);
}

.breadcrumb a {
    color: var(--dpdt-primary);
}

.breadcrumb a:hover {
    color: var(--dpdt-accent-dark);
}

.breadcrumb .separator {
    margin: 0 6px;
    color: #ccc;
}

/* ====== Search Form ====== */
.search-input-group {
    display: flex;
    max-width: 500px;
    margin: 20px auto;
}

.search-field {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid var(--dpdt-border);
    border-right: none;
    border-radius: var(--dpdt-radius) 0 0 var(--dpdt-radius);
    font-size: 1rem;
    outline: none;
    font-family: var(--dpdt-body-font);
}

.search-field:focus {
    border-color: var(--dpdt-primary);
}

.search-submit {
    padding: 10px 20px;
    background: var(--dpdt-primary);
    color: #fff;
    border: none;
    border-radius: 0 var(--dpdt-radius) var(--dpdt-radius) 0;
    cursor: pointer;
    transition: background 0.3s;
}

.search-submit:hover {
    background: var(--dpdt-accent);
    color: var(--dpdt-dark);
}


/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--dpdt-primary);
    color: #fff;
    padding: 8px 16px;
    z-index: 9999;
}

.skip-link:focus {
    top: 0;
}

/* Screen Reader */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 40px;
    text-align: center;
}

.pagination-wrapper .nav-links {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.pagination-wrapper .page-numbers {
    padding: 8px 14px;
    background: var(--dpdt-white);
    border: 1px solid var(--dpdt-border);
    border-radius: 4px;
    color: var(--dpdt-text);
    text-decoration: none;
    transition: all 0.3s;
}

.pagination-wrapper .page-numbers:hover {
    border-color: var(--dpdt-primary);
    color: var(--dpdt-primary);
}

.pagination-wrapper .page-numbers.current {
    background: var(--dpdt-primary);
    color: #fff;
    border-color: var(--dpdt-primary);
}

/* ====== Government Badge/Seal Style ====== */
.govt-seal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(212, 172, 13, 0.1);
    border: 1px solid var(--dpdt-accent);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--dpdt-accent-dark);
    font-weight: 600;
}



/* ====== Services Grid - dpdt.gov.bd Circle Icon Cards ====== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 10px 0;
}

.service-card {
    background: var(--dpdt-white);
    border-radius: var(--dpdt-radius);
    box-shadow: var(--dpdt-shadow);
    text-align: center;
    padding: 35px 25px 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--dpdt-border);
    border-top: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--dpdt-shadow-lg);
    border-top-color: var(--dpdt-accent);
}

.service-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--dpdt-primary), var(--dpdt-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--dpdt-accent);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 82, 118, 0.3);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--dpdt-accent), var(--dpdt-accent-dark));
    border-color: var(--dpdt-primary);
    transform: scale(1.08);
}

.service-icon .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: var(--dpdt-white);
}

.service-card:hover .service-icon .dashicons {
    color: var(--dpdt-dark);
}

.service-title {
    font-size: 1.1rem;
    color: var(--dpdt-primary);
    margin: 0 0 10px;
    font-family: var(--dpdt-heading-font);
    font-weight: 700;
}

.service-card:hover .service-title {
    color: var(--dpdt-accent-dark);
}

.service-desc {
    font-size: 0.88rem;
    color: var(--dpdt-text-light);
    margin: 0 0 15px;
    line-height: 1.6;
}

.service-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dpdt-accent-dark);
    padding: 6px 16px;
    border: 1px solid var(--dpdt-accent);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    background: var(--dpdt-accent);
    color: var(--dpdt-dark);
    border-color: var(--dpdt-accent);
}

/* Services Grid responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
    }

    .service-icon .dashicons {
        font-size: 26px;
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
