
.crms-body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2c3e50;
    overflow-x: hidden;
    line-height: 1.6;
}

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

.crms-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
}

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

.crms-hero-row {
    min-height: 80vh;
}

.crms-hero-content {
    color: white;
    padding: 40px 20px;
}

.crms-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: crms-fadeInUp 1s ease-out;
}

.crms-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: crms-fadeInUp 1s ease-out 0.2s backwards;
}

.crms-hero-graphics {
    position: relative;
    margin-top: 40px;
}

.crms-float-element {
    position: absolute;
    border-radius: 50%;
    animation: crms-float 6s ease-in-out infinite;
}

.crms-float-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: -40px;
    left: 50px;
    opacity: 0.3;
}

.crms-float-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    top: 100px;
    left: 200px;
    opacity: 0.4;
    animation-delay: 2s;
}

.crms-float-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    top: 50px;
    left: 400px;
    opacity: 0.3;
    animation-delay: 4s;
}

.crms-hero-image {
    padding: 20px;
    animation: crms-fadeInRight 1s ease-out 0.4s backwards;
}

.crms-hero-image .crms-img-fluid {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s ease;
}

.crms-hero-image .crms-img-fluid:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

/* Introduction Section */
.crms-intro-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.crms-parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23667eea" d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,122.7C960,139,1056,149,1152,133.3C1248,117,1344,75,1392,53.3L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-size: cover;
}

.crms-intro-container {
    position: relative;
    z-index: 1;
}

.crms-section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    width: 100%;
}

.crms-section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #667eea, #764ba2);
    margin: 20px auto 0;
    border-radius: 2px;
}

.crms-intro-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #5a6c7d;
    line-height: 1.8;
}

/* Services Section */
.crms-services-section {
    padding: 80px 0;
    background: #ffffff;
}

.crms-service-row {
    margin-bottom: 120px;
    display: flex;
    align-items: center;
}

.crms-service-alternate {
    flex-direction: row-reverse;
}

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

.crms-service-number {
    font-size: 6rem;
    font-weight: 900;
    color: #e8eaf6;
    position: absolute;
    top: -20px;
    left: 20px;
    z-index: 0;
    line-height: 1;
}

.crms-service-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.crms-service-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.crms-list-item {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #5a6c7d;
    line-height: 1.6;
}

.crms-list-item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.crms-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.crms-image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.crms-image-wrapper .crms-img-fluid {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

/* Why Choose Us Section */
.crms-why-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.crms-why-section .crms-section-title {
    color: white;
}

.crms-why-section .crms-section-title::after {
    background: linear-gradient(to right, #ffffff, #e0e7ff);
}

.crms-text-center {
    text-align: center;
}

.crms-why-row {
    margin-top: 60px;
}

.crms-why-col {
    margin-bottom: 40px;
}

.crms-why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.crms-why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.crms-why-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.crms-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: crms-pulse 2s ease-in-out infinite;
}

.crms-why-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.crms-why-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Tools Section */
.crms-tools-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.crms-tools-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: #5a6c7d;
    line-height: 1.8;
}

.crms-tools-row {
    margin-top: 60px;
}

.crms-tool-col {
    margin-bottom: 40px;
}

.crms-tool-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.crms-tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.crms-tool-category {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.crms-tool-description {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.crms-tool-item {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #5a6c7d;
    font-size: 1.05rem;
}

.crms-tool-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.crms-cta-content {
    text-align: center;
}

.crms-cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.crms-cta-text {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.crms-cta-button {
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    background: white;
    color: #f5576c;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.crms-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #fff;
}

/* Animations */
@keyframes crms-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes crms-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Responsive Design */
@media (max-width: 991px) {
    .crms-hero-title {
        font-size: 3rem;
    }

    .crms-hero-subtitle {
        font-size: 1.2rem;
    }

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

    .crms-service-row {
        margin-bottom: 80px;
    }

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

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

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

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

    .crms-hero-subtitle {
        font-size: 1.1rem;
    }

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

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

    .crms-service-number {
        font-size: 3rem;
        top: -10px;
        left: 10px;
    }

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

    .crms-service-description {
        font-size: 1rem;
    }

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

    .crms-cta-text {
        font-size: 1.1rem;
    }

    .crms-float-1,
    .crms-float-2,
    .crms-float-3 {
        display: none;
    }
}

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

/* Selection Styles */
::selection {
    background: #667eea;
    color: white;
}

::-moz-selection {
    background: #667eea;
    color: white;
}