/* Devs Zon Header Styles */
header#site-header, footer#site-footer {
    display: none;
}
.crproweb-service-shopify-svg-icon svg {
    position: relative;
    left: 110px;
    width: 500px;
}

/**
*   =========================================================================================
*   @ It's for Home page styles ###################################@@@@@@@@@@@@@@@@@@@
*   =========================================================================================
*/

/**
*
*   @ It's for Header section styles
*
*/
.crproweb-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.8), rgb(20 20 37));
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
}

.crproweb-header.crproweb-scrolled {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.crproweb-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.crproweb-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    z-index: 1001;
}

.crproweb-logo-text {
    font-size: 22px;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 0%, #e0d4ff 50%, #ffc4e8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

/* Navigation */
.crproweb-nav {
    display: flex;
    align-items: center;
    gap: 50px;
}

.crproweb-nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.crproweb-nav-item {
    position: relative;
}

.crproweb-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
}

.crproweb-header .crproweb-header-container .crproweb-nav .crproweb-nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.crproweb-nav-link:hover {
    color: rgba(255, 255, 255, 1);
}

.crproweb-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(167, 139, 250, 0.8), rgba(244, 114, 182, 0.8));
    transition: width 0.3s;
}

.crproweb-nav-link:hover::after {
    width: 100%;
}

.crproweb-dropdown-icon {
    font-size: 10px;
    transition: transform 0.3s;
}

.crproweb-nav-item:hover .crproweb-dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.crproweb-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 35, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.crproweb-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: rgba(20, 20, 35, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-50%) rotate(45deg);
}

.crproweb-nav-item:hover .crproweb-dropdown {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.crproweb-dropdown-item {
    display: block;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.crproweb-dropdown-item-icon {
    font-size: 18px;
}

.crproweb-dropdown-item:hover {
    background: rgba(167, 139, 250, 0.15);
    color: rgba(255, 255, 255, 1);
    transform: translateX(4px);
}

/* CTA Button */
.crproweb-header-cta {
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(244, 114, 182, 0.3));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 4px 16px rgba(167, 139, 250, 0.3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.crproweb-header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.crproweb-header-cta:hover::before {
    left: 100%;
}

.crproweb-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(167, 139, 250, 0.5);
    color: white;
}

/* Mobile Menu Toggle */
.crproweb-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.crproweb-mobile-toggle-line {
    width: 26px;
    height: 2px;
    background: linear-gradient(90deg, rgba(167, 139, 250, 0.8), rgba(244, 114, 182, 0.8));
    border-radius: 2px;
    transition: all 0.3s;
}

.crproweb-mobile-toggle.active .crproweb-mobile-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.crproweb-mobile-toggle.active .crproweb-mobile-toggle-line:nth-child(2) {
    opacity: 0;
}

.crproweb-mobile-toggle.active .crproweb-mobile-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.crproweb-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(15, 15, 30, 0.98);
    backdrop-filter: blur(30px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 100px 30px 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    /* z-index: 999; */
}

.crproweb-mobile-menu.active {
    right: 0;
}

.crproweb-mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.crproweb-mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.crproweb-mobile-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.crproweb-mobile-nav-link:hover {
    color: rgba(255, 255, 255, 1);
    padding-left: 10px;
}

/* Mobile Dropdown */
.crproweb-mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 15px;
}

.crproweb-mobile-dropdown.active {
    max-height: 300px;
}

.crproweb-mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.crproweb-mobile-dropdown-item:hover {
    color: rgba(255, 255, 255, 1);
    padding-left: 8px;
}

.crproweb-mobile-cta {
    margin-top: 30px;
    width: 100%;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(244, 114, 182, 0.3));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 4px 16px rgba(167, 139, 250, 0.3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.crproweb-mobile-cta:active {
    transform: scale(0.98);
}

/* Overlay */
.crproweb-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.crproweb-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 1024px) {
    .crproweb-header-container {
        padding: 0 40px;
    }

    .crproweb-nav-menu {
        gap: 30px;
    }

    .crproweb-nav {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .crproweb-header-container {
        padding: 0 30px;
    }

    .crproweb-nav {
        display: none;
    }

    .crproweb-mobile-toggle {
        display: flex;
    }
}


/**
*
*   @ It's for hero section styles
*
*/
.crproweb-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 50%, #1a1a2e 100%);
}

/* Animated gradient background */
.crproweb-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(167, 139, 250, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(244, 114, 182, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(147, 197, 253, 0.1) 0%, transparent 50%);
    animation: crproweb-gradientShift 20s ease-in-out infinite;
}

@keyframes crproweb-gradientShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Cosmic particles */
.crproweb-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.crproweb-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50%;
    animation: crproweb-float 15s infinite ease-in-out;
    opacity: 0;
}

@keyframes crproweb-float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* Light rays */
.crproweb-light-rays {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200%;
    pointer-events: none;
    opacity: 0.3;
}

.crproweb-ray {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    transform-origin: top center;
    animation: crproweb-rayPulse 8s ease-in-out infinite;
}

.crproweb-ray:nth-child(1) { transform: rotate(-15deg); animation-delay: 0s; }
.crproweb-ray:nth-child(2) { transform: rotate(-5deg); animation-delay: 1s; }
.crproweb-ray:nth-child(3) { transform: rotate(5deg); animation-delay: 2s; }
.crproweb-ray:nth-child(4) { transform: rotate(15deg); animation-delay: 1.5s; }

@keyframes crproweb-rayPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

/* Main container */
.crproweb-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left text section */
.crproweb-text-content {
    position: relative;
}

.crproweb-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #e0d4ff 30%, #ffc4e8 60%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: crproweb-titleGlow 4s ease-in-out infinite;
    letter-spacing: -0.02em;
}

.crproweb-title-bold {
    font-weight: 600;
    display: block;
    font-family: 'Georgia', serif;
    font-style: italic;
    margin-top: 10px;
}

@keyframes crproweb-titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.crproweb-subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.03em;
}

.crproweb-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.crproweb-btn {
    position: relative;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 13px;
}

.crproweb-btn-primary {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(244, 114, 182, 0.3));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 8px 32px rgba(167, 139, 250, 0.3);
}

.crproweb-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.crproweb-btn-primary:hover::before {
    left: 100%;
}

.crproweb-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(167, 139, 250, 0.5);
    color: white;
}

.crproweb-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.crproweb-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: white;
}

/* Right visual section */
.crproweb-visual-content {
    position: relative;
    height: 600px;
}

/* Floating desk */
.crproweb-floating-desk {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: crproweb-deskFloat 6s ease-in-out infinite;
}

@keyframes crproweb-deskFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

/* Desk content styling */
.crproweb-desk-content {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.crproweb-desk-screen {
    flex: 1;
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.6), rgba(20, 20, 40, 0.4));
    border-radius: 10px;
    padding: 8px;
    border: 1px solid rgba(167, 139, 250, 0.2);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.crproweb-screen-header {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.crproweb-screen-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.6), rgba(167, 139, 250, 0.6));
    box-shadow: 0 0 8px rgba(244, 114, 182, 0.4);
    animation: crproweb-dotPulse 2s ease-in-out infinite;
}

.crproweb-screen-dot:nth-child(2) { animation-delay: 0.3s; }
.crproweb-screen-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes crproweb-dotPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.crproweb-screen-code {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
}

.crproweb-code-line {
    height: 6px;
    background: linear-gradient(90deg, rgba(147, 197, 253, 0.6), transparent);
    border-radius: 3px;
    animation: crproweb-codeTyping 3s ease-in-out infinite;
}

.crproweb-code-line.crproweb-short {
    width: 60%;
    animation-delay: 0.5s;
}

.crproweb-code-line.crproweb-medium {
    width: 80%;
    animation-delay: 1s;
}

@keyframes crproweb-codeTyping {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; box-shadow: 0 0 10px rgba(147, 197, 253, 0.6); }
}

.crproweb-desk-items {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.crproweb-desk-icon {
    font-size: 24px;
    animation: crproweb-iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.crproweb-desk-icon:nth-child(2) { animation-delay: 0.5s; }
.crproweb-desk-icon:nth-child(3) { animation-delay: 1s; }

@keyframes crproweb-iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Cloud base */
.crproweb-cloud {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 150px;
    background: radial-gradient(ellipse at center, rgba(147, 197, 253, 0.2), transparent);
    border-radius: 50%;
    filter: blur(40px);
    animation: crproweb-cloudPulse 4s ease-in-out infinite;
}

@keyframes crproweb-cloudPulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

/* Orbiting elements */
.crproweb-orbit-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
}

.crproweb-orbit-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: crproweb-orbit 20s linear infinite;
}

.crproweb-orbit-element:nth-child(1) {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.crproweb-orbit-element:nth-child(2) {
    bottom: 15%;
    left: 10%;
    animation-delay: -7s;
}

.crproweb-orbit-element:nth-child(3) {
    top: 15%;
    left: 5%;
    animation-delay: -14s;
}

.crproweb-orbit-element:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: -10s;
}

@keyframes crproweb-orbit {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    25% { transform: translateY(-30px) rotate(5deg); opacity: 1; }
    50% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    75% { transform: translateY(30px) rotate(-5deg); opacity: 1; }
}

