/* =============================================
   ENHANCED WELCOME SECTION V4 - CARDS WITH BACKGROUND
   ============================================= */

.whatsappBtn{
    width: 42px;
    height: 42px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    transition: 0.3s ease;
}

.whatsappBtn:hover{
    background: #1ebe5d;
    color: #fff;
    transform: scale(1.05);
}

.enhanced_welcome_v2 {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fef9f2 100%);
    overflow: hidden;
}

/* Welcome Icon Ring */
.welcome_icon_ring {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #fb8805, #014e81);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: ringPulse 2s ease-in-out infinite;
}

.welcome_icon_ring::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb8805, #014e81);
    opacity: 0.3;
    z-index: -1;
    animation: ringRipple 2s ease-in-out infinite;
}

.welcome_icon_ring i {
    font-size: 36px;
    color: #fff;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes ringRipple {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

/* Title Divider */
.title_divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px auto 25px;
}

.title_divider span {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #fb8805, #014e81);
    border-radius: 2px;
}

.title_divider i {
    font-size: 22px;
    color: #fb8805;
    animation: flowerRotate 8s linear infinite;
}

@keyframes flowerRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Cards Grid */
.cards_grid {
    margin-top: 50px;
}

/* Service Card V4 - With Background Colors */
.service_card_v4 {
    position: relative;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

/* Different Background Colors for Each Card */
.card_1 {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d4 100%);
    border-bottom: 4px solid #fb8805;
}

.card_2 {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4eaf0 100%);
    border-bottom: 4px solid #014e81;
}

