

        .personal_hero {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            min-height: 100vh;
            padding: 2rem 0;
            position: relative;
            overflow: hidden;
        }

        .personal_hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .personal_hero_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 4rem;
            align-items: center;
            min-height: 90vh;
        }

        .personal_hero_content {
            color: white;
            z-index: 2;
            position: relative;
        }

        .personal_hero_profile {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .personal_hero_avatar img {
            width: 320px;
            height: 200px;
            border-radius: 50% 0% 0% 50%;
            background: linear-gradient(45deg, #FF0000, #ff3333);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            font-weight: bold;
        }

        .personal_hero_badge {
            background: white;
            color: #333;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .personal_hero_partners {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            justify-content: flex-start;
        }

        .personal_hero_partners img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            background: white;
            padding: 0.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .personal_hero_partners img:hover {
            transform: scale(1.1);
        }

        .personal_hero_title {
            font-size: 3.5rem;
            font-weight: 900;
            margin: 1.5rem 0;
            line-height: 1.2;
        }

        .personal_hero_highlight {
            color: #FF0000;
        }

        .personal_hero_subtitle {
            color: #FF0000;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .personal_hero_description {
            font-size: 1.2rem;
            color: #cccccc;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .personal_hero_issues {
            margin-bottom: 2rem;
        }

        .personal_hero_issues h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .personal_hero_specializations {
            list-style: none;
        }

        .personal_hero_specializations li {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem 0;
            font-size: 1.1rem;
            color: #cccccc;
        }

        .personal_hero_specializations li::before {
            content: '';
            width: 24px;
            height: 24px;
            background: #FF0000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: white;
            font-size: 12px;
        }

        .personal_hero_specializations li:nth-child(1)::before {
            content: '\f1c0'; /* Digital Marketing icon */
        }

        .personal_hero_specializations li:nth-child(2)::before {
            content: '\f002'; /* SEO Search icon */
        }

        .personal_hero_specializations li:nth-child(3)::before {
            content: '\f080'; /* Power BI Chart icon */
        }

        .personal_hero_specializations li:nth-child(4)::before {
            content: '\f201'; /* Analytics Chart icon */
        }

        .personal_hero_form {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            z-index: 2;
            position: relative;
        }

        .personal_hero_form_title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #333;
            text-decoration: underline;
            text-decoration-color: #FF0000;
            text-underline-offset: 8px;
        }

        .personal_hero_form_subtitle {
            color: #666;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .personal_hero_form_group {
            margin-bottom: 1.5rem;
        }

        .personal_hero_form_input {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .personal_hero_form_input:focus {
            outline: none;
            border-color: #FF0000;
            box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
        }

        .personal_hero_form_textarea {
            min-height: 120px;
            resize: vertical;
        }

        .personal_hero_form_button {
            width: 100%;
            background: #FF0000;
            color: white;
            border: none;
            padding: 1.2rem 2rem;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .personal_hero_form_button:hover {
            background: #cc0000;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
        }

        .personal_hero_form_button:active {
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .personal_hero_container {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding: 0 1rem;
            }

            .personal_hero_form {
                order: -1;
                max-width: 500px;
                margin: 0 auto;
            }

            .personal_hero_title {
                font-size: 2.8rem;
            }

            .personal_hero_subtitle {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .personal_hero {
                padding: 1rem 0;
            }

            .personal_hero_container {
                gap: 2rem;
            }

            .personal_hero_title {
                font-size: 2.2rem;
            }

            .personal_hero_subtitle {
                font-size: 1.6rem;
            }

            .personal_hero_description {
                font-size: 1rem;
            }

            .personal_hero_form {
                padding: 2rem;
            }

            .personal_hero_profile {
                justify-content: center;
                text-align: center;
                flex-direction: column;
                gap: 1.5rem;
            }

            .personal_hero_content {
                text-align: center;
            }

            .personal_hero_partners {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .personal_hero_avatar img {
                width: 140px;
                height: 90px;
                font-size: 1.5rem;
            }

            .personal_hero_title {
                font-size: 1.8rem;
            }

            .personal_hero_subtitle {
                font-size: 1.4rem;
            }

            .personal_hero_form {
                padding: 1.5rem;
            }

            .personal_hero_form_title {
                font-size: 1.5rem;
            }

            .personal_hero_partners img {
                width: 40px;
                height: 40px;
            }
        }

        /* Animation */
        .personal_hero_content > * {
            opacity: 0;
            transform: translateY(30px);
            animation: personal_hero_fadeInUp 0.8s ease forwards;
        }

        .personal_hero_form {
            opacity: 0;
            transform: translateX(30px);
            animation: personal_hero_fadeInRight 0.8s ease 0.3s forwards;
        }

        .personal_hero_partners {
            opacity: 0;
            transform: translateY(30px);
            animation: personal_hero_fadeInUp 0.8s ease 0.6s forwards;
        }

        @keyframes personal_hero_fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes personal_hero_fadeInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .personal_hero_profile {
            animation-delay: 0.1s;
        }

        .personal_hero_title {
            animation-delay: 0.2s;
        }

        .personal_hero_subtitle {
            animation-delay: 0.3s;
        }

        .personal_hero_description {
            animation-delay: 0.4s;
        }

        .personal_hero_issues {
            animation-delay: 0.5s;
        }
/* About Us Section Styles */

.about_us_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
}

.about_us_main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.about_us_content {
    padding-right: 20px;
}

.about_us_heading {
    color: #FF0000;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about_us_text {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.about_us_form_container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e8ecef 100%);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.about_us_form_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF0000, #cc0000, #FF0000);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.about_us_form_header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.about_us_bell_icon {
    background: linear-gradient(135deg, #FF0000, #cc0000);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.about_us_form_title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about_us_form_subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 400;
    line-height: 1.4;
}

.about_us_highlight {
    color: #FF0000;
    font-weight: 600;
}

.about_us_form_group {
    margin-bottom: 20px;
}

.about_us_input,
.about_us_select,
.about_us_textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about_us_input:focus,
.about_us_select:focus,
.about_us_textarea:focus {
    outline: none;
    border-color: #FF0000;
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.1);
    transform: translateY(-2px);
}

.about_us_input::placeholder,
.about_us_textarea::placeholder {
    color: #888;
    font-weight: 400;
}

.about_us_textarea {
    height: 120px;
    resize: vertical;
}

.about_us_captcha_container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.about_us_captcha_display {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 12px 20px;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #FF0000;
    user-select: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.about_us_captcha_refresh {
    background: linear-gradient(135deg, #FF0000, #cc0000);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.about_us_captcha_refresh:hover {
    background: linear-gradient(135deg, #e60000, #b30000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.about_us_captcha_input {
    flex: 1;
    min-width: 120px;
}

.about_us_submit_btn {
    width: 100%;
    background: linear-gradient(135deg, #FF0000, #cc0000);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.about_us_submit_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.about_us_submit_btn:hover::before {
    left: 100%;
}

.about_us_submit_btn:hover {
    background: linear-gradient(135deg, #e60000, #b30000);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.4);
}

.about_us_submit_btn:active {
    transform: translateY(-1px);
}

.about_us_error_message {
    color: #FF0000;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about_us_main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about_us_content {
        padding-right: 0;
    }

    .about_us_heading {
        font-size: 36px;
        text-align: center;
    }

    .about_us_form_container {
        padding: 30px;
    }

    .about_us_form_title {
        font-size: 24px;
    }

    .about_us_form_subtitle {
        font-size: 15px;
    }

    .about_us_captcha_container {
        flex-direction: column;
        align-items: stretch;
    }

    .about_us_captcha_display {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about_us_container {
        padding: 20px 15px;
    }

    .about_us_heading {
        font-size: 28px;
    }

    .about_us_text {
        font-size: 14px;
    }

    .about_us_form_container {
        padding: 20px;
    }

    .about_us_form_title {
        font-size: 20px;
    }

    .about_us_form_subtitle {
        font-size: 14px;
    }
}
/* End of About Us Section Styles */

        /* Personal Stats Section */

        .personal_stats {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .personal_stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .personal_stats_container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .personal_stats_item {
            text-align: center;
            padding: 2rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .personal_stats_item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .personal_stats_item:hover::before {
            left: 100%;
        }

        .personal_stats_item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
            border-color: rgba(255, 0, 0, 0.3);
        }

        .personal_stats_icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #FF0000, #ff3333);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: white;
            box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .personal_stats_item:hover .personal_stats_icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 30px rgba(255, 0, 0, 0.4);
        }

        .personal_stats_number {
            font-size: 2.2rem;
            font-weight: 900;
            color: #FF0000;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .personal_stats_label {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            line-height: 1.3;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Specific icons for each stat */
        .personal_stats_item:nth-child(1) .personal_stats_icon::before {
            content: '\f155'; /* Dollar sign */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
        }

        .personal_stats_item:nth-child(2) .personal_stats_icon::before {
            content: '\f0c0'; /* Users */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
        }

        .personal_stats_item:nth-child(3) .personal_stats_icon::before {
            content: '\f201'; /* Chart line up */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
        }

        .personal_stats_item:nth-child(4) .personal_stats_icon::before {
            content: '\f164'; /* Thumbs up */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
        }

        /* Animation on scroll/load */
        .personal_stats_item {
            opacity: 0;
            transform: translateY(50px);
            animation: personal_stats_fadeInUp 0.8s ease forwards;
        }

        .personal_stats_item:nth-child(1) { animation-delay: 0.1s; }
        .personal_stats_item:nth-child(2) { animation-delay: 0.2s; }
        .personal_stats_item:nth-child(3) { animation-delay: 0.3s; }
        .personal_stats_item:nth-child(4) { animation-delay: 0.4s; }

        @keyframes personal_stats_fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Counter animation */
        @keyframes personal_stats_countUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .personal_stats_number.animate {
            animation: personal_stats_countUp 1s ease;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .personal_stats_container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
                max-width: 800px;
            }

            .personal_stats_number {
                font-size: 2rem;
            }

            .personal_stats_label {
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            .personal_stats {
                padding: 2rem 0;
            }

            .personal_stats_container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .personal_stats_item {
                padding: 2rem 1rem;
            }

            .personal_stats_icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .personal_stats_number {
                font-size: 1.8rem;
            }

            .personal_stats_label {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .personal_stats_container {
                padding: 0 1rem;
            }

            .personal_stats_item {
                padding: 1.5rem 1rem;
            }

            .personal_stats_number {
                font-size: 1.6rem;
            }

            .personal_stats_label {
                font-size: 0.9rem;
                line-height: 1.2;
            }
        }

        /* Additional responsive adjustments for better mobile experience */
        @media (max-width: 768px) {
            .personal_stats_container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .personal_stats_container {
                grid-template-columns: 1fr;
            }
        }

       

        .personal_about {
            background: linear-gradient(135deg, #e8f4f8 0%, #f0f8fc 100%);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .personal_about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .personal_about_container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .personal_about_content {
            color: #333;
        }

        .personal_about_title {
            font-size: 3.5rem;
            font-weight: 900;
            color: #FF0000;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .personal_about_highlight {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 2rem;
            line-height: 1.5;
        }

        .personal_about_highlight strong {
            font-weight: 900;
            color: #000;
        }

        .personal_about_description {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .personal_about_services {
            margin-bottom: 2.5rem;
        }

        .personal_about_services_intro {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .personal_about_categories {
            font-size: 1.1rem;
            color: #333;
            line-height: 1.7;
        }

        .personal_about_categories strong {
            font-weight: 900;
            color: #000;
        }

        .personal_about_quote {
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
            padding: 2rem;
            border-radius: 15px;
            border-left: 5px solid #4CAF50;
            margin-top: 2rem;
        }

        .personal_about_quote_text {
            font-size: 1.3rem;
            font-style: italic;
            color: #4CAF50;
            font-weight: 600;
            text-align: center;
            line-height: 1.6;
        }

        .personal_about_image_section {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .personal_about_image_container {
            position: relative;
            margin-bottom: 2rem;
        }

        .personal_about_image {
            width: 350px;
            height: 450px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            object-fit: cover;
            object-position: center;
            border: 5px solid white;
        }

        .personal_about_badge {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .personal_about_google_logo {
            width: 30px;
            height: 30px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path fill="%234285F4" d="M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z"/><path fill="%2334A853" d="M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z"/><path fill="%23FBBC05" d="M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z"/><path fill="%23EA4335" d="M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z"/></svg>') no-repeat center;
            background-size: contain;
        }

        .personal_about_badge_content {
            text-align: left;
        }

        .personal_about_badge_title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #666;
            margin-bottom: 0.2rem;
        }

        .personal_about_badge_name {
            font-size: 1rem;
            font-style: italic;
            color: #888;
        }

        .personal_about_specializations {
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-top: 3rem;
        }

        .personal_about_specializations_title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .personal_about_specializations_list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .personal_about_specializations_item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem;
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 0, 0, 0.02));
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 0, 0, 0.1);
        }

        .personal_about_specializations_item:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
        }

        .personal_about_specializations_icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #FF0000, #ff3333);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
        }

        .personal_about_specializations_text {
            font-size: 1rem;
            font-weight: 600;
            color: #333;
        }

        /* Icon assignments */
        .personal_about_specializations_item:nth-child(1) .personal_about_specializations_icon::before {
            content: '\f1c0'; /* Digital Marketing */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
        }

        .personal_about_specializations_item:nth-child(2) .personal_about_specializations_icon::before {
            content: '\f002'; /* SEO Search */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
        }

        .personal_about_specializations_item:nth-child(3) .personal_about_specializations_icon::before {
            content: '\f080'; /* Power BI Chart */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
        }

        .personal_about_specializations_item:nth-child(4) .personal_about_specializations_icon::before {
            content: '\f201'; /* Web Analytics */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
        }

        /* Animations */
        .personal_about_content > * {
            opacity: 0;
            transform: translateY(30px);
            animation: personal_about_fadeInUp 0.8s ease forwards;
        }

        .personal_about_image_section > * {
            opacity: 0;
            transform: translateX(30px);
            animation: personal_about_fadeInRight 0.8s ease forwards;
        }

        @keyframes personal_about_fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes personal_about_fadeInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .personal_about_title { animation-delay: 0.1s; }
        .personal_about_highlight { animation-delay: 0.2s; }
        .personal_about_description { animation-delay: 0.3s; }
        .personal_about_services { animation-delay: 0.4s; }
        .personal_about_quote { animation-delay: 0.5s; }

        .personal_about_image_container { animation-delay: 0.2s; }
        .personal_about_specializations { animation-delay: 0.4s; }

        /* Responsive Design */
        @media (max-width: 968px) {
            .personal_about_container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .personal_about_image_section {
                order: -1;
            }

            .personal_about_title {
                font-size: 2.8rem;
            }

            .personal_about_image {
                width: 300px;
                height: 300px;
            }

            .personal_about_specializations_list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .personal_about {
                padding: 3rem 0;
            }

            .personal_about_container {
                padding: 0 1rem;
                gap: 2rem;
            }

            .personal_about_title {
                font-size: 2.2rem;
            }

            .personal_about_highlight {
                font-size: 1.1rem;
            }

            .personal_about_description,
            .personal_about_services_intro,
            .personal_about_categories {
                font-size: 1rem;
            }

            .personal_about_image {
                width: 250px;
                height: 250px;
            }

            .personal_about_specializations {
                padding: 1.5rem;
            }

            .personal_about_quote_text {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .personal_about_title {
                font-size: 1.8rem;
            }

            .personal_about_image {
                width: 200px;
                height: 200px;
            }

            .personal_about_badge {
                padding: 0.8rem 1.5rem;
                bottom: -15px;
            }

            .personal_about_badge_title {
                font-size: 1rem;
            }

            .personal_about_badge_name {
                font-size: 0.9rem;
            }

            .personal_about_specializations {
                padding: 1rem;
            }

            .personal_about_quote {
                padding: 1.5rem;
            }

            .personal_about_quote_text {
                font-size: 1rem;
            }
        }


         
        .personal_specialize_hero {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 20px;
            font-family: 'Arial', sans-serif;
            text-align: center;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .personal_specialize_container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .personal_specialize_main_title {
            font-size: 3.5rem;
            font-weight: bold;
            color: #FF0000;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .personal_specialize_subtitle {
            font-size: 1.8rem;
            color: #333;
            max-width: 800px;
            margin: 0 auto 60px;
            line-height: 1.4;
            font-weight: 500;
        }

        .personal_specialize_cards_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
            padding: 0 20px;
        }

        .personal_specialize_card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .personal_specialize_card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            border-color: #FF0000;
        }

        .personal_specialize_card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #FF0000;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .personal_specialize_card:hover::before {
            transform: scaleX(1);
        }

        .personal_specialize_icon {
            font-size: 4rem;
            color: #FF0000;
            margin-bottom: 25px;
            display: block;
        }

        .personal_specialize_card_title {
            font-size: 1.5rem;
            font-weight: bold;
            color: black;
            margin-bottom: 15px;
        }

        .personal_specialize_card_subtitle {
            font-size: 1rem;
            color: #6c757d;
            margin-bottom: 20px;
            font-style: italic;
        }

        .personal_specialize_benefits {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .personal_specialize_benefits li {
            color: #666;
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .personal_specialize_benefits li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #FF0000;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .personal_specialize_cta_section {
            margin-top: 40px;
        }

        .personal_specialize_cta_text {
            font-size: 2rem;
            color: black;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .personal_specialize_cta_button {
            background: linear-gradient(45deg, #FF0000, #ff3333);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255,0,0,0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .personal_specialize_cta_button:hover {
            background: linear-gradient(45deg, #e60000, #FF0000);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,0,0,0.4);
        }

        .personal_specialize_cta_button:active {
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .personal_specialize_main_title {
                font-size: 3rem;
            }
            
            .personal_specialize_subtitle {
                font-size: 1.6rem;
            }

            .personal_specialize_cards_grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .personal_specialize_hero {
                padding: 60px 15px;
            }

            .personal_specialize_main_title {
                font-size: 2.5rem;
                margin-bottom: 15px;
            }
            
            .personal_specialize_subtitle {
                font-size: 1.4rem;
                margin-bottom: 40px;
            }

            .personal_specialize_cards_grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 10px;
            }

            .personal_specialize_card {
                padding: 30px 25px;
            }

            .personal_specialize_icon {
                font-size: 3.5rem;
            }

            .personal_specialize_cta_text {
                font-size: 1.6rem;
            }

            .personal_specialize_cta_button {
                padding: 15px 30px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .personal_specialize_main_title {
                font-size: 2rem;
            }
            
            .personal_specialize_subtitle {
                font-size: 1.2rem;
            }

            .personal_specialize_card {
                padding: 25px 20px;
            }

            .personal_specialize_icon {
                font-size: 3rem;
            }

            .personal_specialize_card_title {
                font-size: 1.3rem;
            }

            .personal_specialize_cta_text {
                font-size: 1.4rem;
            }

            .personal_specialize_cta_button {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

        /* Animation */
        .personal_specialize_fade_in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .personal_specialize_fade_in:nth-child(1) { animation-delay: 0.1s; }
        .personal_specialize_fade_in:nth-child(2) { animation-delay: 0.2s; }
        .personal_specialize_fade_in:nth-child(3) { animation-delay: 0.3s; }
        .personal_specialize_fade_in:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    

        .personal_services_section {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 80px 20px;
            font-family: 'Arial', sans-serif;
            text-align: center;
            min-height: 100vh;
        }

        .personal_services_container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .personal_services_main_title {
            font-size: 3.5rem;
            font-weight: bold;
            color: #FF0000;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .personal_services_subtitle {
            font-size: 1.6rem;
            color: #333;
            max-width: 800px;
            margin: 0 auto 60px;
            line-height: 1.4;
            font-weight: 500;
        }

        .personal_services_grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }

        .personal_services_card {
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 40px 25px;
            transition: all 0.3s ease;
            position: relative;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .personal_services_card:hover {
            border-color: #FF0000;
            box-shadow: 0 8px 25px rgba(255,0,0,0.1);
            transform: translateY(-5px);
            background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
        }

        .personal_services_card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #FF0000;
            transform: scaleX(0);
            transition: transform 0.3s ease;
            border-radius: 10px 10px 0 0;
        }

        .personal_services_card:hover::before {
            transform: scaleX(1);
        }

        .personal_services_icon {
            font-size: 3rem;
            color: #FF0000;
            margin-bottom: 20px;
            display: block;
        }

        .personal_services_card_title {
            font-size: 1.4rem;
            font-weight: bold;
            color: #FF0000;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .personal_services_card_description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .personal_services_main_title {
                font-size: 3rem;
            }
            
            .personal_services_subtitle {
                font-size: 1.4rem;
            }

            .personal_services_grid {
                gap: 20px;
            }

            .personal_services_card {
                padding: 35px 20px;
                min-height: 180px;
            }
        }

        @media (max-width: 768px) {
            .personal_services_section {
                padding: 60px 15px;
            }

            .personal_services_main_title {
                font-size: 2.5rem;
                margin-bottom: 15px;
            }
            
            .personal_services_subtitle {
                font-size: 1.2rem;
                margin-bottom: 40px;
            }

            .personal_services_grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .personal_services_card {
                padding: 30px 15px;
                min-height: 160px;
            }

            .personal_services_icon {
                font-size: 2.5rem;
                margin-bottom: 15px;
            }

            .personal_services_card_title {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }

            .personal_services_card_description {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .personal_services_main_title {
                font-size: 2rem;
            }
            
            .personal_services_subtitle {
                font-size: 1.1rem;
            }

            .personal_services_grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .personal_services_card {
                padding: 25px 15px;
                min-height: 140px;
            }

            .personal_services_icon {
                font-size: 2.2rem;
            }

            .personal_services_card_title {
                font-size: 1.1rem;
            }

            .personal_services_card_description {
                font-size: 0.85rem;
            }
        }

        /* Animation */
        .personal_services_fade_in {
            opacity: 0;
            transform: translateY(20px);
            animation: servicesFadeInUp 0.6s ease forwards;
        }

        .personal_services_fade_in:nth-child(1) { animation-delay: 0.1s; }
        .personal_services_fade_in:nth-child(2) { animation-delay: 0.2s; }
        .personal_services_fade_in:nth-child(3) { animation-delay: 0.3s; }
        .personal_services_fade_in:nth-child(4) { animation-delay: 0.4s; }
        .personal_services_fade_in:nth-child(5) { animation-delay: 0.5s; }
        .personal_services_fade_in:nth-child(6) { animation-delay: 0.6s; }
        .personal_services_fade_in:nth-child(7) { animation-delay: 0.7s; }
        .personal_services_fade_in:nth-child(8) { animation-delay: 0.8s; }
        .personal_services_fade_in:nth-child(9) { animation-delay: 0.9s; }

        @keyframes servicesFadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Pulse animation for icons */
        .personal_services_icon {
            animation: iconPulse 2s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .personal_services_card:hover .personal_services_icon {
            animation: none;
            transform: scale(1.1);
            color: #FF0000;
        }


       

        .personal_faq_container {
            max-width:1200px;
            margin: 0 auto;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .personal_faq_header {
            background: linear-gradient(135deg, #FF0000, #CC0000);
            color: white;
            padding: 30px 20px;
            text-align: center;
        }

        .personal_faq_title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .personal_faq_subtitle {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: normal;
        }

        .personal_faq_content {
            padding: 30px 20px;
        }

        .personal_faq_item {
            margin-bottom: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            background: white;
        }

        .personal_faq_question {
            background: #f8f8f8;
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #333;
            border-bottom: 1px solid #e0e0e0;
            transition: all 0.3s ease;
        }

        .personal_faq_question:hover {
            background: #FF0000;
            color: white;
        }

        .personal_faq_question.active {
            background: #FF0000;
            color: white;
        }

        .personal_faq_icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .personal_faq_question.active .personal_faq_icon {
            transform: rotate(180deg);
        }

        .personal_faq_answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: white;
            color: #555;
            line-height: 1.6;
        }

        .personal_faq_answer.active {
            max-height: 500px;
            padding: 20px;
        }

        .personal_faq_answer p {
            margin-bottom: 10px;
        }

        .personal_faq_answer p:last-child {
            margin-bottom: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                /* padding: 10px; */
            }

            .personal_faq_title {
                font-size: 2rem;
            }

            .personal_faq_header {
                padding: 20px 15px;
            }

            .personal_faq_content {
                padding: 20px 15px;
            }

            .personal_faq_question {
                padding: 15px;
                font-size: 0.95rem;
            }

            .personal_faq_answer.active {
                padding: 15px;
            }
        }

        @media (max-width: 480px) {
            .personal_faq_title {
                font-size: 1.8rem;
            }

            .personal_faq_subtitle {
                font-size: 0.9rem;
            }

            .personal_faq_question {
                padding: 12px;
                font-size: 0.9rem;
            }

            .personal_faq_answer.active {
                padding: 12px;
            }
        }


       

        .personal_profile_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            text-align: center;
            border-radius: 15px;
        }

        .personal_profile_image {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            margin: 0 auto 30px;
            overflow: hidden;
            position: relative;
        }

        .personal_profile_image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .personal_profile_image::after {
            content: "";
            position: absolute;
            bottom: -5px;
            right: -5px;
            width: 35px;
            height: 35px;
            background: linear-gradient(45deg, #4285f4, #34a853, #fbbc04, #ea4335);
            border-radius: 50%;
            border: 3px solid white;
        }

        .personal_profile_main_heading {
            font-size: 2.8rem;
            font-weight: bold;
            color: #FF0000;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .personal_profile_subheading {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .personal_profile_description {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 40px;
            font-weight: normal;
        }

        .personal_profile_phone_button {
            display: inline-block;
            background: #FF0000;
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 40px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
            border: none;
            cursor: pointer;
        }

        .personal_profile_phone_button:hover {
            background: #cc0000;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
        }

        .personal_profile_phone_icon {
            margin-right: 10px;
            font-size: 1.1rem;
        }

        .personal_profile_badge_container {
            display: inline-block;
            margin-bottom: 30px;
        }

        .personal_profile_google_badge {
            width: 150px;
            height: auto;
        }

        .personal_profile_partners {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .personal_profile_partners img {
            width: 150px;
            height: 80px;
            object-fit: contain;
            background: white;
            padding: 8px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .personal_profile_partners img:hover {
            transform: scale(1.1);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                /* padding: 10px; */
            }

            .personal_profile_container {
                padding: 40px 15px;
            }

            .personal_profile_image {
                width: 100px;
                height: 100px;
                margin-bottom: 25px;
            }

            .personal_profile_main_heading {
                font-size: 2.2rem;
                margin-bottom: 25px;
            }

            .personal_profile_subheading {
                font-size: 1.1rem;
            }

            .personal_profile_description {
                font-size: 1rem;
                margin-bottom: 30px;
            }

            .personal_profile_phone_button {
                padding: 15px 30px;
                font-size: 1.1rem;
                margin-bottom: 30px;
            }

            .personal_profile_google_badge {
                width: 130px;
            }

            .personal_profile_partners img {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .personal_profile_container {
                padding: 30px 10px;
            }

            .personal_profile_image {
                width: 90px;
                height: 90px;
                margin-bottom: 20px;
            }

            .personal_profile_main_heading {
                font-size: 1.9rem;
                margin-bottom: 20px;
            }

            .personal_profile_subheading {
                font-size: 1rem;
            }

            .personal_profile_description {
                font-size: 0.95rem;
                margin-bottom: 25px;
            }

            .personal_profile_phone_button {
                padding: 12px 25px;
                font-size: 1rem;
                margin-bottom: 25px;
            }

            .personal_profile_google_badge {
                width: 120px;
            }

            .personal_profile_partners img {
                width: 40px;
                height: 40px;
            }
        }

        /* Animation for profile image */
        .personal_profile_image {
            animation: fadeInUp 0.8s ease-out;
        }

        .personal_profile_main_heading {
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .personal_profile_subheading,
        .personal_profile_description {
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .personal_profile_phone_button {
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .personal_profile_badge_container {
            animation: fadeInUp 0.8s ease-out 0.8s both;
        }

        .personal_profile_partners {
            animation: fadeInUp 0.8s ease-out 1s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


       
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #f0f0f0;
            /* padding: 50px 0; */
        }

        .personal_main_footer {
            background-color: #000000;
            color: white;
            padding: 0;
            margin: 0;
        }

        .personal_footer_container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 50px 20px 20px;
        }

        .personal_footer_top_services {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
            text-align: center;
            margin-bottom: 5px;
            padding-bottom: 5px;
        }

        .personal_footer_service_item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .personal_footer_service_link {
            color: white;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: color 0.3s ease;
            text-align: center;
            line-height: 1.3;
            padding: 1px 5px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .personal_footer_service_link:hover {
            color: #FF0000;
            background-color: rgba(255, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .personal_footer_courses_section {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1px;
            text-align: center;
            margin-bottom: 1px;
            padding-bottom: 5px;
        }

        .personal_footer_course_item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .personal_footer_course_link {
            color: white;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: color 0.3s ease;
            text-align: center;
            line-height: 1.3;
            padding: 10px 5px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .personal_footer_course_link:hover {
            color: #FF0000;
            background-color: rgba(255, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .personal_footer_divider {
            height: 1px;
            background-color: #333333;
            margin: 30px 0;
        }

        .personal_footer_bottom_nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }

        .personal_footer_nav_link {
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 15px;
            border-radius: 5px;
        }

        .personal_footer_nav_link:hover {
            color: #FF0000;
            background-color: rgba(255, 0, 0, 0.1);
        }

        .personal_footer_legal_section {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .personal_footer_legal_link {
            color: #888888;
            text-decoration: none;
            font-size: 12px;
            transition: color 0.3s ease;
        }

        .personal_footer_legal_link:hover {
            color: #FF0000;
        }

        .personal_footer_copyright {
            text-align: center;
            color: #888888;
            font-size: 12px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #333333;
        }

        .personal_footer_whatsapp {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
        }

        .personal_footer_whatsapp_btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
        }

        .personal_footer_whatsapp_btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
        }

        .personal_footer_whatsapp_btn i {
            color: white;
            font-size: 28px;
        }

        .personal_footer_notification {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: #FF0000;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .personal_footer_top_services {
                grid-template-columns: repeat(4, 1fr);
                gap: 30px;
            }
            
            .personal_footer_courses_section {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 992px) {
            .personal_footer_container {
                padding: 40px 15px 15px;
            }

            .personal_footer_top_services {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }
            
            .personal_footer_courses_section {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .personal_footer_bottom_nav {
                gap: 30px;
            }

            .personal_footer_service_link,
            .personal_footer_course_link {
                font-size: 12px;
            }
        }

        @media (max-width: 768px) {
            .personal_footer_top_services {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .personal_footer_courses_section {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .personal_footer_bottom_nav {
                flex-direction: column;
                align-items: center;
                gap: 15px;
                text-align: center;
            }

            .personal_footer_legal_section {
                flex-direction: column;
                align-items: center;
                gap: 15px;
                text-align: center;
            }

            .personal_footer_service_link,
            .personal_footer_course_link {
                font-size: 11px;
                padding: 8px 3px;
            }

            .personal_footer_nav_link {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .personal_footer_container {
                padding: 30px 10px 10px;
            }

            .personal_footer_top_services,
            .personal_footer_courses_section {
                grid-template-columns: 1fr;
                gap: 15px;
                text-align: center;
            }

            .personal_footer_bottom_nav {
                gap: 10px;
            }

            .personal_footer_legal_section {
                gap: 10px;
            }

            .personal_footer_service_link,
            .personal_footer_course_link,
            .personal_footer_nav_link {
                font-size: 11px;
            }

            .personal_footer_legal_link {
                font-size: 10px;
            }

            .personal_footer_copyright {
                font-size: 10px;
            }

            .personal_footer_whatsapp_btn {
                width: 50px;
                height: 50px;
            }

            .personal_footer_whatsapp_btn i {
                font-size: 24px;
            }
        }

        /* Large screens optimization */
        @media (min-width: 1400px) {
            .personal_footer_top_services {
                gap: 50px;
            }
            
            .personal_footer_courses_section {
                gap: 50px;
            }

            .personal_footer_bottom_nav {
                gap: 60px;
            }
        }


       
        .personal_certificate {
            max-width: 1200px;
            margin: 50px auto;
            padding: 40px 30px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border: 2px solid #FF0000;
            position: relative;
            overflow: hidden;
        }

        .personal_certificate::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #FF0000, #000000, #FF0000);
        }

        .personal_certificate_header {
            text-align: center;
            margin-bottom: 35px;
            padding-bottom: 25px;
            border-bottom: 2px solid #FF0000;
            position: relative;
        }

        .personal_certificate_adobe_logo img{
            width: 120px;
            height: 120px;
            background: #FF0000;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            letter-spacing: 2px;
        }

        .personal_certificate_title {
            font-size: 28px;
            font-weight: bold;
            color: #000000;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .personal_certificate_profile_section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
            padding: 30px;
            background: #000000;
            border-radius: 15px;
            color: white;
        }

        .personal_certificate_profile_image img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF0000, #cc0000);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: bold;
            color: white;
            flex-shrink: 0;
            border: 4px solid #FF0000;
        }

        .personal_certificate_profile_info {
            text-align: left;
            flex-grow: 1;
        }

        .personal_certificate_name {
            font-size: 28px;
            font-weight: bold;
            color: #FF0000;
            margin-bottom: 8px;
        }

        .personal_certificate_type {
            font-size: 20px;
            color: white;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .personal_certificate_issuer {
            font-size: 16px;
            color: #cccccc;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .personal_certificate_adobe_mini_logo {
            width: 60px;
            height: 20px;
            background: #FF0000;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 3px;
            color: white;
            font-weight: bold;
            font-size: 10px;
            letter-spacing: 1px;
        }

        .personal_certificate_details {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 25px;
            margin: 35px 0;
        }

        .personal_certificate_info_box {
            padding: 25px 20px;
            background: white;
            border-radius: 10px;
            border-left: 4px solid #FF0000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .personal_certificate_info_box:hover {
            transform: translateY(-5px);
        }

        .personal_certificate_info_label {
            font-size: 12px;
            font-weight: bold;
            color: #FF0000;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .personal_certificate_info_value {
            font-size: 16px;
            color: #000000;
            font-weight: 600;
        }

        .personal_certificate_description {
            margin: 30px 0;
            padding: 25px;
            background: #f9f9f9;
            border-radius: 10px;
            border: 1px solid #e0e0e0;
            position: relative;
        }

        .personal_certificate_description::before {
            content: '';
            position: absolute;
            top: 15px;
            right: 20px;
            width: 40px;
            height: 15px;
            background: #FF0000;
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 8px;
            font-weight: bold;
        }

        .personal_certificate_description_text {
            font-size: 15px;
            line-height: 1.6;
            color: #333333;
            margin: 0;
        }

        .personal_certificate_skills {
            margin-top: 30px;
        }

        .personal_certificate_skills_title {
            font-size: 20px;
            font-weight: bold;
            color: #000000;
            margin-bottom: 20px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .personal_certificate_skills_adobe_icon {
            width: 30px;
            height: 30px;
            background: #FF0000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 12px;
        }

        .personal_certificate_skills_list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .personal_certificate_skill_tag {
            background: #000000;
            color: white;
            padding: 10px 18px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
            border: 2px solid #FF0000;
            transition: all 0.3s ease;
            position: relative;
        }

        .personal_certificate_skill_tag:hover {
            background: #FF0000;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
        }

        .personal_certificate_verification {
            text-align: center;
            margin-top: 35px;
            padding-top: 25px;
            border-top: 1px solid #e0e0e0;
        }

        .personal_certificate_verify_btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 15px 35px;
            background: #FF0000;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid #FF0000;
            font-size: 14px;
        }

        .personal_certificate_verify_btn:hover {
            background: white;
            color: #FF0000;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
        }

        .personal_certificate_verify_adobe_logo {
            width: 20px;
            height: 8px;
            background: currentColor;
            border-radius: 2px;
        }

        .personal_certificate_status {
            display: inline-block;
            padding: 8px 20px;
            background: #28a745;
            color: white;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            margin-left: 15px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }

        .personal_certificate_footer {
            margin-top: 30px;
            text-align: center;
            padding: 20px;
            background: #000000;
            border-radius: 10px;
            color: white;
        }

        .personal_certificate_footer_logos {
            display: flex;
            justify-content: center;
            gap: 20px;
            align-items: center;
            margin-bottom: 10px;
        }

        .personal_certificate_footer_adobe_logo img {
            width: 50px;
            height: 50px;
            background: #FF0000;
            border-radius: 0px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 12px;
            letter-spacing: 1px;
        }

        .personal_certificate_credential_id {
            font-size: 12px;
            color: #cccccc;
            font-family: monospace;
        }

        @media (max-width: 768px) {
            .personal_certificate {
                margin: 20px;
                padding: 25px 20px;
            }

            .personal_certificate_profile_section {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .personal_certificate_profile_info {
                text-align: center;
            }

            .personal_certificate_details {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .personal_certificate_title {
                font-size: 22px;
            }

            .personal_certificate_name {
                font-size: 24px;
            }

            .personal_certificate_skills_title {
                flex-direction: column;
                gap: 10px;
            }
        }