.crproweb-element-icon {
    width: 40px;
    height: 40px;
    /* background: linear-gradient(135deg, rgba(167, 139, 250, 0.4), rgba(244, 114, 182, 0.4)); */
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
}

/* Sparkles */
.crproweb-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: crproweb-sparkle 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes crproweb-sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Floating particles that follow cursor */
.crproweb-cursor-particle {
    position: fixed;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
}

@media (max-width: 1024px) {
    .crproweb-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 40px;
    }

    .crproweb-title {
        font-size: 48px;
        padding: 30px 0 0 0;
    }

    .crproweb-visual-content {
        height: 400px;
    }

    .crproweb-floating-desk {
        width: 300px;
        height: 200px;
    }
}
@media (max-width: 768px) {
    .crproweb-orbit-element:nth-child(2),
    .crproweb-orbit-element:nth-child(3) {
        left: 25%;
    }
    .crproweb-orbit-element:nth-child(1),
    .crproweb-orbit-element:nth-child(4) {
        right: 25%;
    }
	.crproweb-orbit-element:nth-child(4) {
		bottom: 15%;
	}
}
@media (min-width: 400px) and (max-width: 1200px) {
    .crproweb-container {
        padding: 80px 40px;
    }
    .crproweb-orbit-element:nth-child(2),
    .crproweb-orbit-element:nth-child(3) {
        left: 25%;
    }
    .crproweb-orbit-element:nth-child(1),
    .crproweb-orbit-element:nth-child(4) {
        right: 25%;
    }
	.crproweb-orbit-element:nth-child(4) {
		bottom: 15%;
	}
}


/**
*
*   @ It's for services section styles
*
*/
/* Services Section */
.crproweb-services {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #0f0f1e 0%, #1a1a2e 50%, #0f0f1e 100%);
    overflow: hidden;
}

/* Animated background elements */
.crproweb-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(167, 139, 250, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(244, 114, 182, 0.08) 0%, transparent 50%);
    animation: crproweb-servicesGlow 15s ease-in-out infinite;
}

@keyframes crproweb-servicesGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.crproweb-services-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Section header */
.crproweb-services-header {
    text-align: center;
    margin-bottom: 80px;
}

.crproweb-services-subtitle {
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(167, 139, 250, 0.8);
    margin-bottom: 20px;
    font-weight: 500;
}

.crproweb-services-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #e0d4ff 50%, #ffc4e8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.crproweb-services-title-bold {
    font-weight: 600;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.crproweb-services-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Services grid */
.crproweb-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Service card */
.crproweb-service-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 45px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.crproweb-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(244, 114, 182, 0.1));
    opacity: 0;
    transition: opacity 0.5s;
    border-radius: 24px;
}

.crproweb-service-card:hover::before {
    opacity: 1;
}

.crproweb-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(167, 139, 250, 0.4);
    box-shadow: 
        0 20px 60px rgba(167, 139, 250, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Floating icon container */
.crproweb-service-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.crproweb-service-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(244, 114, 182, 0.2));
    border-radius: 20px;
    animation: crproweb-iconFloat 4s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(167, 139, 250, 0.3);
}

.crproweb-service-card:hover .crproweb-service-icon-bg {
    animation: crproweb-iconFloatHover 2s ease-in-out infinite;
}

@keyframes crproweb-iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes crproweb-iconFloatHover {
    0%, 100% { transform: translateY(-5px) rotate(-3deg) scale(1.05); }
    50% { transform: translateY(-15px) rotate(3deg) scale(1.05); }
}

.crproweb-service-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    z-index: 1;
}

/* Orbiting particles around icon */
.crproweb-icon-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.crproweb-icon-particle:nth-child(1) {
    top: 0;
    left: 50%;
    animation: crproweb-orbitIcon 3s linear infinite;
}

.crproweb-icon-particle:nth-child(2) {
    top: 50%;
    right: 0;
    animation: crproweb-orbitIcon 3s linear infinite;
    animation-delay: 0.75s;
}

.crproweb-icon-particle:nth-child(3) {
    bottom: 0;
    left: 50%;
    animation: crproweb-orbitIcon 3s linear infinite;
    animation-delay: 1.5s;
}

@keyframes crproweb-orbitIcon {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.5); }
    100% { opacity: 1; transform: scale(1); }
}

.crproweb-service-title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
    position: relative;
}

.crproweb-service-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    font-weight: 300;
    position: relative;
}

/* Service features list */
.crproweb-service-features {
    list-style: none;
    position: relative;
}

.crproweb-service-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.crproweb-feature-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(244, 114, 182, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    border: 1px solid rgba(167, 139, 250, 0.4);
}

/* Shimmer effect on hover */
.crproweb-service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.crproweb-service-card:hover::after {
    animation: crproweb-shimmer 1.5s ease-in-out;
}

@keyframes crproweb-shimmer {
    0% { transform: translateX(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) rotate(45deg); opacity: 0; }
}

/* Featured service - larger card */
.crproweb-service-card.crproweb-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.08), rgba(244, 114, 182, 0.08));
}

.crproweb-service-card.crproweb-featured .crproweb-service-title {
    font-size: 28px;
}

/* CTA Section */
.crproweb-services-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.crproweb-services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(167, 139, 250, 0.1), transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(244, 114, 182, 0.1), transparent 60%);
    animation: crproweb-ctaPulse 6s ease-in-out infinite;
}

@keyframes crproweb-ctaPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.crproweb-cta-content {
    position: relative;
    z-index: 1;
}

.crproweb-cta-title {
    font-size: 36px;
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.crproweb-cta-title-bold {
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 0%, #e0d4ff 50%, #ffc4e8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.crproweb-cta-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.crproweb-cta-button {
    padding: 18px 45px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(244, 114, 182, 0.3));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 8px 32px rgba(167, 139, 250, 0.3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.crproweb-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.crproweb-cta-button:hover::before {
    left: 100%;
}

.crproweb-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(167, 139, 250, 0.5);
}

/* Floating background particles */
.crproweb-bg-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
    animation: crproweb-bgFloat 15s ease-in-out infinite;
}

@keyframes crproweb-bgFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-50px) translateX(30px); }
}

@media (max-width: 1024px) {
    .crproweb-services-grid {
        grid-template-columns: 1fr;
    }

    .crproweb-service-card.crproweb-featured {
        grid-column: span 1;
    }

    .crproweb-services-title {
        font-size: 40px;
    }

    .crproweb-services-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .crproweb-services {
        padding: 80px 0;
    }

    .crproweb-services-header {
        margin-bottom: 50px;
    }

    .crproweb-service-card {
        padding: 35px;
    }

    .crproweb-cta-title {
        font-size: 28px;
    }
}


/**
*
*   @ It's for About section styles
*
*/
.crproweb-about {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
    padding: 120px 0;
}

/* Animated grid background */
.crproweb-about-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(167, 139, 250, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(167, 139, 250, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: crproweb-gridMove 20s linear infinite;
    opacity: 0.5;
}

@keyframes crproweb-gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Floating orbs */
.crproweb-about-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: crproweb-orbFloat 15s ease-in-out infinite;
}

.crproweb-about-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.4), transparent);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.crproweb-about-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.3), transparent);
    bottom: 20%;
    right: -5%;
    animation-delay: -5s;
}

@keyframes crproweb-orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.2); }
}

/* Main container */
.crproweb-about-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Section header */
.crproweb-about-header {
    text-align: center;
    margin-bottom: 80px;
}

.crproweb-about-label {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(244, 114, 182, 0.2));
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    color: #a78bfa;
    font-weight: 600;
}

.crproweb-about-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.crproweb-about-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content grid */
.crproweb-about-grid-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

/* Left side - Image/Visual */
.crproweb-about-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crproweb-about-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Technology icons floating */
.crproweb-tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.crproweb-tech-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(244, 114, 182, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    animation: crproweb-techFloat 6s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.crproweb-tech-icon:hover {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.4);
}

.crproweb-tech-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.crproweb-tech-icon:nth-child(2) {
    top: 15%;
    right: 15%;
    animation-delay: -1s;
}

.crproweb-tech-icon:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: -2s;
}

.crproweb-tech-icon:nth-child(4) {
    bottom: 15%;
    right: 10%;
    animation-delay: -3s;
}

.crproweb-tech-icon:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: -1.5s;
}

.crproweb-tech-icon:nth-child(6) {
    top: 45%;
    right: 8%;
    animation-delay: -2.5s;
}

@keyframes crproweb-techFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-5px) rotate(-2deg); }
    75% { transform: translateY(-10px) rotate(1deg); }
}

.crproweb-about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(167, 139, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(244, 114, 182, 0.1) 0%, transparent 50%);
}

.crproweb-about-code {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    background: rgba(15, 15, 30, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(167, 139, 250, 0.3);
    backdrop-filter: blur(10px);
}

.crproweb-code-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.crproweb-code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: crproweb-codeDotPulse 2s ease-in-out infinite;
}

.crproweb-code-dot:nth-child(1) { background: #f472b6; }
.crproweb-code-dot:nth-child(2) { background: #a78bfa; animation-delay: 0.3s; }
.crproweb-code-dot:nth-child(3) { background: #60a5fa; animation-delay: 0.6s; }

@keyframes crproweb-codeDotPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 15px currentColor; }
}

.crproweb-code-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.crproweb-code-line {
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(147, 197, 253, 0.6), transparent);
    animation: crproweb-codeWrite 3s ease-in-out infinite;
}