.card_3 {
    background: linear-gradient(135deg, #f0f9f0 0%, #e0f0e0 100%);
    border-bottom: 4px solid #2ecc71;
}

.card_4 {
    background: linear-gradient(135deg, #fef5e8 0%, #fde8d4 100%);
    border-bottom: 4px solid #e67e22;
}

/* Hover Effect - All Cards */
.service_card_v4:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Individual Card Hover Effects */
.card_1:hover {
    background: linear-gradient(135deg, #fb8805, #ffaa44);
    border-bottom: 4px solid #014e81;
}

.card_2:hover {
    background: linear-gradient(135deg, #014e81, #2a6b9e);
    border-bottom: 4px solid #fb8805;
}

.card_3:hover {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-bottom: 4px solid #fb8805;
}

.card_4:hover {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    border-bottom: 4px solid #014e81;
}

/* Card Icon */
.service_card_v4 .card_icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service_card_v4 .card_icon i {
    font-size: 32px;
    transition: all 0.3s ease;
}

/* Card Icon Colors - Normal State */
.card_1 .card_icon i { color: #fb8805; }
.card_2 .card_icon i { color: #014e81; }
.card_3 .card_icon i { color: #27ae60; }
.card_4 .card_icon i { color: #e67e22; }

/* Card Icon Hover State */
.service_card_v4:hover .card_icon {
    background: #fff;
    transform: scale(1.1) rotate(360deg);
}

.service_card_v4:hover .card_icon i {
    color: #014e81;
}

.card_2:hover .card_icon i,
.card_3:hover .card_icon i,
.card_4:hover .card_icon i {
    color: #fb8805;
}

/* Card Heading */
.service_card_v4 h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.card_1 h3 { color: #fb8805; }
.card_2 h3 { color: #014e81; }
.card_3 h3 { color: #27ae60; }
.card_4 h3 { color: #e67e22; }

.service_card_v4:hover h3 {
    color: #fff;
}

/* Card Description */
.service_card_v4 p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.card_1 p,
.card_2 p,
.card_3 p,
.card_4 p {
    color: #555;
}

.service_card_v4:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* Card Features */
.service_card_v4 .card_features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.service_card_v4 .card_features span {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.card_1 .card_features span { color: #fb8805; }
.card_2 .card_features span { color: #014e81; }
.card_3 .card_features span { color: #27ae60; }
.card_4 .card_features span { color: #e67e22; }

.service_card_v4:hover .card_features span {
    color: rgba(255, 255, 255, 0.9);
}

.service_card_v4 .card_features span i {
    font-size: 11px;
    color: inherit;
}

/* Card Button */
.service_card_v4 .card_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.card_1 .card_btn { color: #fb8805; }
.card_2 .card_btn { color: #014e81; }
.card_3 .card_btn { color: #27ae60; }
.card_4 .card_btn { color: #e67e22; }

.service_card_v4:hover .card_btn {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card_1:hover .card_btn { color: #fb8805; }
.card_2:hover .card_btn { color: #014e81; }
.card_3:hover .card_btn { color: #27ae60; }
.card_4:hover .card_btn { color: #e67e22; }

.service_card_v4 .card_btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service_card_v4 .card_btn:hover i {
    transform: translateX(5px);
}

/* Card Badge */
.service_card_v4 .card_badge {
    position: absolute;
    top: 15px;
    right: -25px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 25px;
    transform: rotate(45deg);
    width: 100px;
    text-align: center;
    letter-spacing: 1px;
}

.card_1 .card_badge { background: #fb8805; }
.card_2 .card_badge { background: #014e81; }
.card_3 .card_badge { background: #27ae60; }
.card_4 .card_badge { background: #e67e22; }

/* Responsive Styles */
@media (max-width: 1199px) {
    .service_card_v4 h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .enhanced_welcome_v2 {
        padding: 60px 0;
    }

    .cards_grid {
        margin-top: 30px;
    }

    .service_card_v4 {
        margin-bottom: 25px;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .welcome_icon_ring {
        width: 60px;
        height: 60px;
    }

    .welcome_icon_ring i {
        font-size: 28px;
    }

    .service_card_v4 h3 {
        font-size: 18px;
    }

    .service_card_v4 .card_btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .enhanced_welcome_v2 {
        padding: 40px 0;
    }

    .service_card_v4 {
        padding: 25px 15px;
    }

    .service_card_v4 .card_icon {
        width: 55px;
        height: 55px;
    }

    .service_card_v4 .card_icon i {
        font-size: 25px;
    }

    .card_features {
        flex-direction: column;
        align-items: center;
        gap: 8px !important;
    }
}


/* =============================================
   ABOUT PAGE STYLES
   ============================================= */

/* Banner Section */
.about_banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.banner_content {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 48px;
    font-weight: 800;
    color: #014e81;
    margin-bottom: 15px;
}

.breadcrumb_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb_wrap a {
    color: #fb8805;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb_wrap .separator {
    color: #014e81;
}

.breadcrumb_wrap .current {
    color: #666;
}

.banner_decoration {
    text-align: center;
}

.spa_icon_float {
    width: 100px;
    height: 100px;
    background: rgba(251, 136, 5, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: floatIcon 3s ease-in-out infinite;
}

.spa_icon_float i {
    font-size: 50px;
    color: #fb8805;
}

/* About Section Enhanced */
.about_section_enhanced {
    padding: 80px 0;
}

.about_image_wrapper {
    position: relative;
}

.main_image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.main_image img {
    width: 100%;
    height: auto;
    display: block;
}

.experience_years {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #014e81;
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.years_number {
    font-size: 40px;
    font-weight: 800;
    color: #fb8805;
    line-height: 1;
}

.years_number span {
    font-size: 24px;
    color: #fff;
}

.years_text {
    font-size: 12px;
    color: #fff;
    line-height: 1.3;
}

.floating_leaf {
    position: absolute;
    font-size: 30px;
    animation: float 4s ease-in-out infinite;
}

.leaf_1 {
    top: -20px;
    left: -20px;
    color: #fb8805;
}

.leaf_2 {
    bottom: -20px;
    right: -20px;
    color: #014e81;
    animation-delay: 1s;
}

/* About Content */
.about_content_enhanced {
    padding-left: 30px;
}

.about_badge {
    display: inline-block;
    background: rgba(251, 136, 5, 0.1);
    color: #fb8805;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about_content_enhanced h2 {
    font-size: 36px;
    font-weight: 700;
    color: #014e81;
    margin-bottom: 20px;
}

.about_divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.about_divider span {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #fb8805, #014e81);
}

.about_divider i {
    color: #fb8805;
    font-size: 18px;
}

.about_lead {
    font-size: 18px;
    font-weight: 500;
    color: #014e81;
    margin-bottom: 20px;
}

.about_features_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.about_features_list .feature_item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about_features_list .feature_item i {
    color: #fb8805;
    font-size: 18px;
}

.about_features_list .feature_item span {
    color: #555;
    font-size: 14px;
}

.about_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fb8805;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about_btn:hover {
    background: #014e81;
    color: #fff;
    transform: translateY(-3px);
}

/* Milestones Section */
.history_section_enhanced {
    background: linear-gradient(180deg, #fef9f2 0%, #ffffff 100%);
    padding: 80px 0;
}

.milestones_grid {
    margin-top: 50px;
}

.milestone_card {
    text-align: center;
    padding: 40px 25px;
    background: #fff;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.milestone_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(251, 136, 5, 0.15);
    border-bottom: 3px solid #fb8805;
}

.milestone_year {
    font-size: 32px;
    font-weight: 800;
    color: #fb8805;
    margin-bottom: 15px;
}

.milestone_icon {
    width: 60px;
    height: 60px;
    background: rgba(251, 136, 5, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.milestone_icon i {
    font-size: 28px;
    color: #fb8805;
}

.milestone_card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #014e81;
    margin-bottom: 15px;
}

.milestone_card p {
    color: #666;
    line-height: 1.6;
}

/* Features Section */
.features_section_enhanced {
    padding: 80px 0;
}

.features_image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.features_list {
    padding-left: 30px;
}

.feature_card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature_card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature_icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fb8805, #014e81);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature_icon i {
    font-size: 28px;
    color: #fff;
}

.feature_info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #014e81;
    margin-bottom: 8px;
}

.feature_info p {
    color: #666;
    line-height: 1.5;
}

/* Team Section */
.team_section_enhanced {
    background: linear-gradient(180deg, #ffffff 0%, #fef9f2 100%);
    padding: 80px 0;
}

.team_grid {
    margin-top: 50px;
}

.team_card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.team_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team_image {
    position: relative;
    overflow: hidden;
}

.team_image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.team_card:hover .team_image img {
    transform: scale(1.05);
}

.team_social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #014e81, #fb8805);
    transition: bottom 0.3s ease;
}

.team_card:hover .team_social {
    bottom: 0;
}

.team_social a {
    color: #fff;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.team_social a:hover {
    transform: translateY(-3px);
    color: #fb8805;
}

.team_info {
    padding: 20px;
    text-align: center;
}

.team_info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #014e81;
    margin-bottom: 5px;
}

.team_info p {
    color: #fb8805;
    font-size: 14px;
    margin-bottom: 10px;
}

.team_badge {
    display: inline-block;
    background: rgba(251, 136, 5, 0.1);
    color: #fb8805;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* Title Divider (Reusable) */
.title_divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px auto 25px;
}

.title_divider span {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #fb8805, #014e81);
    border-radius: 2px;
}

.title_divider i {
    font-size: 22px;
    color: #fb8805;
    animation: flowerRotate 8s linear infinite;
}

/* Responsive */
@media (max-width: 991px) {
    .about_content_enhanced {
        padding-left: 0;
        margin-top: 40px;
    }

    .about_content_enhanced h2 {
        font-size: 30px;
    }

    .features_list {
        padding-left: 0;
        margin-top: 40px;
    }

    .banner-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about_banner {
        padding: 60px 0;
    }

    .banner-title {
        font-size: 28px;
    }

    .about_features_list {
        grid-template-columns: 1fr;
    }

    .milestone_year {
        font-size: 28px;
    }

    .feature_card {
        flex-direction: column;
        text-align: center;
    }

    .feature_icon {
        margin: 0 auto;
    }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes flowerRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}



/* =============================================
   SIGNATURE SERVICES SECTION
   ============================================= */

.signature_services_section {
    padding: 80px 0 !important;
    background: linear-gradient(180deg, #ffffff 0%, #fef9f2 100%) !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
}

/* Section Header */
.services_section_header {
    margin-bottom: 20px !important;
    text-align: center !important;
}

.services_icon_ring {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 20px !important;
    background: linear-gradient(135deg, #fb8805, #014e81) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    animation: servicesRingPulse 2s ease-in-out infinite !important;
}

.services_icon_ring i {
    font-size: 36px !important;
    color: #fff !important;
}

@keyframes servicesRingPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.services_subtitle {
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    color: #fb8805 !important;
    text-transform: uppercase !important;
    margin-bottom: 15px !important;
}

.services_main_title {
    font-size: 48px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    color: #014e81 !important;
}

.services_main_title .colorPrimary {
    color: #fb8805 !important;
}

.services_title_divider {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    margin: 20px auto 25px !important;
}

.services_title_divider span {
    width: 60px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #fb8805, #014e81) !important;
    border-radius: 2px !important;
}

.services_title_divider i {
    font-size: 22px !important;
    color: #fb8805 !important;
    animation: servicesFlowerRotate 8s linear infinite !important;
}

@keyframes servicesFlowerRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.services_description {
    font-size: 17px !important;
    line-height: 1.7 !important;
    color: #666 !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

/* Services Grid */
.services_grid {
    margin-top: 50px !important;
    display: flex !important;
    flex-wrap: wrap !important;
}

/* Service Offer Card */
.service_offer_card {
    background: #fff !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    margin-bottom: 30px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.service_offer_card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Service Offer Image */
.service_offer_image {
    position: relative !important;
    overflow: hidden !important;
    height: 250px !important;
    width: 100% !important;
}

.service_offer_image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

.service_offer_card:hover .service_offer_image img {
    transform: scale(1.08) !important;
}

/* Service Offer Overlay */
.service_offer_overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(1, 78, 129, 0.85) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.service_offer_card:hover .service_offer_overlay {
    opacity: 1 !important;
}

.service_offer_quick_btn {
    background: #fb8805 !important;
    color: #fff !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    transform: translateY(20px) !important;
}

.service_offer_card:hover .service_offer_quick_btn {
    transform: translateY(0) !important;
}

.service_offer_quick_btn:hover {
    background: #fff !important;
    color: #014e81 !important;
    transform: translateY(-3px) !important;
}

/* Service Offer Content */
.service_offer_content {
    padding: 25px !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.service_offer_content h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #014e81 !important;
    margin-bottom: 12px !important;
    transition: color 0.3s ease !important;
}

.service_offer_card:hover .service_offer_content h3 {
    color: #fb8805 !important;
}

.service_offer_content p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin-bottom: 20px !important;
}

/* Service Offer Meta */
.service_offer_meta {
    display: flex !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
    flex-wrap: wrap !important;
}

.service_offer_meta span {
    font-size: 12px !important;
    color: #888 !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.service_offer_meta span i {
    color: #fb8805 !important;
    font-size: 13px !important;
}

/* Service Offer Button */
.service_offer_btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #fb8805 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    margin-top: auto !important;
}

.service_offer_btn:hover {
    gap: 12px !important;
    color: #014e81 !important;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .services_main_title {
        font-size: 36px !important;
    }
    .service_offer_content h3 {
        font-size: 18px !important;
    }
}

@media (max-width: 991px) {
    .signature_services_section {
        padding: 60px 0 !important;
    }
    .services_main_title {
        font-size: 32px !important;
    }
    .service_offer_image {
        height: 220px !important;
    }
}

@media (max-width: 768px) {
    .services_icon_ring {
        width: 60px !important;
        height: 60px !important;
    }
    .services_icon_ring i {
        font-size: 28px !important;
    }
    .services_main_title {
        font-size: 28px !important;
    }
    .service_offer_image {
        height: 200px !important;
    }
}

@media (max-width: 480px) {
    .services_main_title {
        font-size: 24px !important;
    }
    .service_offer_image {
        height: 180px !important;
    }
    .service_offer_content {
        padding: 15px !important;
    }
}