/* ===== GET INVOLVED SECTION ===== */
.involved-section {
    background: #fff;
    position: relative;
}

.involved-card-premium {
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    background: var(--off-white);
}

.involved-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--medium-blue));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 24px;
}

.involved-card-premium:hover::before {
    opacity: 1;
}

.involved-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.involved-card-premium > * {
    position: relative;
    z-index: 1;
}

.involved-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue), rgba(232, 101, 42, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.involved-card-premium:hover .involved-icon {
    background: rgba(255,255,255,0.2);
}

.involved-icon i {
    font-size: 2rem;
    color: var(--accent-orange);
    transition: color 0.4s ease;
}

.involved-card-premium:hover .involved-icon i {
    color: var(--white);
}

.involved-card-premium h4 {
    font-family: var(--font-01);
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    transition: color 0.4s ease;
    font-weight: 600;
}

.involved-card-premium:hover h4 {
    color: var(--white);
}

.involved-card-premium:hover p {
    color: rgba(255,255,255,0.8);
}

.btn-involved {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: var(--white);
    padding: 12px 30px;
    border-radius: 10px;
    font-family: var(--font-03);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-involved:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(232, 101, 42, 0.4);
    color: var(--white);
}




 
    
.counter-btn {
    padding-top: 40px;
    position: relative;
    z-index: 99;
}
.countdown-section {
    background-color: #fff;
    background-image: url('https://www.kevinracine.com//public/kevinracine/themeaB9xY12z/assets/images/about/windsor.webp?v=5)');
    position: relative;
    background-size: cover;
}

.countdown-wrapper {
    gap: 20px;
    position: relative;
    z-index: 1;
}

.countdown-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    opacity: .7;
}
.counter-head {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.counter-head p {
    color: #fff;
    font-size: 18px;
}
.counter-box {
    background-color: #fff;
    color: #fff;
    min-width: 110px;
    padding: 20px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.counter-box span {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.counter-box p {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
}

.counter-head h2 {
  color: #fff;}
.counter-head h2 span {
  color: var(--accent-orange-dark);
}
/* Mobile Responsive Adjustments */
@media (max-width: 576px) {
    .countdown-wrapper {
        gap: 10px;
    }
    
    .counter-box {
        min-width: 75px;
        padding: 12px 8px;
    }
    
    .counter-box span {
        font-size: 24px;
    }
    
    .counter-box p {
        font-size: 11px;
    }
}






/* Outer Section Styling */
.gov-levels-section {
    background: var(--off-white);
}

/* Header Elements */
.gov-badge {
    display: inline-block;
    background-color: var(--accent-orange);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.gov-section-title {
    color: var(--primary-blue);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
}

.gov-section-desc {
    color: #000;
    font-size: 16px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Card Container */
.gov-card {
    background-color: #fff;
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.gov-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

/* Card Header */
.gov-card-header {
    background-color: var(--primary-blue);
    color: #fff;
    text-align: center;
}

.gov-card-icon {
    font-size: 32px;
    color: var(--accent-orange);
    display: block;
}

.gov-card-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.gov-card-title .sub-text {
    display: block;
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
    text-transform: none;
    margin-top: 2px;
}

/* List Styling */
.gov-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gov-list li {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
}

.gov-list li:last-child {
    border-bottom: none;
}

.gov-list li i {
    color: var(--accent-orange);
    font-size: 16px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

/* ==========================================
   CUSTOM MARGIN & PADDING CLASSES
   ========================================== */

.custom-header-spacing {
    margin-bottom: 40px;
}

.custom-badge-spacing {
    padding: 6px 18px;
    margin-bottom: 12px;
}

.custom-title-spacing {
    margin-bottom: 10px;
}

.custom-cards-row {
    margin-top: 10px;
}

.custom-col-spacing {
    margin-bottom: 30px;
}

.custom-card-header-padding {
    padding: 24px 20px;
}

.custom-icon-spacing {
    margin-bottom: 10px;
}

.custom-item-padding {
    padding: 12px 20px;
}

.custom-list-icon-spacing {
    margin-right: 12px;
}





/* Single Box Design */
.priority-box {
    background-color: #f8fafc;
    border: 1px solid var(--primary-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.priority-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Circle Check Icon */
.priority-icon i {
    color: var(--accent-orange-dark);
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Box Text */
.priority-text {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

/* ==========================================
   CUSTOM SPACING CLASSES (No Bootstrap Spacing)
   ========================================== */


.custom-box-padding {
    padding: 16px 20px;
}

.custom-col-spacing {
    margin-bottom: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-section-padding {
        padding: 24px 0;
    }

    .custom-box-padding {
        padding: 14px 16px;
    }

    .priority-text {
        font-size: 14px;
    }

    .priority-icon {
        font-size: 18px;
    }
}