.crproweb-code-line:nth-child(1) { width: 90%; }
.crproweb-code-line:nth-child(2) { width: 70%; animation-delay: 0.3s; }
.crproweb-code-line:nth-child(3) { width: 85%; animation-delay: 0.6s; }
.crproweb-code-line:nth-child(4) { width: 60%; animation-delay: 0.9s; }

@keyframes crproweb-codeWrite {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; box-shadow: 0 0 15px rgba(147, 197, 253, 0.4); }
}

/* Right side - Text content */
.crproweb-about-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.crproweb-about-text h3 {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.crproweb-about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.crproweb-about-highlight {
    color: #a78bfa;
    font-weight: 600;
}

/* Stats section */
.crproweb-about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.crproweb-stat-card {
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    animation: crproweb-statFadeIn 0.6s ease-out backwards;
}

.crproweb-stat-card:nth-child(1) { animation-delay: 0.1s; }
.crproweb-stat-card:nth-child(2) { animation-delay: 0.2s; }
.crproweb-stat-card:nth-child(3) { animation-delay: 0.3s; }
.crproweb-stat-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes crproweb-statFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.crproweb-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.crproweb-stat-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.crproweb-stat-card:hover::before {
    opacity: 1;
}

.crproweb-stat-card:hover::after {
    width: 300px;
    height: 300px;
}

.crproweb-stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(167, 139, 250, 0.3);
    box-shadow: 0 15px 50px rgba(167, 139, 250, 0.3);
}

.crproweb-stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    display: block;
    position: relative;
    z-index: 2;
}

.crproweb-stat-card:hover .crproweb-stat-number {
    animation: crproweb-numberPulse 0.6s ease;
}

@keyframes crproweb-numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.crproweb-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Tech stack */
.crproweb-tech-stack {
    margin-top: 60px;
    text-align: center;
}

.crproweb-tech-stack h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
}

.crproweb-tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.crproweb-tech-item {
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.crproweb-tech-item:hover {
    border-color: rgba(167, 139, 250, 0.5);
    color: #a78bfa;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(167, 139, 250, 0.2);
}

/* Floating elements */
.crproweb-float-element {
    position: absolute;
    animation: crproweb-floatAround 10s ease-in-out infinite;
}

.crproweb-float-1 {
    top: 15%;
    right: 10%;
    font-size: 40px;
    opacity: 0.3;
}

.crproweb-float-2 {
    bottom: 20%;
    left: 5%;
    font-size: 35px;
    opacity: 0.3;
    animation-delay: -3s;
}

.crproweb-float-3 {
    top: 50%;
    right: 5%;
    font-size: 30px;
    opacity: 0.3;
    animation-delay: -6s;
}

@keyframes crproweb-floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(5deg); }
    50% { transform: translate(-10px, 10px) rotate(-5deg); }
    75% { transform: translate(10px, 10px) rotate(3deg); }
}

@media (max-width: 1024px) {
    .crproweb-about-container {
        padding: 0 40px;
    }

    .crproweb-about-title {
        font-size: 42px;
    }

    .crproweb-about-grid-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .crproweb-about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .crproweb-about-visual {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .crproweb-about-stats {
        grid-template-columns: 1fr;
    }

    .crproweb-about-title {
        font-size: 32px;
    }
}
@media (max-width: 768px){
	.crproweb-about-page-mission-grid {
		display: block !important;
	}
	.crproweb-about-page-mission-card{
		margin-bottom: 30px;
	}
}

@media (max-width: 480px){
	.crproweb-about-page-mission-grid {
		display: block !important;
	}
	.crproweb-about-page-mission-card{
		margin-bottom: 30px;
	}
}

/**
*
*   @ It's for Review section styles
*
*/
/* Testimonials Section - Main Container */
.crproweb-testimonials {
	position: relative;
	min-height: 100vh;
	padding: 120px 0;
	overflow: hidden;
	background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
}

/* Background Animation Layer */
.crproweb-testimonials-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(circle at 20% 20%, rgba(167, 139, 250, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(244, 114, 182, 0.1) 0%, transparent 50%);
	animation: crproweb-testimonials-bgShift 15s ease-in-out infinite;
}

@keyframes crproweb-testimonials-bgShift {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 0.8; }
}

/* Container */
.crproweb-testimonials-container {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Section */
.crproweb-testimonials-header {
	text-align: center;
	margin-bottom: 80px;
}

/* Section Label */
.crproweb-testimonials-label {
	display: inline-block;
	padding: 10px 30px;
	border-radius: 50px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 30px;
	backdrop-filter: blur(10px);
	font-weight: 600;
	animation: crproweb-testimonials-labelFloat 3s ease-in-out infinite;
}

@keyframes crproweb-testimonials-labelFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}

/* Section Title */
.crproweb-testimonials-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

/* Section Subtitle */
.crproweb-testimonials-subtitle {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.6);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Testimonials Grid */
.crproweb-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

/* Testimonial Card */
.crproweb-testimonial-card {
	position: relative;
	padding: 40px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 25px;
	backdrop-filter: blur(20px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	animation: crproweb-testimonials-cardFadeIn 0.6s ease-out backwards;
}

/* Card Staggered Animation */
.crproweb-testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.crproweb-testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.crproweb-testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.crproweb-testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.crproweb-testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.crproweb-testimonial-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes crproweb-testimonials-cardFadeIn {
	0% {
		opacity: 0;
		transform: translateY(30px) scale(0.95);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Card Top Border Effect */
.crproweb-testimonial-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	opacity: 0;
	transition: opacity 0.4s;
}

/* Card Quote Mark */
.crproweb-testimonial-card::after {
	content: '"';
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 120px;
	font-family: Georgia, serif;
	line-height: 1;
	z-index: 0;
}

/* Card Hover Effects */
.crproweb-testimonial-card:hover::before {
	opacity: 1;
}

.crproweb-testimonial-card:hover {
	transform: translateY(-10px);
}

/* Testimonial Content */
.crproweb-testimonial-content {
	position: relative;
	z-index: 2;
}

/* Rating Stars */
.crproweb-testimonial-rating {
	display: flex;
	gap: 5px;
	margin-bottom: 20px;
}

.crproweb-testimonial-star {
	font-size: 20px;
	color: #fbbf24;
	animation: crproweb-testimonials-starTwinkle 2s ease-in-out infinite;
}

.crproweb-testimonial-star:nth-child(1) { animation-delay: 0s; }
.crproweb-testimonial-star:nth-child(2) { animation-delay: 0.1s; }
.crproweb-testimonial-star:nth-child(3) { animation-delay: 0.2s; }
.crproweb-testimonial-star:nth-child(4) { animation-delay: 0.3s; }
.crproweb-testimonial-star:nth-child(5) { animation-delay: 0.4s; }

@keyframes crproweb-testimonials-starTwinkle {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.2); opacity: 0.8; }
}

/* Testimonial Text */
.crproweb-testimonial-text {
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 30px;
}

/* Author Section */
.crproweb-testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

/* Avatar */
.crproweb-testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	position: relative;
}
.crproweb-testimonials-grid .crproweb-testimonial-author .crproweb-testimonial-avatar img {
	height: inherit;
}

.crproweb-testimonial-avatar::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transform: rotate(45deg);
	animation: crproweb-testimonials-avatarShine 3s ease-in-out infinite;
}

@keyframes crproweb-testimonials-avatarShine {
	0%, 100% { transform: translateX(-100%) rotate(45deg); }
	50% { transform: translateX(100%) rotate(45deg); }
}

.crproweb-testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Author Info */
.crproweb-testimonial-info h4 {
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 5px;
}

.crproweb-testimonial-info p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

/* Verified Badge */
.crproweb-testimonial-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.3s ease;
}

.crproweb-testimonial-card:hover .crproweb-testimonial-badge {
	opacity: 1;
	transform: scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
	.crproweb-testimonials {
		padding: 80px 0;
	}

	.crproweb-testimonials-title {
		font-size: 36px;
	}

	.crproweb-testimonials-grid {
		grid-template-columns: 1fr;
	}
}

/**
*
*   @ It's for Footer section styles
*
*/
/* Devs Zon Footer Styles */

.crproweb-footer {
    position: relative;
    background: linear-gradient(180deg, #0f0f1e 0%, #1a1a2e 50%, #0f0f1e 100%);
    color: rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

/* Animated Background */
.crproweb-footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.crproweb-footer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(167, 139, 250, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(244, 114, 182, 0.08) 0%, transparent 50%);
    animation: crproweb-footer-glow 15s ease-in-out infinite;
}

@keyframes crproweb-footer-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.crproweb-footer-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
    animation: crproweb-footer-float 20s ease-in-out infinite;
}

.crproweb-footer-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.crproweb-footer-particle:nth-child(2) {
    top: 60%;
    left: 30%;
    animation-delay: 4s;
}

.crproweb-footer-particle:nth-child(3) {
    top: 40%;
    right: 20%;
    animation-delay: 2s;
}

.crproweb-footer-particle:nth-child(4) {
    bottom: 30%;
    right: 40%;
    animation-delay: 6s;
}

.crproweb-footer-particle:nth-child(5) {
    top: 80%;
    left: 60%;
    animation-delay: 3s;
}

@keyframes crproweb-footer-float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-30px) translateX(20px); }
}

