.ap_banner {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
section.ap_banner:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000ab, transparent);
    z-index: 0;
}
section.ap_banner .inner_container {
    position: relative;
}
.ap_banner .ap_banner_title { 
    color: #ffffff;
	position: relative;
    margin: 0;
}
.ap_banner_para{
    color: #ffffff;
    text-align: center;
    margin-top: 10px;
    position: relative;
}
.inner_div ul li {
    list-style: none;
    padding: 6px 0;
    line-height: 180%;
    position: relative;
    margin: 0;
}
.inner_div ul li:before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    position: absolute;
    top: 13px;
    left: -35px;
}
.inner_div ul li:not(:last-child):after {
    content: "";
    width: 1px;
    height: 100%;
    border-radius: 50%;
    background-color: var(--secondary-color);
    position: absolute;
    top: 27px;
    left: -28px;
}
.stress_grid .inner_img {
    width: 100%;
    max-width: 300px; 
    height: 300px;
    border-radius: 50%;
    background-color: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
}
.stress_grid .inner_img img {
    max-width: 200px;
    margin: 0 auto;
}

.inner_content_title{
    font-size: var(--h4);
    font-weight: 600;
    margin-bottom: 20px;
}

.inner_div h3 {
    color: var(--secondary-color);
}
#about_video{
    height: 500px;
}

.service_card_link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.service_card_link:hover {
    transform: translateY(-8px);
}

.inner_card_design {
    padding: 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, #af8f58 0%, #dbc67f 100%);
    border-radius: 16px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(175, 143, 88, 0.2);
    transition: all 0.4s ease;
    outline: 2px solid #d9c182;
    outline-offset: -12px;
}

.inner_card_design::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service_card_link:hover .inner_card_design::before {
    opacity: 1;
}

.service_card_link:hover .inner_card_design {
    box-shadow: 0 15px 40px rgba(175, 143, 88, 0.35);
}

.card_number {
    font-size: 48px;
    font-weight: 700;
    color: #af8f58;
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}
.card_text {
    font-size: 15px;
    margin: 5px 0 0;
    color: #fff;
    line-height: 1.4;
}

.service_card_link:hover .card_number {
    color: #f5f5f5;
    transform: scale(1.1);
}

.inner_card_design p {
    font-size: 20px;  
    line-height: 1.4;
    color: #fff;
    position: relative;
    z-index: 1;
}

.card_arrow {
    font-size: 22px;
    color: #fff;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    margin-top: 15px;
}

.service_card_link:hover .card_arrow {
    opacity: 1;
    transform: translateX(0);
}

.flex_card_div .service_card_link{
    width: 100%;
    max-width: 270px;
}

/* --------------------------------------------------------- */
.pricing_table_wrapper {
    overflow-x: auto;
    margin: 0 0 30px;
}
.form_new_deg {
    padding: 30px;
    background-color: #f9f9f9;
}
.modern_pricing_table {
    width: 100%;
    max-width: 500px;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.modern_pricing_table thead {
    background: linear-gradient(135deg, #af8f58 0%, #dbc67f 100%);
}

.modern_pricing_table th {
    padding: 20px 25px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern_pricing_table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.modern_pricing_table tbody tr:last-child {
    border-bottom: none;
}

.modern_pricing_table tbody tr:hover {
    background: #fafafa;
    transform: translateX(5px);
}

.modern_pricing_table tbody tr.highlight_row {
    background: #fff9f0;
}

.modern_pricing_table tbody tr.highlight_row:hover {
    background: #fff4e6;
}

.modern_pricing_table td {
    padding: 20px 25px;
    font-size: 15px;
    color: #333;
}

.unit_range {
    font-weight: 600;
    color: #222;
}

.fee_percentage {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #af8f58 0%, #dbc67f 100%);
    color: #fff;
    border-radius: 20px; 
    font-size: 14px;
}


/* --------------------------------------------------------- */

@media (max-width: 992px) {
    .inner_card_design {
        height: 280px;
        padding: 30px 20px;
    }
    
    .inner_card_design p {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) { 
    #about_video{
        height: 400px;
    } 
    .modern_pricing_table th,
    .modern_pricing_table td {
        padding: 15px;
        font-size: 14px;
    }
    
    .fee_percentage {
        padding: 5px 12px;
        font-size: 13px;
    }
}

@media screen and (max-width: 620px) { 
    #about_video{
        height: 350px;
    }
    .form_new_deg {
        padding: 15px; 
    }
    .card_text {
        font-size: 13px; 
    }
    .inner_div ul li:not(:last-child):after { 
        top: 20px;
        left: -20px;
    }
    .inner_div ul li:before { 
        width: 12px;
        height: 12px;
        left: -25px;
    }
}
@media screen and (max-width: 480px) { 
    #about_video{
        height: 300px;
    }
}