
.crms-main-container {
    width: 100%;
}

/* Hero Section */
.crms-hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

.crms-parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
    z-index: 1;
}

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

.crms-hero-text {
    padding: 20px;
}

.crms-main-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #0891b2, #0ea5e9, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crms-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}

.crms-hero-subdescription {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 35px;
}

.crms-cta-button {
    background: linear-gradient(135deg, #0891b2, #0ea5e9);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.3);
}

.crms-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(8, 145, 178, 0.4);
}

.crms-hero-image-container {
    position: relative;
    padding: 20px;
}

.crms-hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    max-height: 500px;
    object-fit: cover;
}

.crms-floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(14, 165, 233, 0.2));
    animation: crms-float 6s ease-in-out infinite;
}

.crms-float-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.crms-float-2 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.crms-float-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

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

/* Approach Section */
.crms-approach-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.crms-section-header {
    margin-bottom: 80px;
}

.crms-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    position: relative;
}

.crms-section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.crms-steps-container {
    position: relative;
}

.crms-step-item {
    margin-bottom: 40px;
}

.crms-step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #f3f4f6;
    height: 100%;
}

.crms-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: #0ea5e9;
}

.crms-step-number {
    font-size: 4rem;
    font-weight: 800;
    color: #e5e7eb;
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
    transition: all 0.3s ease;
}

.crms-step-card:hover .crms-step-number {
    color: #0ea5e9;
    opacity: 0.3;
}

.crms-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.crms-step-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.crms-step-icon {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 20px;
}

.crms-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.crms-step-card:hover .crms-icon-img {
    transform: scale(1.1);
}

/* Services Section */
.crms-services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.crms-services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.crms-services-section .container {
    position: relative;
    z-index: 2;
}

.crms-services-grid {
    margin-top: 60px;
}

.crms-service-col {
    margin-bottom: 30px;
}

.crms-service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.crms-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-color: #0ea5e9;
}

.crms-service-img-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.crms-service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.crms-service-card:hover .crms-service-img {
    transform: scale(1.15);
}

.crms-service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.crms-service-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Why Choose Us Section */
.crms-why-choose-section {
    padding: 100px 0;
    background: #ffffff;
}

.crms-why-image-container {
    position: relative;
    padding: 20px;
}

.crms-why-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    max-height: 550px;
    object-fit: cover;
}

.crms-why-shape {
    position: absolute;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(59, 130, 246, 0.2));
    z-index: 1;
}

.crms-shape-1 {
    width: 80%;
    height: 80%;
    top: -20px;
    left: -20px;
}

.crms-shape-2 {
    width: 70%;
    height: 70%;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.15), rgba(14, 165, 233, 0.15));
}

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

.crms-feature-list {
    margin-top: 40px;
}

.crms-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.crms-feature-item:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(59, 130, 246, 0.08));
    transform: translateX(10px);
}

.crms-feature-check {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0891b2, #0ea5e9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.crms-feature-text {
    flex: 1;
}

.crms-feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.crms-feature-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.crms-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.crms-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 40%, rgba(14, 165, 233, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    z-index: 1;
}

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

.crms-cta-box {
    background: #ffffff;
    border-radius: 30px;
    padding: 80px 60px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.crms-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0891b2, #0ea5e9, #3b82f6);
}

.crms-cta-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    animation: crms-pulse 2s ease-in-out infinite;
}

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

.crms-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
}

.crms-cta-text {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.crms-cta-primary-button {
    background: linear-gradient(135deg, #0891b2, #0ea5e9);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(8, 145, 178, 0.3);
}

.crms-cta-primary-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(8, 145, 178, 0.4);
}

.crms-cta-subtext {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #9ca3af;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .crms-main-heading {
        font-size: 2.5rem;
    }

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

    .crms-why-image-container,
    .crms-why-content {
        margin-bottom: 40px;
    }

    .crms-cta-box {
        padding: 60px 40px;
    }
}

@media (max-width: 767px) {
    .crms-main-heading {
        font-size: 2rem;
    }

    .crms-hero-description,
    .crms-hero-subdescription {
        font-size: 1rem;
    }

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

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

    .crms-step-number {
        font-size: 3rem;
    }

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

    .crms-cta-box {
        padding: 40px 25px;
    }
}

/* Parallax Effect Enhancement */
.crms-step-item,
.crms-service-col,
.crms-feature-item {
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.crms-step-item.crms-visible,
.crms-service-col.crms-visible,
.crms-feature-item.crms-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}