/* Main Footer */
.crproweb-footer-main {
    position: relative;
    z-index: 2;
    padding: 80px 0 4px;
}

.crproweb-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Footer Top */
.crproweb-footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Section */
.crproweb-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.crproweb-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    width: fit-content;
}

/* .crproweb-footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(244, 114, 182, 0.3));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(167, 139, 250, 0.3);
    transition: all 0.3s;
}

.crproweb-footer-logo:hover .crproweb-footer-logo-icon {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 8px 30px rgba(167, 139, 250, 0.5);
} */

.crproweb-footer-logo-text {
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 0%, #e0d4ff 50%, #ffc4e8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.crproweb-footer-tagline {
    /* font-size: 15px;
    color: rgba(255, 255, 255, 0.6); */
    line-height: 1.6;
    margin: 0;
}

/* Social Media */
.crproweb-footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.crproweb-social-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}


.crproweb-social-link {
    width: 44px;
    height: 44px;
    background: white;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 20px;
}

.crproweb-social-link:hover {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(244, 114, 182, 0.3));
    border-color: rgba(167, 139, 250, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(167, 139, 250, 0.3);
}

/* Footer Columns */
.crproweb-footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.crproweb-footer-column {
    display: flex;
    flex-direction: column;
}

/* .crproweb-footer-widget {
    margin-bottom: 30px;
} */

.crproweb-footer-widget-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.crproweb-footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.crproweb-footer-widget ul li {
    margin-bottom: 12px;
}

.crproweb-footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.crproweb-footer-widget ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.crproweb-footer-widget ul li a:hover {
    color: rgba(255, 255, 255, 1);
    padding-left: 8px;
}

.crproweb-footer-widget ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Newsletter */
.crproweb-footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.crproweb-newsletter-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
}

.crproweb-newsletter-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.crproweb-newsletter-form {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.crproweb-newsletter-input {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.crproweb-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.crproweb-newsletter-input:focus {
    border-color: rgba(167, 139, 250, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.1);
}

.crproweb-newsletter-button {
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(244, 114, 182, 0.3));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.crproweb-newsletter-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.crproweb-newsletter-button:hover::before {
    left: 100%;
}

.crproweb-newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(167, 139, 250, 0.4);
}

/* Footer Bottom */
.crproweb-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.crproweb-footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.crproweb-footer-links ul {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.crproweb-footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.crproweb-footer-links ul li a:hover {
    color: rgba(255, 255, 255, 1);
}

/* Back to Top Button */
.crproweb-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(244, 114, 182, 0.3));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(167, 139, 250, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.crproweb-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.crproweb-back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(167, 139, 250, 0.5);
}

.crproweb-back-to-top-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Compact Contact Form Styles */
.wpcf7-form {
    max-width: 400px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.wpcf7-form textarea {
    height: 80px;
    resize: vertical;
}

.wpcf7-form label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.wpcf7-form .wpcf7-checkbox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-bottom: 10px;
}

.wpcf7-form .wpcf7-list-item {
    margin: 0;
    font-size: 13px;
}

.wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(244, 114, 182, 0.3));
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.wpcf7-form input[type="submit"]:hover {
    background: #555;
}
.crpw-footer-submit-btn {
    position: relative;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
    .crproweb-footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .crproweb-footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .crproweb-footer-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .crproweb-footer-main {
        padding: 60px 0 3px;
    }

    .crproweb-footer-container {
        padding: 0 30px;
    }

    .crproweb-footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .crproweb-footer-top {
        gap: 30px;
        padding-bottom: 40px;
        margin-bottom: 30px;
    }

    .crproweb-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .crproweb-footer-links ul {
        flex-direction: column;
        gap: 12px;
    }

    .crproweb-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .crproweb-newsletter-form {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .crproweb-footer-social {
        gap: 10px;
    }

    .crproweb-social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Widget Specific Styles */
.widget_text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.widget_nav_menu ul li {
    margin-bottom: 12px;
}

.widget_recent_entries ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.widget_recent_entries ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget_recent_entries ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.widget_recent_entries ul li a:hover {
    color: white;
}

/* Contact Info Widget Styles */
.crproweb-footer-widget .textwidget p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.crproweb-footer-widget .textwidget a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.crproweb-footer-widget .textwidget a:hover {
    color: white;
}



/**
*   =========================================================================================
*   @ It's for About page styles ###################################@@@@@@@@@@@@@@@@@@@
*   =========================================================================================
*/
.crproweb-about-page-section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.crproweb-about-page-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #8b5cf6;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.crproweb-about-page-section-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crproweb-about-page-section-title.crproweb-about-page-centered {
    text-align: center;
}

.crproweb-about-page-section-text {
    font-size: 18px;
    line-height: 1.8;
    color: #a5b4fc;
    margin-bottom: 20px;
}


/* ============================================================
   ABOUT US SECTION
   ============================================================ */
.crproweb-about-page-about-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a0b2e 100%);
}

.crproweb-about-page-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* About Visual Side */
.crproweb-about-page-about-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crproweb-about-page-floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: crprowebOrbFloat 6s infinite ease-in-out;
}

.crproweb-about-page-orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.crproweb-about-page-orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.3), transparent);
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.crproweb-about-page-orb-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3), transparent);
    top: 40%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes crprowebOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.crproweb-about-page-code-window {
    position: relative;
    width: 400px;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    overflow: hidden;
    z-index: 10;
}

.crproweb-about-page-window-header {
    padding: 12px 16px;
    background: rgba(30, 30, 45, 0.8);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    gap: 8px;
}

.crproweb-about-page-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.crproweb-about-page-dot.crproweb-about-page-red { background: #ff5f56; }
.crproweb-about-page-dot.crproweb-about-page-yellow { background: #ffbd2e; }
.crproweb-about-page-dot.crproweb-about-page-green { background: #27c93f; }

.crproweb-about-page-code-content {
    padding: 24px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #a5b4fc;
}

.crproweb-about-page-code-line {
    margin-bottom: 8px;
    animation: crprowebTypeLine 0.5s ease-out forwards;
    opacity: 0;
}

.crproweb-about-page-code-line:nth-child(1) { animation-delay: 0.2s; }
.crproweb-about-page-code-line:nth-child(2) { animation-delay: 0.4s; }
.crproweb-about-page-code-line:nth-child(3) { animation-delay: 0.6s; }
.crproweb-about-page-code-line:nth-child(4) { animation-delay: 0.8s; }
.crproweb-about-page-code-line:nth-child(5) { animation-delay: 1s; }

@keyframes crprowebTypeLine {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.crproweb-about-page-indent { padding-left: 24px; }
.crproweb-about-page-keyword { color: #c084fc; font-weight: 600; }
.crproweb-about-page-string { color: #60a5fa; }

/* About Content Side */
.crproweb-about-page-about-content {
    padding: 40px 0;
}

.crproweb-about-page-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.crproweb-about-page-stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.crproweb-about-page-stat-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-5px);
}

.crproweb-about-page-stat-number {
    font-size: 48px;
    font-weight: 800;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.crproweb-about-page-stat-label {
    font-size: 14px;
    color: #94a3b8;
    letter-spacing: 0.5px;
}


/* ============================================================
   OUR MISSION SECTION
   ============================================================ */
.crproweb-about-page-mission-section {
    padding: 120px 0;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1), transparent 70%),
                linear-gradient(180deg, #1a0b2e 0%, #0a0a0f 100%);
}

.crproweb-about-page-mission-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.crproweb-about-page-mission-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #a5b4fc;
    margin-top: 20px;
}

.crproweb-about-page-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.crproweb-about-page-mission-card {
    padding: 40px 30px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.crproweb-about-page-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.crproweb-about-page-mission-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.crproweb-about-page-mission-card:hover::before {
    opacity: 1;
}

.crproweb-about-page-card-icon-wrapper {
    color: white;
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.crproweb-about-page-icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    animation: crprowebPulse 2s infinite ease-in-out;
}

@keyframes crprowebPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 0; }
}

.crproweb-about-page-mission-card .crproweb-about-page-card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    color: #8b5cf6;
    padding: 20px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.crproweb-about-page-mission-card:hover .crproweb-about-page-card-icon {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.1) rotate(10deg);
}

.crproweb-about-page-mission-card .crproweb-about-page-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.crproweb-about-page-mission-card .crproweb-about-page-card-text {
    font-size: 16px;
    line-height: 1.7;
    color: #94a3b8;
}


/* ============================================================
   WHAT WE DO SECTION (SERVICES)
   ============================================================ */
.crproweb-about-page-services-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a0b2e 50%, #0a0a0f 100%);
}

.crproweb-about-page-services-header {
    text-align: center;
    margin-bottom: 80px;
}

.crproweb-about-page-services-grid {
    display: grid;
    gap: 30px;
}

.crproweb-about-page-service-item {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding: 50px;
    background: rgba(17, 24, 39, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    overflow: hidden;
}

.crproweb-about-page-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.8s ease;
}

.crproweb-about-page-service-item:hover::before {
    left: 100%;
}

.crproweb-about-page-service-item:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
}

.crproweb-about-page-service-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
}

.crproweb-about-page-service-item:hover .crproweb-about-page-service-glow {
    opacity: 1;
}

.crproweb-about-page-service-number {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    opacity: 0.3;
}

