﻿/*
 * Shizi Softwares - Redesign CSS
 * Consolidated stylesheet for all menu-connected pages
 * Migrated from inline styles for better SEO and performance
 * Version: 1.0
 * Last Updated: January 2026
 */

/* ==========================================
   1. GLOBAL UTILITY CLASSES
   ========================================== */

/* Text Gradients */
.text-gradient {
    background: linear-gradient(135deg, #B8860B 0%, #FFBE00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    color: #B8860B !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

/* Background Gradients */
.bg-gradient-gold {
    background: linear-gradient(135deg, #B8860B 0%, #FFBE00 100%);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.bg-gradient-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, rgba(184, 134, 11, 0.03) 100%);
}

/* Badges */
.shizi-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    background: #FFBE00 !important;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
}

.badge-available {
    background: linear-gradient(135deg, #B8860B 0%, #FFBE00 100%);
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* ==========================================
   2. SECTION LAYOUTS
   ========================================== */

.shizi-section {
    padding: 80px 0;
}

.shizi-section-gray {
    background: #f8f9fa;
}

.shizi-section.bg-light {
    background: #f8f9fa !important;
}

.shizi-section.pt-0 {
    padding-top: 0 !important;
}

.shizi-section-title {
    margin-bottom: 3rem;
}

.shizi-section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.shizi-section-title .subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Section Spacing Utilities */
.section-space--ptb_100 {
    padding: 100px 0;
}

.section-space--ptb_30 {
    padding: 30px 0;
}

.section-space--mt_30 {
    margin-top: 30px;
}

/* ==========================================
   3. HERO SECTIONS
   ========================================== */

.shizi-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, rgba(184, 134, 11, 0.03) 100%);
    min-height: 600px;
    padding: 120px 0;
}

.shizi-hero.min-height-450 {
    min-height: 450px;
}

.shizi-hero-content {
    position: relative;
    z-index: 1;
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title-highlight {
    background: linear-gradient(135deg, #B8860B 0%, #FFBE00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
    overflow: hidden;
}

.hero-hexagon {
    position: absolute;
    background: linear-gradient(135deg, #B8860B 0%, #FFBE00 100%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: float 6s ease-in-out infinite;
}

.hero-hexagon-1 {
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
}

.hero-hexagon-2 {
    top: 60%;
    right: 10%;
    width: 60px;
    height: 60px;
    animation-delay: 1s;
    animation-duration: 8s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ==========================================
   4. TRUST INDICATORS / STATS
   ========================================== */

.trust-indicators {
    margin: 50px 0;
}

.trust-item {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.trust-item .number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #B8860B 0%, #FFBE00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.trust-item .label {
    color: #666;
    font-size: 0.95rem;
}

/* ==========================================
   5. MODERN CARDS (AI Services)
   ========================================== */

.modern-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.15);
    border-color: #B8860B;
}

.modern-card.text-center {
    text-align: center;
}

.modern-card.pt-5 {
    padding-top: 50px !important;
}

.modern-card.pb-5 {
    padding-bottom: 50px !important;
}

.modern-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #B8860B 0%, #FFBE00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* ==========================================
   6. LEGACY CARDS (Enterprise Services)
   ========================================== */

.legacy-card {
    padding: 20px;
    border-left: 3px solid #eee;
    transition: all 0.3s;
    background: #fdfdfd;
    height: 100%;
    position: relative;
}

.legacy-card:hover {
    border-left-color: #B8860B;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legacy-card h5 {
    color: #333;
}

.legacy-card .small {
    color: #6c757d;
}

.legacy-card .stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

/* ==========================================
   7. HIRE DEVELOPERS BANNER
   ========================================== */

.hire-developers-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hire-developers-banner .background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.hire-developers-banner .blur-circle-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: #B8860B;
    border-radius: 50%;
    filter: blur(40px);
}

.hire-developers-banner .blur-circle-2 {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: #FFBE00;
    border-radius: 50%;
    filter: blur(60px);
}

.hire-developers-banner h2 {
    color: white;
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 1.2;
}

.hire-developers-banner .hire-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    line-height: 1.6;
}

.hire-developers-banner .hire-content ul {
    color: rgba(255, 255, 255, 0.8);
}

.hire-developers-banner .hire-cta .fa-users-cog {
    font-size: 4rem;
    background: linear-gradient(135deg, #B8860B 0%, #FFBE00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hire-developers-banner .btn-hire {
    background: linear-gradient(135deg, #B8860B 0%, #FFBE00 100%);
    border: none;
    color: #000;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.hire-developers-banner .btn-hire:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 190, 0, 0.3);
}

/* ==========================================
   8. BUTTONS
   ========================================== */

.btn-gold-gradient {
    background: linear-gradient(135deg, #B8860B 0%, #FFBE00 100%);
    border: none;
    color: #000;
    font-weight: 700;
}

.btn-gold-gradient:hover {
    background: linear-gradient(135deg, #FFBE00 0%, #B8860B 100%);
    color: #000;
}

.btn.btn-dark.rounded-pill {
    background: #000;
    border: none;
}

.btn-outline-secondary.rounded-pill {
    border-color: #6c757d;
}

/* Hero Buttons */
.hero-buttons .btn {
    margin: 0 0.5rem;
}

/* ==========================================
   9. CTA SECTION
   ========================================== */

.cta-section {
    background: linear-gradient(135deg, #B8860B 0%, #FFBE00 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-weight: bold;
    color: white !important;
}

.cta-section .lead {
    opacity: 0.9;
}

.cta-section .btn-light {
    background: #ffffff !important;
    color: #B8860B !important;
    border: none;
}

/* ==========================================
   10. TESTIMONIALS
   ========================================== */

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-name {
    font-weight: 600;
    color: #333;
    margin: 0;
}

.testimonial-rating {
    margin-bottom: 0.5rem;
}

.testimonial-rating .fa-star {
    color: #FFBE00;
}

/* ==========================================
   11. COMPARISON BOXES
   ========================================== */

.comparison-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.comparison-box h3 {
    color: #666;
    margin-bottom: 20px;
}

.comparison-box.highlighted {
    background: white;
    border: 1px solid #FFBE00;
    box-shadow: 0 10px 30px rgba(255, 190, 0, 0.1);
}

.comparison-box.highlighted h3 {
    color: #B8860B;
}

.comparison-box ul {
    list-style: none;
    padding: 0;
}

.comparison-box ul li {
    margin-bottom: 15px;
}

.comparison-box .fa-check {
    color: #FFBE00;
    margin-right: 10px;
}

.comparison-box .fa-minus {
    color: #dc3545;
    margin-right: 10px;
}

/* ==========================================
   12. FEATURE SECTIONS
   ========================================== */

.feature-section {
    padding: 60px 0;
}

.feature-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-box h4 {
    color: #333;
    font-weight: 600;
}

.feature-hr {
    border-top: 1px solid #eee;
    margin: 20px 0;
}

/* ==========================================
   13. ABOUT PAGE SPECIFIC
   ========================================== */

.about-hero {
    background: #fdfdfd;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.about-section-subtitle {
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-description {
    max-width: 800px;
    line-height: 1.8;
    color: #666;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-top: 5px solid #FFBE00 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.value-card h5 {
    color: #B8860B;
    text-transform: uppercase;
}

.value-card p {
    color: #6c757d;
    line-height: 1.8;
}

/* ==========================================
   14. MOBILE MENU STYLES
   ========================================== */

/* Mobile Menu Arrows (from previous work) */
.mobile-menu-overlay__body .offcanvas-navigation>ul>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.mobile-menu-overlay__body .offcanvas-navigation>ul>li.has-children .menu-expand {
    position: absolute;
    right: 0;
    top: 10px;
    width: 40px;
    height: 40px;
    background: rgba(184, 134, 11, 0.2);
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 3px;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-overlay__body .offcanvas-navigation>ul>li.has-children .menu-expand:hover {
    background: rgba(184, 134, 11, 0.35);
    border-color: #B8860B;
}

.mobile-menu-overlay__body .offcanvas-navigation>ul>li.has-children .sub-menu li.has-children .menu-expand {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #ffffff;
    background: rgba(184, 134, 11, 0.2);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-overlay__body .offcanvas-navigation>ul>li.has-children .sub-menu li.has-children .menu-expand:hover {
    background: rgba(184, 134, 11, 0.35);
    border-color: #B8860B;
}

/* ==========================================
   15. RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .shizi-section-title h2 {
        font-size: 2rem;
    }

    .trust-item .number {
        font-size: 2.5rem;
    }

    .hire-developers-banner h2 {
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .shizi-section {
        padding: 60px 0;
    }

    .shizi-section-title h2 {
        font-size: 1.75rem;
    }

    .trust-item {
        margin-bottom: 20px;
    }

    .trust-item .number {
        font-size: 2rem;
    }

    .modern-card {
        margin-bottom: 20px;
    }

    .legacy-card {
        margin-bottom: 15px;
    }

    .hire-developers-banner {
        padding: 40px 0;
    }

    .hire-developers-banner h2 {
        font-size: 1.75rem;
    }

    .hero-buttons .btn {
        margin-bottom: 10px;
        display: block;
        width: 100%;
    }

    .cta-section {
        padding: 60px 0;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .shizi-section-title h2 {
        font-size: 1.5rem;
    }

    .modern-icon {
        font-size: 2rem;
    }

    .trust-item .number {
        font-size: 1.75rem;
    }
}

/* ==========================================
   16. UTILITIES & HELPERS
   ========================================== */

/* Max Width Constraints */
.max-width-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Borders */
.border-gold {
    border-color: #B8860B !important;
}

.border-top-gold {
    border-top: 5px solid #FFBE00 !important;
}

/* Box Shadows */
.shadow-gold {
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.15);
}

/* Line Heights */
.line-height-1-6 {
    line-height: 1.6;
}

.line-height-1-8 {
    line-height: 1.8;
}

/* Letter Spacing */
.letter-spacing-1 {
    letter-spacing: 1px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Opacity */
.opacity-09 {
    opacity: 0.9;
}

.opacity-08 {
    opacity: 0.8;
}

/* ==========================================
   17. ANIMATION & TRANSITIONS
   ========================================== */

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Transitions */
.transition-all {
    transition: all 0.3s ease;
}

/* ==========================================
   18. BRAND LOGO SLIDER
   ========================================== */

.brand-logo__image img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-logo__image img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================
   END OF STYLESHEET
   ========================================== */
/* ==========================================
   19. CHATBOT & AI AGENTS STYLES
   ========================================== */

.chat-bubble {
    background: #f1f1f1;
    padding: 15px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    max-width: 80%;
    font-size: 14px;
    position: relative;
}

.chat-user {
    background: #e3f2fd;
    color: #0d47a1;
    margin-left: auto;
    border-bottom-right-radius: 5px;
}

.chat-bot {
    background: #fff3e0;
    color: #e65100;
    margin-right: auto;
    border-bottom-left-radius: 5px;
}

.chat-interface {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 1px solid #eee;
}

.tech-box {
    background: white;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}

.tech-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #B8860B;
}

.tech-box h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #666;
}

.tech-list li {
    margin-bottom: 5px;
}

.shizi-hero.min-height-450 {
    min-height: 450px;
}

/* ==========================================
   17. MEGA MENU STYLES (from Site.Master)
   ========================================== */

/* MEGA MENU CUSTOM STYLES */
.header__navigation nav>ul>li.has-mega-menu {
    position: static;
}

.mega-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #B8860B;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    padding: 40px 0;
}

.header__navigation nav>ul>li.has-mega-menu:hover .mega-menu-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.mega-menu-col {
    flex: 1;
    padding: 0 20px;
    border-right: 1px solid #f5f5f5;
}

.mega-menu-col:last-child {
    border-right: none;
}

.mega-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    display: block;
}

.mega-title.modern {
    color: #B8860B;
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-list li {
    margin-bottom: 10px;
    display: block !important;
    /* Override standard nav styles */
}

.mega-list li a {
    font-size: 15px;
    color: #666;
    font-weight: 500;
    display: block;
    transition: 0.2s;
    text-transform: none !important;
    letter-spacing: 0px !important;
}

.mega-list li a:hover {
    color: #B8860B;
    padding-left: 5px;
}

/* ==========================================
   AMS PAGE SPECIFIC STYLES
   ========================================== */

/* Service Cards (Core Services) */
.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #FFBE00;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #FFF8E1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #B8860B;
    margin-bottom: 20px;
}

/* Support Tier Cards (Multi-Tier Model) */
.support-tier-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    /* overflow: hidden; REMOVED to allow badge overlap */
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.support-tier-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.tier-header {
    background: #f8f9fa;
    padding: 25px;
    border-bottom: 1px solid #eee;
    border-radius: 15px 15px 0 0;
}

.tier-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.tier-subtitle {
    font-size: 0.95rem;
    color: #B8860B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-body {
    padding: 25px;
}

/* Check List Styling */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
}

.check-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: #28a745;
    /* Green check for trust */
    font-size: 0.85rem;
}

/* Tool Badge (Tech Stack) */
.tool-badge {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
}

.tool-badge i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.tool-badge:hover {
    border-color: #B8860B;
    color: #B8860B;
    background: #fff;
}

/* Trusted By Section (AMS) */
.trusted-by-strip {
    background: #fdfdfd;
    border-top: 1px solid #eee;
    padding: 50px 0;
}

.client-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    opacity: 0.7;
}

.client-logo-placeholder:hover {
    color: #B8860B;
    opacity: 1;
    transform: translateY(-2px);
}

.client-logo-placeholder i {
    font-size: 1.8rem;
    margin-right: 10px;
}

/* Alignment Fixes for AMS Page */

/* CTA Button Centering Fix */
.btn-cta-centered {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    line-height: normal !important;
    /* Reset any inherited line-height */
    vertical-align: middle;
    padding: 18px 45px;
    /* Keep original padding */
}

/* L2 Badge Centering Fix */
.tier-badge-centered {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #B8860B;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    height: 24px;
    /* Fixed height for perfect centering */
    padding: 0 15px;
    border-radius: 12px;
    text-transform: uppercase;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Web Hosting Popular Badge Styling */
.popular-badge {
    background: linear-gradient(135deg, #B8860B 0%, #FFBE00 100%);
    color: #000;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    top: -5px;
}

/* Enhancements for the popular card crown icon */
.popular-card-icon {
    color: #B8860B;
    margin-right: 8px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Hire A Developer Page - Missing Styles */

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #FFBE00;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #FFF8E1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #B8860B;
    margin: 0 auto 20px auto;
}

/* Technology Landscape Styling */
.tech-category-box {
    margin-bottom: 30px;
    padding: 20px;
    background: #fdfdfd;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.tech-category-box:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #FFBE00;
}

.tech-category-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #333;
}

.tech-category-title i {
    color: #B8860B;
    margin-right: 10px;
    font-size: 1.2rem;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-badge {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.tech-badge:hover {
    background: #FFBE00;
    color: #000;
    border-color: #FFBE00;
    text-decoration: none;
}

/* Engagement Models Styling */
.engagement-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.engagement-card .btn {
    margin-top: auto;
    width: 80%;
}

.engagement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #FFBE00;
}

.engagement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #FFF8E1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #B8860B;
}

.engagement-price {
    color: #B8860B;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.check-list-center {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    display: inline-block;
}

.check-list-center li {
    margin-bottom: 12px;
    color: #444;
    font-size: 0.95rem;
}

.check-list-center li i {
    color: #28a745;
    width: 20px;
}

/* About Us Page Styling */

/* Hero Enhancement */
.shizi-hero-about {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFFFFF 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.shizi-hero-about h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Mission & Vision Cards */
.about-mission-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.about-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: #B8860B;
}

.mission-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #B8860B 0%, #FFBE00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

/* Core Values Grid */
.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: flex-start;
}

.value-card:hover {
    background: #FFF8E1;
    border-color: #B8860B;
    transform: translateX(5px);
}

.value-icon-wrapper {
    min-width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #B8860B;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.value-card:hover .value-icon-wrapper {
    background: #B8860B;
    color: #fff;
    border-color: #B8860B;
}

.value-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.value-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* About Us Stats Strip */
.stat-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    /* Added border */
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.15);
    /* Gold shadow */
    border-color: #FFBE00;
}

.stat-number {
    font-size: 3rem;
    /* Larger font */
    font-weight: 800;
    background: linear-gradient(135deg, #B8860B 0%, #FFBE00 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Gradient Text */
    margin-bottom: 5px;
    line-height: 1.2;
}

.stat-icon {
    font-size: 3rem;
    color: #B8860B;
    /* Gold by default */
    margin-bottom: 20px;
    transition: all 0.3s;
    opacity: 0.8;
}

.stat-card:hover .stat-icon {
    color: #FFBE00;
    transform: scale(1.1) rotate(5deg);
    /* playful rotation */
    opacity: 1;
}

/* Legal Page Template Styles */
.legal-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #dee2e6;
}

.legal-hero h1 {
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.legal-card {
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.legal-heading {
    font-weight: 700;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #B8860B;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.legal-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.legal-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #28a745;
}

.last-updated {
    display: inline-block;
    background: #FFF8E1;
    color: #B8860B;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 40px;
    border: 1px solid rgba(184, 134, 11, 0.2);
}

@media (max-width: 768px) {
    .legal-card {
        padding: 30px 20px;
    }
}

/* ==================== FAQ SECTION STYLES ==================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: #B8860B;
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 22px 30px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    list-style: none;
    /* Hides default marker in Firefox/Standard */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    position: relative;
    outline: none;
}

/* Hide default marker in WebKit (Chrome/Safari) */
.faq-question::-webkit-details-marker {
    display: none;
}

/* Custom Plus Icon using CSS after pseudo-element */
.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    color: #B8860B;
    /* Gold color */
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    margin-left: 15px;
}

/* Rotate icon when open */
details[open] .faq-question::after {
    transform: rotate(45deg);
}

/* Active state styling */
details[open] .faq-question {
    color: #B8860B;
    /* Highlight question text when open */
    border-bottom: 1px solid #f5f5f5;
}

.faq-answer {
    padding: 25px 30px;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    background-color: #fff;
    border-top: 1px solid transparent;
    /* Placeholder to prevent jump */
}

/* Animation for smooth appearance */
details[open] .faq-answer {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trust/Stats Box Styles (Home Page) - Added 2026-01-14 */
.trust-item-box {
    background: #ffffff !important;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
    /* Stronger shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border for visibility */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 10;
}

.trust-item-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.trust-item-box .number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #B8860B 0%, #FFBE00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
}

.trust-item-box .label {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Pricing Card Styles - Added 2026-01-14 */
.price-tag {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    margin: 15px 0;
    letter-spacing: -0.5px;
}

.price-tag small {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 24px;
    border-radius: 50px;
    /* Pill shape */
    text-decoration: none !important;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.pricing-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-btn:hover i {
    transform: translateX(4px);
}

/* Primary Button (Gold Gradient) */
.pricing-btn-primary {
    background: linear-gradient(135deg, #B8860B 0%, #FFBE00 100%);
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.2);
}

.pricing-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
    color: #000;
}

/* Outline Button (Dark) */
.pricing-btn-outline {
    background: transparent;
    border: 2px solid #000;
    color: #000;
}

.pricing-btn-outline:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Service Card Header Alignment - Added 2026-01-14 */
.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.service-header .icon-wrapper {
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    /* Fixed size for consistency */
    height: 50px;
    border-radius: 50%;
    background: #FFFAF0;
    /* Light gold background */
    color: #B8860B;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Specific override for the 'Pro' card icon wrapper which had white bg */
.service-card[style*="background"] .service-header .icon-wrapper {
    background: #fff;
}

.service-header h3 {
    margin-bottom: 0 !important;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card {
    text-align: left;
    /* Ensure left alignment for the whole card */
    padding: 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}