
.crms-main-wrapper {
    position: relative;
    background: #0a0a0a;
    color: #ffffff;
    width: 100%;
}

.crms-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

.crms-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/546819/pexels-photo-546819.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.crms-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.1) 0%, rgba(0, 255, 200, 0.1) 100%);
    z-index: 2;
}

.crms-hero-content {
    position: relative;
    z-index: 3;
}

.crms-hero-title {
    font-size: 6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #00d4ff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(0, 212, 255, 0.5);
    animation: crms-glow 3s ease-in-out infinite;
}

.crms-title-underline {
    width: 300px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00d4ff, #00ffcc, transparent);
    margin: 30px auto;
    animation: crms-expand 2s ease-in-out infinite;
}

@keyframes crms-glow {
    0%, 100% { text-shadow: 0 0 80px rgba(0, 212, 255, 0.5); }
    50% { text-shadow: 0 0 120px rgba(0, 255, 204, 0.8); }
}

@keyframes crms-expand {
    0%, 100% { width: 300px; }
    50% { width: 400px; }
}

.crms-geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.crms-shape {
    position: absolute;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.crms-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    border-radius: 50%;
    animation: crms-rotate 20s linear infinite;
}

.crms-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 10%;
    transform: rotate(45deg);
    animation: crms-rotate-reverse 15s linear infinite;
}

.crms-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: crms-float 10s ease-in-out infinite;
}

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

@keyframes crms-rotate-reverse {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

@keyframes crms-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.crms-intro-section {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
}

.crms-section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #00d4ff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.crms-intro-card {
    background: linear-gradient(135deg, rgba(15, 32, 39, 0.8) 0%, rgba(32, 58, 67, 0.8) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.crms-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: crms-pulse 4s ease-in-out infinite;
}

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

.crms-intro-text {
    font-size: 1.25rem;
    line-height: 2;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.crms-services-section {
    padding: 120px 0;
    background: #0f0f0f;
    position: relative;
}

.crms-services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, transparent 48%, rgba(0, 212, 255, 0.03) 49%, rgba(0, 212, 255, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 255, 204, 0.03) 49%, rgba(0, 255, 204, 0.03) 51%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.5;
}

.crms-service-row {
    margin-bottom: 100px;
    position: relative;
}

.crms-service-content {
    padding: 40px;
    position: relative;
}

.crms-service-number {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0, 212, 255, 0.1);
    position: absolute;
    top: -40px;
    left: 0;
    z-index: 0;
    line-height: 1;
}

.crms-service-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.crms-service-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.crms-service-list {
    list-style: none;
    padding: 0;
}

.crms-list-item {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.crms-bullet {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #00d4ff, #00ffcc);
    border-radius: 50%;
    display: inline-block;
    margin-right: 15px;
    margin-top: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.crms-service-image {
    position: relative;
}

.crms-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.crms-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.crms-image-wrapper:hover .crms-img {
    transform: scale(1.1);
}

.crms-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 255, 204, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.crms-image-wrapper:hover .crms-image-overlay {
    opacity: 1;
}

.crms-why-choose-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.crms-why-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
}

.crms-features-row {
    position: relative;
    z-index: 1;
}

.crms-feature-card {
    background: linear-gradient(135deg, rgba(20, 40, 50, 0.6) 0%, rgba(30, 50, 60, 0.6) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.crms-feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.crms-feature-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
}

.crms-feature-card:hover::before {
    opacity: 1;
}

.crms-feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    position: relative;
}

.crms-icon-circle {
    width: 100%;
    height: 100%;
    border: 3px solid #00d4ff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: crms-rotate 10s linear infinite;
}

.crms-icon-circle::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #00ffcc;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px #00ffcc;
}

.crms-icon-text {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.crms-feature-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 20px;
}

.crms-feature-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #b0b0b0;
}

.crms-tools-section {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
}

.crms-tools-intro {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
}

.crms-tool-card {
    background: linear-gradient(135deg, rgba(15, 30, 40, 0.8) 0%, rgba(25, 40, 50, 0.8) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.crms-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.crms-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.crms-tool-card:hover::before {
    left: 100%;
}

.crms-tool-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.crms-tool-number {
    font-size: 2rem;
    font-weight: 900;
    color: #00d4ff;
    margin-right: 20px;
    padding: 10px 20px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.crms-tool-category {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ffcc;
    margin: 0;
}

.crms-tool-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 25px;
}

.crms-tool-list {
    list-style: none;
    padding: 0;
}

.crms-tool-item {
    font-size: 1rem;
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.crms-tool-bullet {
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
    margin-top: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

.crms-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    position: relative;
    overflow: hidden;
}

.crms-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/2004161/pexels-photo-2004161.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover no-repeat;
    opacity: 0.1;
}

.crms-cta-row {
    position: relative;
    z-index: 2;
}

.crms-cta-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.crms-cta-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 50px;
}

.crms-cta-btn {
    padding: 20px 60px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #00d4ff 0%, #00ffcc 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.crms-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.crms-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.6);
}

.crms-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.crms-cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.crms-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d4ff;
}

.crms-particle-1 {
    top: 20%;
    left: 10%;
    animation: crms-particle-float 8s ease-in-out infinite;
}

.crms-particle-2 {
    top: 60%;
    left: 80%;
    animation: crms-particle-float 10s ease-in-out infinite 2s;
}

.crms-particle-3 {
    top: 30%;
    right: 15%;
    animation: crms-particle-float 12s ease-in-out infinite 1s;
}

.crms-particle-4 {
    bottom: 20%;
    left: 60%;
    animation: crms-particle-float 9s ease-in-out infinite 3s;
}

@keyframes crms-particle-float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(50px, -50px); }
    50% { transform: translate(-30px, -80px); }
    75% { transform: translate(-50px, -30px); }
}

@media (max-width: 991px) {
    .crms-hero-title {
        font-size: 4rem;
    }

    .crms-section-title {
        font-size: 2.5rem;
    }

    .crms-service-title {
        font-size: 2rem;
    }

    .crms-cta-title {
        font-size: 3rem;
    }

    .crms-intro-card {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .crms-hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .crms-section-title {
        font-size: 2rem;
    }

    .crms-service-title {
        font-size: 1.5rem;
    }

    .crms-service-number {
        font-size: 4rem;
    }

    .crms-cta-title {
        font-size: 2rem;
    }

    .crms-intro-card {
        padding: 30px;
    }

    .crms-service-content {
        padding: 20px;
    }

    .crms-img {
        height: 300px;
    }
}