.crproweb-about-page-service-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.crproweb-about-page-service-description {
    font-size: 16px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 24px;
}

.crproweb-about-page-service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.crproweb-about-page-service-features li {
    font-size: 14px;
    color: #a5b4fc;
    padding-left: 24px;
    position: relative;
}

.crproweb-about-page-service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 700;
}


/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.crproweb-about-page-why-section {
    padding: 120px 0;
    position: relative;
    background: radial-gradient(ellipse at 80% 50%, rgba(236, 72, 153, 0.1), transparent 70%),
                linear-gradient(180deg, #1a0b2e 0%, #0a0a0f 100%);
}

.crproweb-about-page-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Why Content Side */
.crproweb-about-page-why-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.crproweb-about-page-why-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: start;
}

.crproweb-about-page-why-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crproweb-about-page-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.crproweb-about-page-why-item:hover .crproweb-about-page-icon-bg {
    opacity: 0.3;
    transform: scale(1.2);
}

.crproweb-about-page-icon-text {
    position: relative;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.crproweb-about-page-why-text h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.crproweb-about-page-why-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #94a3b8;
}

/* Why Visual Side */
.crproweb-about-page-why-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crproweb-about-page-comparison-box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 40px;
    width: 100%;
    padding: 40px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    z-index: 10;
}

.crproweb-about-page-comparison-divider {
    background: linear-gradient(180deg, transparent, #8b5cf6, transparent);
}

.crproweb-about-page-comparison-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.crproweb-about-page-comp-label {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.crproweb-about-page-them .crproweb-about-page-comp-label {
    color: #64748b;
}

.crproweb-about-page-us .crproweb-about-page-comp-label {
    color: #8b5cf6;
}

.crproweb-about-page-comp-feature {
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.crproweb-about-page-fade {
    background: rgba(100, 116, 139, 0.1);
    border: 1px solid rgba(100, 116, 139, 0.2);
    color: #64748b;
}

.crproweb-about-page-glow {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #c084fc;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.crproweb-about-page-glow:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.05);
}

.crproweb-about-page-energy-field {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent);
    border-radius: 50%;
    filter: blur(80px);
    animation: crprowebEnergyPulse 4s infinite ease-in-out;
}

@keyframes crprowebEnergyPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 0.6; }
}


/* ============================================================
   GET IN TOUCH SECTION (CONTACT)
   ============================================================ */
.crproweb-about-page-contact-section {
    padding: 120px 0 100px;
    position: relative;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a0b2e 100%);
}

.crproweb-about-page-contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.crproweb-about-page-contact-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #a5b4fc;
    margin-top: 20px;
}

.crproweb-about-page-contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Cards */
.crproweb-about-page-contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.crproweb-about-page-info-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 24px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.crproweb-about-page-info-card:hover {
    background: rgba(17, 24, 39, 0.8);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateX(5px);
}

.crproweb-about-page-info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
}

.crproweb-about-page-info-icon svg {
    width: 28px;
    height: 28px;
    color: #8b5cf6;
}

.crproweb-about-page-info-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #c084fc;
    margin-bottom: 8px;
}

.crproweb-about-page-info-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}

/* Contact Form */
.crproweb-about-page-contact-form-wrapper {
    padding: 50px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.crproweb-about-page-contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.crproweb-about-page-form-group {
    position: relative;
}

.crproweb-about-page-form-input {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(139, 92, 246, 0.2);
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.crproweb-about-page-form-input::placeholder {
    color: #64748b;
}

.crproweb-about-page-form-input:focus {
    border-bottom-color: #8b5cf6;
}

.crproweb-about-page-input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    transition: width 0.5s ease;
}

.crproweb-about-page-form-input:focus ~ .crproweb-about-page-input-line {
    width: 100%;
}

textarea.crproweb-about-page-form-input {
    resize: vertical;
    min-height: 120px;
}

.crproweb-about-page-submit-btn {
    position: relative;
    padding: 18px 48px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.crproweb-about-page-btn-text {
    position: relative;
    z-index: 2;
}

.crproweb-about-page-btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.crproweb-about-page-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.5);
}

.crproweb-about-page-submit-btn:hover .crproweb-about-page-btn-glow {
    left: 100%;
}

.crproweb-about-page-submit-btn:active {
    transform: translateY(0);
}


/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .crproweb-about-page-section-title {
        font-size: 42px;
    }

    .crproweb-about-page-about-grid,
    .crproweb-about-page-why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .crproweb-about-page-mission-grid {
        grid-template-columns: 1fr;
    }

    .crproweb-about-page-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .crproweb-about-page-service-item {
        grid-template-columns: 80px 1fr;
        padding: 40px 30px;
    }

    .crproweb-about-page-service-number {
        font-size: 56px;
    }

    .crproweb-about-page-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile - 640px and below */
@media (max-width: 640px) {
    .crproweb-about-page-section-title {
        font-size: 32px;
    }

    .crproweb-about-page-section-text {
        font-size: 16px;
    }

    .crproweb-about-page-about-section,
    .crproweb-about-page-mission-section,
    .crproweb-about-page-services-section,
    .crproweb-about-page-why-section,
    .crproweb-about-page-contact-section {
        padding: 80px 0;
    }

    .crproweb-about-page-code-window {
        width: 100%;
    }

    .crproweb-about-page-service-item {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 20px;
    }

    .crproweb-about-page-service-number {
        font-size: 48px;
    }

    .crproweb-about-page-service-title {
        font-size: 24px;
    }

    .crproweb-about-page-service-features {
        grid-template-columns: 1fr;
    }

    .crproweb-about-page-why-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .crproweb-about-page-why-icon {
        margin: 0 auto;
    }

    .crproweb-about-page-comparison-box {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .crproweb-about-page-comparison-divider {
        height: 2px;
        background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
    }

    .crproweb-about-page-contact-form-wrapper {
        padding: 30px 20px;
    }

    .crproweb-about-page-submit-btn {
        width: 100%;
    }
}



/**
*   =========================================================================================
*   @ It's for Service WordPress dev styles ###################################@@@@@@@@@@@@@@@@@@@
*   =========================================================================================
*/

.crproweb-service-wp-section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.crproweb-service-wp-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #8b5cf6;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.crproweb-service-wp-section-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #c084fc 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crproweb-service-wp-section-title.crproweb-service-wp-centered {
    text-align: center;
}

.crproweb-service-wp-section-text {
    font-size: 18px;
    line-height: 1.8;
    color: #a5b4fc;
    margin-bottom: 20px;
}


/* ============================================================
   SERVICE OVERVIEW SECTION
   ============================================================ */
.crproweb-service-wp-overview-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a0b2e 100%);
}

.crproweb-service-wp-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Overview Content */
.crproweb-service-wp-overview-content {
    padding: 40px 0;
}

.crproweb-service-wp-key-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.crproweb-service-wp-metric-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.crproweb-service-wp-metric-card:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-5px);
}

.crproweb-service-wp-metric-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
}

.crproweb-service-wp-metric-icon svg {
    width: 24px;
    height: 24px;
    color: #8b5cf6;
}

.crproweb-service-wp-metric-number {
    font-size: 32px;
    font-weight: 800;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.crproweb-service-wp-metric-label {
    font-size: 13px;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

/* Overview Visual */
.crproweb-service-wp-overview-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crproweb-service-wp-wp-logo-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crproweb-service-wp-logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent);
    filter: blur(60px);
    animation: crprowebWpLogoGlow 4s infinite ease-in-out;
}

@keyframes crprowebWpLogoGlow {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.crproweb-service-wp-wp-logo {
    position: relative;
    width: 150px;
    height: 150px;
    color: #8b5cf6;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
    animation: crprowebWpLogoFloat 6s infinite ease-in-out;
    z-index: 10;
}

@keyframes crprowebWpLogoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.crproweb-service-wp-orbit-ring {
    position: absolute;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: crprowebOrbitRotate 20s linear infinite;
}

.crproweb-service-wp-ring-1 {
    width: 200px;
    height: 200px;
    animation-duration: 15s;
}

.crproweb-service-wp-ring-2 {
    width: 250px;
    height: 250px;
    animation-duration: 20s;
    animation-direction: reverse;
}

.crproweb-service-wp-ring-3 {
    width: 300px;
    height: 300px;
    animation-duration: 25s;
}

@keyframes crprowebOrbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.crproweb-service-wp-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.crproweb-service-wp-tech-badge {
    position: absolute;
    padding: 8px 16px;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #c084fc;
    backdrop-filter: blur(10px);
    animation: crprowebBadgeFloat 4s infinite ease-in-out;
}

.crproweb-service-wp-badge-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.crproweb-service-wp-badge-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.crproweb-service-wp-badge-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.crproweb-service-wp-badge-4 {
    bottom: 25%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes crprowebBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}


/* ============================================================
   WHY WORDPRESS SECTION
   ============================================================ */
.crproweb-service-wp-why-section {
    padding: 120px 0;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1), transparent 70%),
                linear-gradient(180deg, #1a0b2e 0%, #0a0a0f 100%);
}

.crproweb-service-wp-why-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.crproweb-service-wp-why-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #a5b4fc;
    margin-top: 20px;
}

.crproweb-service-wp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.crproweb-service-wp-why-card {
    padding: 40px 30px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.crproweb-service-wp-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.crproweb-service-wp-why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.crproweb-service-wp-why-card:hover::before {
    opacity: 1;
}

.crproweb-service-wp-card-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.3;
}

.crproweb-service-wp-card-heading {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.crproweb-service-wp-card-description {
    font-size: 15px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 20px;
}

.crproweb-service-wp-card-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 8px;
    font-size: 13px;
    color: #c084fc;
}

.crproweb-service-wp-card-highlight svg {
    width: 18px;
    height: 18px;
    color: #8b5cf6;
}

@media (max-width: 768px){
	.crproweb-service-wp-why-grid, .crproweb-service-wp-offer-grid, .crproweb-start-project-grid {
		display: block !important;
	}
	.crproweb-service-wp-why-card, .crproweb-service-wp-offer-card, .crproweb-start-project-card {
		margin-bottom: 30px;
	}
}

@media (max-width: 480px){
	.crproweb-service-wp-why-grid, .crproweb-service-wp-offer-grid, .crproweb-start-project-grid {
		display: block !important;
	}
	.crproweb-service-wp-why-card, .crproweb-service-wp-offer-card, .crproweb-start-project-card{
		margin-bottom: 30px;
	}
}

/* ============================================================
   WHAT WE OFFER SECTION
   ============================================================ */
.crproweb-service-wp-offer-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a0b2e 50%, #0a0a0f 100%);
}

.crproweb-service-wp-offer-header {
    text-align: center;
    margin-bottom: 80px;
}

.crproweb-service-wp-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.crproweb-service-wp-offer-card {
    padding: 40px 30px;
    background: rgba(17, 24, 39, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.crproweb-service-wp-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.8s ease;
}

.crproweb-service-wp-offer-card:hover::before {
    left: 100%;
}

.crproweb-service-wp-offer-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.crproweb-service-wp-offer-card.crproweb-service-wp-featured {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
}

.crproweb-service-wp-offer-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 14px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.crproweb-service-wp-offer-card:hover .crproweb-service-wp-offer-icon {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.crproweb-service-wp-offer-icon svg {
    width: 32px;
    height: 32px;
    color: #8b5cf6;
}

.crproweb-service-wp-offer-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.crproweb-service-wp-offer-description {
    font-size: 15px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 24px;
}

.crproweb-service-wp-offer-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.crproweb-service-wp-offer-features li {
    font-size: 14px;
    color: #a5b4fc;
    padding-left: 24px;
    position: relative;
}

.crproweb-service-wp-offer-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 700;
}


/* ============================================================
   OUR PROCESS SECTION (TIMELINE)
   ============================================================ */
.crproweb-service-wp-process-section {
    padding: 120px 0;
    position: relative;
    background: radial-gradient(ellipse at 80% 50%, rgba(236, 72, 153, 0.1), transparent 70%),
                linear-gradient(180deg, #1a0b2e 0%, #0a0a0f 100%);
}

.crproweb-service-wp-process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.crproweb-service-wp-process-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #a5b4fc;
    margin-top: 20px;
}

.crproweb-service-wp-process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.crproweb-service-wp-timeline-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.crproweb-service-wp-timeline-item:last-child {
    margin-bottom: 0;
}

.crproweb-service-wp-timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.crproweb-service-wp-marker-dot {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border: 4px solid #0a0a0f;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    position: relative;
    z-index: 10;
}

.crproweb-service-wp-marker-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, #8b5cf6, transparent);
    margin-top: 10px;
}

.crproweb-service-wp-timeline-item:last-child .crproweb-service-wp-marker-line {
    display: none;
}

.crproweb-service-wp-timeline-content {
    padding: 30px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.crproweb-service-wp-timeline-content:hover {
    background: rgba(17, 24, 39, 0.8);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateX(10px);
}

.crproweb-service-wp-timeline-number {
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 60px;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
}

.crproweb-service-wp-timeline-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.crproweb-service-wp-timeline-description {
    font-size: 16px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 20px;
}

.crproweb-service-wp-timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.crproweb-service-wp-timeline-tags span {
    padding: 6px 14px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #c084fc;
}


/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.crproweb-service-wp-choose-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a0b2e 100%);
}

.crproweb-service-wp-choose-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.crproweb-service-wp-choose-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #a5b4fc;
    margin-top: 20px;
}

.crproweb-service-wp-choose-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

/* Left Showcase */
.crproweb-service-wp-expertise-showcase {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.crproweb-service-wp-showcase-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.crproweb-service-wp-showcase-item:hover {
    background: rgba(17, 24, 39, 0.8);
    border-color: rgba(139, 92, 246, 0.4);
    transform: scale(1.05);
}

.crproweb-service-wp-showcase-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
}

.crproweb-service-wp-showcase-icon svg {
    width: 28px;
    height: 28px;
    color: #8b5cf6;
}

.crproweb-service-wp-showcase-number {
    font-size: 36px;
    font-weight: 800;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.crproweb-service-wp-showcase-label {
    font-size: 14px;
    color: #94a3b8;
}

/* Right Advantages */
.crproweb-service-wp-advantage-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.crproweb-service-wp-advantage-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    padding: 24px;
    background: rgba(17, 24, 39, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.crproweb-service-wp-advantage-item:hover {
    background: rgba(17, 24, 39, 0.6);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateX(10px);
}

.crproweb-service-wp-advantage-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
}

.crproweb-service-wp-advantage-icon svg {
    width: 24px;
    height: 24px;
    color: #8b5cf6;
}

.crproweb-service-wp-advantage-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.crproweb-service-wp-advantage-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}

/* CTA Banner */
.crproweb-service-wp-cta-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.crproweb-service-wp-cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    filter: blur(80px);
}

.crproweb-service-wp-cta-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.crproweb-service-wp-cta-content p {
    font-size: 16px;
    color: #a5b4fc;
}

.crproweb-service-wp-cta-actions {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 10;
}

.crproweb-service-wp-cta-primary,
.crproweb-service-wp-cta-secondary {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.crproweb-service-wp-cta-primary {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: #fff;
    white-space: nowrap;
}

.crproweb-service-wp-cta-primary svg {
    width: 20px;
    height: 20px;
}

.crproweb-service-wp-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.5);
}

.crproweb-service-wp-cta-secondary {
    background: transparent;
    border: 2px solid rgba(139, 92, 246, 0.5);
    color: #fff;
}

.crproweb-service-wp-cta-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.8);
}

.crproweb-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.crproweb-popup-box {
    background: #fff;
    width: 90%;
    max-width: 550px;
    padding: 25px;
    border-radius: 12px;
    position: relative;
}
.crproweb-popup-close {
    position: absolute;
    top: 10px; right: 10px;
    background: transparent;
    border: none;
    font-size: 26px;
    cursor: pointer;
}
.crproweb-consultation-form {
    font-family: 'Inter', sans-serif;
    padding: 20px 10px;
}

.crproweb-form-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    color: #1a1a1a;
}

.crproweb-form-subtitle {
    font-size: 14px;
    text-align: center;
    color: #555;
    margin-bottom: 25px;
}

.crproweb-consultation-form label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #2f2f2f;
}

.crproweb-consultation-form input,
.crproweb-consultation-form select,
.crproweb-consultation-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border: 1.4px solid #d9d9d9;
    border-radius: 12px;
    background: #f9f9f9;
    transition: all 0.25s ease;
    font-size: 15px;
}

.crproweb-consultation-form input:focus,
.crproweb-consultation-form select:focus,
.crproweb-consultation-form textarea:focus {
    border-color: #4b7bec;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(75,123,236,0.15);
    outline: none;
}

.crproweb-consultation-form textarea {
    height: 130px;
    resize: none;
}

.crproweb-row {
    display: flex;
    gap: 18px;
}

.crproweb-col {
    flex: 1;
}

.crproweb-submit-wrap {
    text-align: center;
    margin-top: 10px;
}

.crproweb-submit-wrap input[type="submit"] {
    background: #4b7bec;
    color: white;
    padding: 14px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: 0.25s;
    letter-spacing: 0.3px;
}

.crproweb-submit-wrap input[type="submit"]:hover {
    background: #3867d6;
    transform: translateY(-2px);
}
.crproweb-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Prevents cutting on small screens */
    z-index: 99999;
    overflow-y: auto; /* Allow scroll if popup overflows screen */
}

.crproweb-popup-box {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    padding: 35px;
    position: relative;
    animation: popupFadeIn 0.25s ease-out;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

@keyframes popupFadeIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.crproweb-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.crproweb-popup-content h3 {
    margin-top: 0;
    font-size: 22px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 20px;
}


/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .crproweb-service-wp-section-title {
        font-size: 42px;
    }

    .crproweb-service-wp-overview-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .crproweb-service-wp-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .crproweb-service-wp-offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .crproweb-service-wp-choose-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .crproweb-service-wp-cta-banner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .crproweb-service-wp-key-metrics {
        grid-template-columns: 1fr;
    }
}

/* Mobile - 640px and below */
@media (max-width: 640px) {
    .crproweb-service-wp-section-title {
        font-size: 32px;
    }

    .crproweb-service-wp-section-text {
        font-size: 16px;
    }

    .crproweb-service-wp-overview-section,
    .crproweb-service-wp-why-section,
    .crproweb-service-wp-offer-section,
    .crproweb-service-wp-process-section,
    .crproweb-service-wp-choose-section {
        padding: 80px 0;
    }

    .crproweb-service-wp-why-grid,
    .crproweb-service-wp-offer-grid {
        grid-template-columns: 1fr;
    }

    .crproweb-service-wp-timeline-item {
        grid-template-columns: 40px 1fr;
        gap: 20px;
    }

    .crproweb-service-wp-timeline-number {
        font-size: 40px;
        right: 20px;
    }

    .crproweb-service-wp-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .crproweb-service-wp-cta-primary,
    .crproweb-service-wp-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .crproweb-service-wp-cta-banner {
        padding: 40px 30px;
    }

    .crproweb-service-wp-cta-content h3 {
        font-size: 24px;
    }

    .crproweb-service-wp-cta-content p {
        font-size: 14px;
    }

    .crproweb-service-wp-overview-visual {
        height: 400px;
    }

    .crproweb-service-wp-wp-logo-container {
        width: 250px;
        height: 250px;
    }

    .crproweb-service-wp-wp-logo {
        width: 120px;
        height: 120px;
    }

    .crproweb-service-wp-ring-1 {
        width: 160px;
        height: 160px;
    }

    .crproweb-service-wp-ring-2 {
        width: 200px;
        height: 200px;
    }

    .crproweb-service-wp-ring-3 {
        width: 240px;
        height: 240px;
    }

    .crproweb-service-wp-tech-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .crproweb-service-wp-metric-card {
        flex-direction: column;
        text-align: center;
    }

    .crproweb-service-wp-metric-number {
        font-size: 28px;
    }

    .crproweb-service-wp-card-number {
        font-size: 36px;
    }

    .crproweb-service-wp-card-heading {
        font-size: 20px;
    }

    .crproweb-service-wp-offer-title {
        font-size: 20px;
    }

    .crproweb-service-wp-timeline-title {
        font-size: 22px;
    }

    .crproweb-service-wp-timeline-description {
        font-size: 14px;
    }

    .crproweb-service-wp-timeline-content {
        padding: 24px;
    }

    .crproweb-service-wp-showcase-item {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .crproweb-service-wp-showcase-number {
        font-size: 32px;
    }

    .crproweb-service-wp-advantage-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .crproweb-service-wp-advantage-icon {
        margin: 0 auto;
    }

    .crproweb-service-wp-section-container {
        padding: 0 20px;
    }
}

/* Extra Small Mobile - 480px and below */
@media (max-width: 480px) {
    .crproweb-service-wp-section-title {
        font-size: 28px;
    }

    .crproweb-service-wp-why-header,
    .crproweb-service-wp-offer-header,
    .crproweb-service-wp-process-header,
    .crproweb-service-wp-choose-header {
        margin-bottom: 50px;
    }

    .crproweb-service-wp-overview-visual {
        height: 350px;
    }

    .crproweb-service-wp-cta-banner {
        padding: 30px 20px;
    }

    .crproweb-service-wp-cta-content h3 {
        font-size: 20px;
    }

    .crproweb-service-wp-timeline-tags {
        justify-content: center;
    }
}


/**
*   =========================================================================================
*   @ It's for Maintenance page styles ###################################@@@@@@@@@@@@@@@@@@@
*   =========================================================================================
*/
/* Hero Section */
.crproweb-maintenance-wp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
}

.crproweb-maintenance-wp-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.crproweb-maintenance-wp-hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: crproweb-maintenance-wp-float 20s infinite ease-in-out;
}

.crproweb-maintenance-wp-hero-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    background: #a78bfa;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.crproweb-maintenance-wp-hero-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    background: #f472b6;
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

.crproweb-maintenance-wp-hero-circle:nth-child(3) {
    width: 250px;
    height: 250px;
    background: #60a5fa;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes crproweb-maintenance-wp-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.crproweb-maintenance-wp-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.crproweb-maintenance-wp-hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(167, 139, 250, 0.2);
    border: 2px solid #a78bfa;
    border-radius: 50px;
    color: #a78bfa;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: crproweb-maintenance-wp-pulse 2s infinite;
}

@keyframes crproweb-maintenance-wp-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.crproweb-maintenance-wp-hero-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #a78bfa, #f472b6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: crproweb-maintenance-wp-gradient 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes crproweb-maintenance-wp-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.crproweb-maintenance-wp-hero-subtitle {
    font-size: 20px;
    color: #b4b4c8;
    line-height: 1.6;
    margin-bottom: 40px;
}

.crproweb-maintenance-wp-hero-btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #a78bfa, #ec4899);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.3);
}

.crproweb-maintenance-wp-hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(167, 139, 250, 0.5);
}

/* Services Section */
.crproweb-maintenance-wp-services {
    padding: 120px 20px;
    background: linear-gradient(180deg, #1a1a3e 0%, #0f0f23 100%);
    position: relative;
}

.crproweb-maintenance-wp-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.crproweb-maintenance-wp-services-header {
    text-align: center;
    margin-bottom: 80px;
}

.crproweb-maintenance-wp-services-tag {
    color: #60a5fa;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.crproweb-maintenance-wp-services-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.crproweb-maintenance-wp-services-desc {
    font-size: 18px;
    color: #b4b4c8;
    max-width: 700px;
    margin: 0 auto;
}

.crproweb-maintenance-wp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.crproweb-maintenance-wp-service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.crproweb-maintenance-wp-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.crproweb-maintenance-wp-service-card:hover {
    transform: translateY(-10px);
    border-color: #a78bfa;
    box-shadow: 0 20px 50px rgba(167, 139, 250, 0.2);
}

.crproweb-maintenance-wp-service-card:hover::before {
    opacity: 0.1;
}

.crproweb-maintenance-wp-service-icon {
    font-size: 48px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    animation: crproweb-maintenance-wp-bounce 2s infinite;
}

@keyframes crproweb-maintenance-wp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.crproweb-maintenance-wp-service-card:nth-child(1) .crproweb-maintenance-wp-service-icon { animation-delay: 0s; }
.crproweb-maintenance-wp-service-card:nth-child(2) .crproweb-maintenance-wp-service-icon { animation-delay: 0.2s; }
.crproweb-maintenance-wp-service-card:nth-child(3) .crproweb-maintenance-wp-service-icon { animation-delay: 0.4s; }
.crproweb-maintenance-wp-service-card:nth-child(4) .crproweb-maintenance-wp-service-icon { animation-delay: 0.6s; }
.crproweb-maintenance-wp-service-card:nth-child(5) .crproweb-maintenance-wp-service-icon { animation-delay: 0.8s; }
.crproweb-maintenance-wp-service-card:nth-child(6) .crproweb-maintenance-wp-service-icon { animation-delay: 1s; }
.crproweb-maintenance-wp-service-card:nth-child(7) .crproweb-maintenance-wp-service-icon { animation-delay: 1.2s; }
.crproweb-maintenance-wp-service-card:nth-child(8) .crproweb-maintenance-wp-service-icon { animation-delay: 1.4s; }

.crproweb-maintenance-wp-service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.crproweb-maintenance-wp-service-text {
    font-size: 15px;
    color: #b4b4c8;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Pricing Section */
.crproweb-maintenance-wp-pricing {
    padding: 120px 20px;
    background: #0f0f23;
    position: relative;
}

.crproweb-maintenance-wp-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.crproweb-maintenance-wp-pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.crproweb-maintenance-wp-pricing-tag {
    color: #f472b6;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.crproweb-maintenance-wp-pricing-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.crproweb-maintenance-wp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.crproweb-maintenance-wp-plan-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px 40px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.crproweb-maintenance-wp-plan-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(167, 139, 250, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.crproweb-maintenance-wp-plan-card:hover::before {
    left: 100%;
}

.crproweb-maintenance-wp-plan-card:hover {
    transform: scale(1.05);
    border-color: #a78bfa;
    box-shadow: 0 25px 60px rgba(167, 139, 250, 0.3);
}

.crproweb-maintenance-wp-plan-featured {
    border-color: #a78bfa;
    background: linear-gradient(180deg, rgba(167, 139, 250, 0.1) 0%, rgba(167, 139, 250, 0.05) 100%);
}

.crproweb-maintenance-wp-plan-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #a78bfa, #ec4899);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.crproweb-maintenance-wp-plan-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.crproweb-maintenance-wp-plan-price {
    font-size: 52px;
    font-weight: 900;
    color: #a78bfa;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.crproweb-maintenance-wp-plan-period {
    font-size: 16px;
    color: #b4b4c8;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.crproweb-maintenance-wp-plan-features {
    list-style: none;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.crproweb-maintenance-wp-plan-feature {
    padding: 12px 0;
    color: #e0e0e8;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.crproweb-maintenance-wp-plan-feature::before {
    content: '✓';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    border-radius: 50%;
    margin-right: 15px;
    text-align: center;
    line-height: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.crproweb-maintenance-wp-plan-btn {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #a78bfa, #ec4899);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.crproweb-maintenance-wp-plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(167, 139, 250, 0.4);
}

/* Contact Section */
.crproweb-maintenance-wp-contact {
    padding: 120px 20px;
    background: linear-gradient(135deg, #1a1a3e 0%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.crproweb-maintenance-wp-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.crproweb-maintenance-wp-contact-content {
    position: relative;
    z-index: 1;
}

.crproweb-maintenance-wp-contact-tag {
    color: #60a5fa;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.crproweb-maintenance-wp-contact-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
}

.crproweb-maintenance-wp-contact-text {
    font-size: 18px;
    color: #b4b4c8;
    line-height: 1.7;
    margin-bottom: 40px;
}

.crproweb-maintenance-wp-contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.crproweb-maintenance-wp-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.crproweb-maintenance-wp-contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a78bfa, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.crproweb-maintenance-wp-contact-details h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
}

.crproweb-maintenance-wp-contact-details p {
    font-size: 16px;
    color: #b4b4c8;
}

.crproweb-maintenance-wp-contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.crproweb-maintenance-wp-form-group {
    margin-bottom: 25px;
}

.crproweb-maintenance-wp-form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ffffff;
}

.crproweb-maintenance-wp-form-input,
.crproweb-maintenance-wp-form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.crproweb-maintenance-wp-form-input:focus,
.crproweb-maintenance-wp-form-textarea:focus {
    outline: none;
    border-color: #a78bfa;
    box-shadow: 0 0 0 2px rgba(167, 139, 250, 0.2);
}

.crproweb-maintenance-wp-form-textarea {
    resize: vertical;
    min-height: 150px;
}

.crproweb-maintenance-wp-form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #a78bfa, #ec4899);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.crproweb-maintenance-wp-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(167, 139, 250, 0.4);
}

/* FAQ Section */
.crproweb-maintenance-wp-faq {
    padding: 120px 20px;
    background: #0f0f23;
    position: relative;
}

.crproweb-maintenance-wp-faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.crproweb-maintenance-wp-faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.crproweb-maintenance-wp-faq-tag {
    color: #f472b6;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.crproweb-maintenance-wp-faq-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.crproweb-maintenance-wp-faq-desc {
    font-size: 18px;
    color: #b4b4c8;
    max-width: 700px;
    margin: 0 auto;
}

.crproweb-maintenance-wp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.crproweb-maintenance-wp-faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.crproweb-maintenance-wp-faq-item.active {
    border-color: #a78bfa;
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.2);
}

.crproweb-maintenance-wp-faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.crproweb-maintenance-wp-faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.crproweb-maintenance-wp-faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.crproweb-maintenance-wp-faq-icon::before,
.crproweb-maintenance-wp-faq-icon::after {
    content: '';
    position: absolute;
    background: #a78bfa;
    transition: all 0.3s ease;
}

.crproweb-maintenance-wp-faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.crproweb-maintenance-wp-faq-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.crproweb-maintenance-wp-faq-item.active .crproweb-maintenance-wp-faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.crproweb-maintenance-wp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.crproweb-maintenance-wp-faq-answer-content {
    padding: 0 30px 25px;
    color: #b4b4c8;
    line-height: 1.7;
}

/* CTA Section */
.crproweb-maintenance-wp-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, #1a1a3e 0%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.crproweb-maintenance-wp-cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.crproweb-maintenance-wp-cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.crproweb-maintenance-wp-cta-shape:nth-child(1) {
    width: 500px;
    height: 500px;
    background: #ec4899;
    top: -250px;
    right: -250px;
    animation: crproweb-maintenance-wp-rotate 30s linear infinite;
}

.crproweb-maintenance-wp-cta-shape:nth-child(2) {
    width: 400px;
    height: 400px;
    background: #60a5fa;
    bottom: -200px;
    left: -200px;
    animation: crproweb-maintenance-wp-rotate 25s linear infinite reverse;
}

@keyframes crproweb-maintenance-wp-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.crproweb-maintenance-wp-cta-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #a78bfa, #f472b6, #60a5fa, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: crproweb-maintenance-wp-gradient 5s ease infinite;
    background-size: 200% 200%;
}

.crproweb-maintenance-wp-cta-text {
    font-size: 20px;
    color: #b4b4c8;
    margin-bottom: 45px;
    line-height: 1.7;
}

.crproweb-maintenance-wp-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.crproweb-maintenance-wp-cta-btn-primary {
    padding: 20px 50px;
    background: linear-gradient(135deg, #a78bfa, #ec4899);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.3);
    display: inline-block;
}

.crproweb-maintenance-wp-cta-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(167, 139, 250, 0.5);
}

.crproweb-maintenance-wp-cta-btn-secondary {
    padding: 20px 50px;
    background: transparent;
    color: #a78bfa;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid #a78bfa;
    transition: all 0.4s ease;
    display: inline-block;
}

.crproweb-maintenance-wp-cta-btn-secondary:hover {
    background: rgba(167, 139, 250, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(167, 139, 250, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .crproweb-maintenance-wp-hero-title {
        font-size: 42px;
    }

    .crproweb-maintenance-wp-hero-subtitle {
        font-size: 18px;
    }

    .crproweb-maintenance-wp-services-title,
    .crproweb-maintenance-wp-pricing-title,
    .crproweb-maintenance-wp-contact-title,
    .crproweb-maintenance-wp-faq-title {
        font-size: 36px;
    }

    .crproweb-maintenance-wp-cta-title {
        font-size: 38px;
    }

    .crproweb-maintenance-wp-pricing-grid,
    .crproweb-maintenance-wp-services-grid {
        grid-template-columns: 1fr;
    }

    .crproweb-maintenance-wp-contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .crproweb-maintenance-wp-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .crproweb-maintenance-wp-cta-btn-primary,
    .crproweb-maintenance-wp-cta-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}


/**
*   =========================================================================================
*   @ It's for Get Started page styles ###################################@@@@@@@@@@@@@@@@@@@
*   =========================================================================================
*/

:root {
    --primary: #8a2be2;
    --primary-light: #9d4edd;
    --secondary: #4361ee;
    --dark: #0a0a0f;
    --dark-light: #1a1a2e;
    --text: #f8f9fa;
    --text-light: #adb5bd;
    --success: #4cc9f0;
    --border: rgba(255, 255, 255, 0.1);
}
.crproweb-start-project-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
.crproweb-start-project-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.crproweb-start-project-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.crproweb-start-project-section:last-child {
    border-bottom: none;
}

.crproweb-start-project-hero {
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
    text-align: center;
    padding: 100px 0;
}

.crproweb-start-project-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.crproweb-start-project-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.crproweb-start-project-cta {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.crproweb-start-project-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
}

.crproweb-start-project-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.crproweb-start-project-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.crproweb-start-project-section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.crproweb-start-project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.crproweb-start-project-card {
    background: var(--dark-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--border);
}

.crproweb-start-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.crproweb-start-project-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.crproweb-start-project-card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.crproweb-start-project-card-text {
    color: var(--text-light);
}

.crproweb-start-project-process {
    counter-reset: process-counter;
}

.crproweb-start-project-process-step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.crproweb-start-project-process-step:before {
    counter-increment: process-counter;
    content: counter(process-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
}

.crproweb-start-project-process-content {
    flex: 1;
}

.crproweb-start-project-process-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.crproweb-start-project-form {
    background: var(--dark-light);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.crproweb-start-project-form-group {
    margin-bottom: 25px;
}

.crproweb-start-project-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.crproweb-start-project-form-input,
.crproweb-start-project-form-select,
.crproweb-start-project-form-textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #8a2be2;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.crproweb-start-project-form-input:focus,
.crproweb-start-project-form-select:focus,
.crproweb-start-project-form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.2);
}

.crproweb-start-project-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.crproweb-start-project-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.crproweb-start-project-checkbox {
    margin-right: 10px;
}

.crproweb-start-project-file-upload {
    border: 2px dashed var(--border);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.crproweb-start-project-file-upload:hover {
    border-color: var(--primary);
}

.crproweb-start-project-file-input {
    display: none;
}

.crproweb-start-project-submit-btn {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.crproweb-start-project-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
}

.crproweb-start-project-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.crproweb-start-project-benefit {
    display: flex;
    align-items: center;
    background: var(--dark-light);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.crproweb-start-project-benefit-icon {
    font-size: 1.8rem;
    margin-right: 15px;
    color: var(--success);
}

.crproweb-start-project-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.crproweb-start-project-testimonial {
    background: var(--dark-light);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.crproweb-start-project-testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

.crproweb-start-project-testimonial-author {
    display: flex;
    align-items: center;
}

.crproweb-start-project-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.crproweb-start-project-faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.crproweb-start-project-faq-question {
    padding: 20px;
    background: var(--dark-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.crproweb-start-project-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.crproweb-start-project-faq-item.active .crproweb-start-project-faq-answer {
    padding: 20px;
    max-height: 500px;
}

.crproweb-start-project-faq-toggle {
    transition: transform 0.3s ease;
}

.crproweb-start-project-faq-item.active .crproweb-start-project-faq-toggle {
    transform: rotate(45deg);
}

.crproweb-start-project-final-cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
}

.crproweb-start-project-final-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.crproweb-start-project-final-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}
.crproweb-start-project-form .wpcf7-form {
    max-width: inherit;
}
@media (max-width: 768px) {
    .crproweb-start-project-hero-title {
        font-size: 2.5rem;
    }
    
    .crproweb-start-project-section-title {
        font-size: 2rem;
    }
    
    .crproweb-start-project-process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .crproweb-start-project-process-step:before {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .crproweb-start-project-form {
        padding: 25px;
    }
}
