:root {
    --pink: #f5386d;
    --orange: #ff8a1e;
    --gradient: linear-gradient(90deg, #f5386d 0%, #ff8a1e 100%);
    --dark: #1a1a2e;
    --gray: #666;
    --light: #fff8f8;
    --iconBg: #fff3f5;
}

/*====================================
CRM HERO
====================================*/

.crm-hero{
    position:relative;
    overflow:hidden;
    padding:30px 0;
    /* background:
    radial-gradient(circle at 70% 10%,rgba(245,56,109,.12),transparent 35%),
    radial-gradient(circle at 90% 35%,rgba(255,138,30,.12),transparent 30%),
    #fff; */
}

.hero-tag{

    display:inline-block;
    padding:7px 16px;

    background:#fff0f5;
    color:#f5386d;

    font-size:13px;
    font-weight:700;

    border-radius:30px;
    letter-spacing:.5px;

}

.hero-title{

    font-size:36px;
    line-height:1.18;
    font-weight:700;
    color:#1f2937;

}

.hero-title span{

    color:#f5386d;

}

.hero-text{

    color:#6b7280;
    line-height:1.4;
    font-size:16px;

}

.hero-btn-primary{

    background:linear-gradient(90deg,#f5386d,#ff8a1e);
    color:#fff;
    border:none;

    padding:9px 6px;
    border-radius:12px;
    font-weight:600;

    transition:.3s;

}

.hero-btn-primary:hover{

    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 15px 35px rgba(245,56,109,.25);

}

.hero-btn-outline{

    border:2px solid #f5386d;
    color:#f5386d;

    padding:10px 6px;
    border-radius:13px;
    font-weight:600;

}

.hero-btn-outline:hover{

    background:#f5386d;
    color:#fff;

}

.hero-image{

    width:100%;
    max-width:760px;

}

/* =====================================
   HERO FEATURES
===================================== */

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 650px;
}


/* =====================================
   FEATURE ITEM
===================================== */

.feature-item h6{
    color: #333;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
    transition: color 0.3s ease, transform 0.3s ease;
}

.feature-item {
    position: relative;

    align-items: center;
    gap: 12px;

    padding: 14px 16px;

    border: 1px solid rgba(245, 56, 109, 0.12);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.75);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.04);

    backdrop-filter: blur(8px);

    transition:
        transform 0.4s cubic-bezier(.34, 1.56, .64, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;

    overflow: hidden;

    cursor: pointer;
}


/* Shine effect */

.feature-item::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.7),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.7s ease;
}

.feature-item:hover::before {
    left: 140%;
}


/* Hover */

.feature-item:hover {
    transform: translateY(-8px);

    background: linear-gradient(
        135deg,
        #ffffff,
        #fff5f8
    );

    border-color: rgba(245, 56, 109, 0.25);

    box-shadow:
        0 15px 35px rgba(245, 56, 109, 0.12),
        0 5px 12px rgba(0, 0, 0, 0.04);
}


/* =====================================
   FEATURE CIRCLE
===================================== */

.feature-circle {
    flex: 0 0 auto;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #fff0f4,
        #ffffff
    );

    border: 1px solid rgba(245, 56, 109, 0.15);

    color: #f5386d;

    font-size: 18px;

    position: relative;
    z-index: 2;

    box-shadow:
        0 6px 18px rgba(245, 56, 109, 0.10);

    transition:
        transform 0.45s cubic-bezier(.34, 1.56, .64, 1),
        background 0.4s ease,
        color 0.3s ease,
        box-shadow 0.4s ease;
}


/* Circle outer ring */

.feature-circle::before {
    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    border: 1px solid rgba(245, 56, 109, 0.12);

    opacity: 0;

    transform: scale(0.7);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}


/* Icon hover */

.feature-item:hover .feature-circle {
    transform: scale(1.12) rotate(-8deg);

    background: linear-gradient(
        135deg,
        #f5386d,
        #ff7b9d
    );

    color: #fff;

    box-shadow:
        0 10px 25px rgba(245, 56, 109, 0.30);
}

.feature-item:hover .feature-circle::before {
    opacity: 1;
    transform: scale(1);
}


/* =====================================
   FEATURE TEXT
===================================== */

.feature-item span {
    color: #333;

    font-size: 13px;

    line-height: 1.35;

    font-weight: 700;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.feature-item:hover span {
    color: #f5386d;

    transform: translateX(3px);
}


/* =====================================
   ICON PULSE
===================================== */

.feature-circle i {
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-circle i {
    transform: scale(1.15);
}


/* =====================================
   ENTRY ANIMATION
===================================== */

.hero-features .feature-item {
    opacity: 0;
    animation: featureReveal 0.8s ease forwards;
}

.hero-features .feature-item:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-features .feature-item:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-features .feature-item:nth-child(3) {
    animation-delay: 0.7s;
}

.hero-features .feature-item:nth-child(4) {
    animation-delay: 0.9s;
}


@keyframes featureReveal {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* =====================================
   SUBTLE FLOATING
===================================== */

.hero-features .feature-item:nth-child(odd) {
    animation-name: featureReveal, featureFloat;
    animation-duration: 0.8s, 4s;
    animation-delay: 0.3s, 1.5s;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: forwards, both;
}

.hero-features .feature-item:nth-child(even) {
    animation-name: featureReveal, featureFloat;
    animation-duration: 0.8s, 4s;
    animation-delay: 0.5s, 1.8s;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: forwards, both;
}


@keyframes featureFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {

    .hero-features {
        grid-template-columns: repeat(2, 1fr);

        max-width: 500px;

        margin-left: auto;
        margin-right: auto;
    }

    .feature-item {
        padding: 14px;
    }
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 575px) {

    .hero-features {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;

        width: 100%;
    }

    .feature-item {
        padding: 12px 10px;

        gap: 9px;

        border-radius: 14px;
    }

    .feature-circle {
        width: 42px;
        height: 42px;

        font-size: 15px;
    }

    .feature-item span {
        font-size: 11px;
    }

    .feature-item:hover {
        transform: translateY(-5px);
    }
}


/* =====================================
   REDUCED MOTION
===================================== */

@media (prefers-reduced-motion: reduce) {

    .hero-features .feature-item,
    .feature-circle,
    .feature-item {
        animation: none !important;
        transition: none !important;
    }
}


/*============================
Responsive
=============================*/

@media(max-width:1199px){

.hero-title{

font-size:46px;

}

}

@media(max-width:991px){

.crm-hero{

text-align:center;
padding:60px 0;

}

.hero-title{

font-size:40px;

}

.hero-image{

margin-top:35px;
max-width:620px;

}

}

@media(max-width:767px){

.hero-title{

font-size:32px;

}

.hero-text{

font-size:15px;

}

.hero-btn-primary,
.hero-btn-outline{

width:100%;

}

.feature-title{

font-size:12px;

}

.hero-image{

max-width:100%;

}

}

@media(max-width:575px){

.hero-title{

font-size:28px;
line-height:1.35;

}

.hero-tag{

font-size:11px;

}

.feature-icon{

width:45px;
height:45px;
font-size:18px;

}

}

/* ====================services===================================  */



.crm-services{
    background:#fff;
}

.text-gradient{
    background:#f5386d;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.title-line{
    width:70px;
    height:3px;
    background:#f5386d;
    border-radius:50px;
    margin-top:10px;
}

.service-card{
    position:relative;
    background:#fff;
    border:1px solid #f5dfe7;
    border-radius:16px;
    padding:28px 14px 26px;
    transition:.35s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-8px);
    background: var(--gradient);
    box-shadow:0 15px 35px rgba(245,56,109,.12);
}

.service-card:hover .service-icon i,
.service-card:hover h5,
.service-card:hover p,
.service-card:hover .arrow i{
    color:#fff;
}

.service-icon{
    font-size:34px;
    color:#f5386d;
    margin-bottom:20px;
    margin-left:42px;
}

.service-card h5{
    font-size:13px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.service-card p{
    font-size:11px;
    line-height:24px;
    color:#666;
}

.arrow{
    position:absolute;
    right:20px;
    bottom:18px;
    color:#f5386d;
    font-size:18px;
    transition:.3s;
}

.service-card:hover .arrow{
    transform:translateX(6px);
    color:#ff8a1e;
}




/* =========================crm process============================== */
.crmProcess-section {
  background: #ffffff;
}

.crmProcess-heading {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
}

.crmProcess-highlight {
  background:  #f5386d;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.crmProcess-track {
  position: relative;
}

/* the frame - dotted top edge, thin solid sides/bottom, snug rounded corners */
.crmProcess-frame {
  position: relative;
  border: 1px solid rgba(245, 56, 109, 0.2);
  border-top: 2px dotted rgba(245, 56, 109, 0.55);
  border-radius: 16px;
  padding-top: 58px;
  padding-bottom: 24px;
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: 0px;
}

/* each step: icon pulled up to straddle the dotted top border */
.crmProcess-step {
  margin-top: -64px;
}

.crmProcess-iconWrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.crmProcess-step:hover .crmProcess-iconWrap {
  /* background: linear-gradient(135deg, #f5386d, #ff8a1e); */
  border-color: transparent;
}

.crmProcess-step:hover .crmProcess-icon {
  color: #ffffff;
}

.crmProcess-icon {
  font-size: 22px;
  color: #f5386d;
  transition: color 0.3s ease;
}

.crmProcess-num {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #9b9bb0;
  margin-bottom: 4px;
}

.crmProcess-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.crmProcess-text {
  font-size: 13.5px;
  color: #6c6c80;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ===== Mobile: dotted line/frame hatao, har step ko card banao ===== */
@media (max-width: 991px) {
  .crmProcess-frame {
    border: none;
    padding: 0;
  }

  .crmProcess-step {
    margin-top: 0;
    background: #ffffff;
    border: 1px solid rgba(245, 56, 109, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(26, 26, 46, 0.06);
    padding: 24px 14px;
  }

  .crmProcess-iconWrap {
    margin-bottom: 12px;
  }
}

/*=========================================
CRM STATS
=========================================*/
.crm-stats{
    padding:40px 0;
}

.stats-wrapper{
    background:linear-gradient(90deg,#f5386d 0%,#ff4f8b 40%,#ff6d6d 70%,#ff5b8f 100%);
    border-radius:12px;
    padding:18px 15px;
    box-shadow:0 18px 35px rgba(245,56,109,.18);
}

.stat-item{
    color:#fff;
    position:relative;
}

/* Icon + Number */
.stat-top{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-bottom:10px;
}

.stat-icon{
    width:42px;
    height:42px;
    /* border:1.5px solid rgba(255,255,255,.45); */
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

.stat-item h3{
    margin:0;
    font-size:26px;
    font-weight:700;
    color:#fff;
    line-height:1;
}

.stat-item p{
    margin:0;
    font-size:15px;
    line-height:1.4;
    color:rgba(255,255,255,.95);
}

/* Desktop Divider */

@media(min-width:992px){

.stat-item::after{
    content:"";
    position:absolute;
    top:5px;
    right:-12px;
    width:1px;
    height:65px;
    background:rgba(255,255,255,.25);
}

.col-lg-2:last-child .stat-item::after{
    display:none;
}

}

/* Tablet */

@media(max-width:991px){

.stats-wrapper{
    padding:20px 15px;
}

.stat-item{
    padding:10px 0;
}

.stat-item::after{
    display:none;
}

.stat-item h3{
    font-size:30px;
}

}

/* Mobile */

@media(max-width:767px){

.stats-wrapper{
    padding:20px 10px;
}

.stat-top{
    gap:8px;
    margin-bottom:8px;
}

.stat-icon{
    width:38px;
    height:38px;
    font-size:16px;
}

.stat-item h3{
    font-size:24px;
}

.stat-item p{
    font-size:12px;
    line-height:1.5;
}

}

/* Small Mobile */

@media(max-width:575px){

.stat-item{
    padding:10px 0;
}

.stat-icon{
    width:34px;
    height:34px;
    font-size:15px;
}

.stat-item h3{
    font-size:22px;
}

.stat-item p{
    font-size:11px;
}

}

/*=====================================================
CRM SOLUTIONS + INDUSTRIES
=====================================================*/

.crm-offer-section{
    padding:80px 0;
    background:#fff;
}

.offer-card{
    background:#fcf8f9;
    border:1px solid #ffd9e3;
    border-radius:16px;
    padding:30px;
    box-shadow:0 10px 35px rgba(245,56,109,.05);
    overflow:hidden;
}

.offer-title{
    font-size:23px;
    font-weight:700;
    color:#1b2b52;
    margin-bottom:10px;
}

/*============================
CRM LIST
=============================*/

.crm-list{
    list-style:none;
    padding:0;
    margin:0;
}

.crm-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:18px;
    font-size:11px;
    font-weight:500;
    color:#333;
    line-height:1.3;
}

.crm-list li i{
    color:#f5386d;
    margin-top:3px;
    font-size:13px;
}

/*============================
CRM CIRCLE
=============================*/

.crm-circle-wrapper{

    position:relative;

    width:310px;
    height:323px;

    margin:auto;

}

/* Dotted Circle */

.crm-circle-wrapper::before{

    content:"";

    position:absolute;

    left:50%;
    top:47%;

    width:230px;
    height:230px;

    transform:translate(-50%,-50%);

    border:2px dashed #ffd4df;
    border-radius:50%;

}

/* Center Circle */

.crm-center{

    position:absolute;

    left:50%;
    top:50%;

    width:90px;
    height:90px;

    transform:translate(-50%,-50%);

    background:linear-gradient(135deg,#f5386d,#ff7a45);

    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;
    font-weight:700;

    box-shadow:0 10px 30px rgba(245,56,109,.3);

}

/* Nodes */

.crm-node{

    position:absolute;

    width:90px;

    text-align:center;

}

.crm-icon{

    width:52px;
    height:52px;

    margin:auto;

    border-radius:50%;

    border:1px solid #ffd7df;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#f5386d;

    font-size:22px;

    box-shadow:0 8px 20px rgba(245,56,109,.08);

    transition:.3s;

}

.crm-node:hover .crm-icon{

    background:#f5386d;
    color:#fff;
    transform:translateY(-5px);

}

.crm-node span{

    display:block;

    margin-top:8px;

    font-size:13px;
    font-weight:600;
    color:#555;

}

/* Node Positions */

.node-top{

    left:50%;
    top:0;

    transform:translateX(-50%);
}

.node-top-right{

    right:0;
    top:70px;
}

.node-bottom-right{

    right:0;
    bottom:70px;
}

.node-bottom{

    left:50%;
    bottom:0;

    transform:translateX(-50%);
}

.node-bottom-left{

    left:0;
    bottom:70px;
}

.node-top-left{

    left:0;
    top:70px;
}

/*============================
INDUSTRY GRID
=============================*/

.industry-grid{
    border-top:1px solid #f1f1f1;
    border-left:1px solid #f1f1f1;
}

.industry-item{

    min-height:140px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    border-right:1px solid #f1f1f1;
    border-bottom:1px solid #f1f1f1;

    transition:.3s;
}

.industry-item:hover{

    background:#fff6f9;

}

.industry-item i{

    font-size:32px;

    color:#f5386d;

    margin-bottom:15px;

}

.industry-item span{

    font-size:14px;
    font-weight:600;
    color:#1b2b52;

    line-height:1.5;

}

/*============================
Responsive
=============================*/

@media(max-width:1199px){

.crm-circle-wrapper{

width:300px;
height:300px;

}

.crm-circle-wrapper::before{

width:180px;
height:180px;

}

}

@media(max-width:991px){

.offer-card{

margin-bottom:25px;

}

.crm-circle-wrapper{

margin-top:40px;

}

}

@media(max-width:767px){

.offer-title{

font-size:24px;

}

.crm-circle-wrapper{

width:270px;
height:270px;

}

.crm-circle-wrapper::before{

width:160px;
height:160px;

}

.crm-center{

width:80px;
height:80px;
font-size:24px;

}

.crm-node{

width:80px;

}

.crm-icon{

width:46px;
height:46px;
font-size:18px;

}

.crm-node span{

font-size:12px;

}

.industry-item{

min-height:110px;

}

.industry-item i{

font-size:26px;

}

.industry-item span{

font-size:13px;

}

}

@media(max-width:575px){

.offer-card{

padding:20px;

}

.crm-circle-wrapper{

width:240px;
height:240px;

}

.crm-circle-wrapper::before{

width:167px;
height:176px;

}

.crm-center{

width:70px;
height:70px;
font-size:22px;

}

.crm-node{

width:70px;

}

.crm-icon{

width:25px;
height:25px;
font-size:17px;

}

.crm-list li{

font-size:14px;

}

.industry-item{

min-height:95px;

}

}


/*==================================================
WHY CHOOSE + TESTIMONIAL
==================================================*/

.crm-why-section{
    padding:80px 0;
    background:#fff;
}

.why-card,
.testimonial-card{
    background:#fff;
    border:1px solid #ffe0e8;
    border-radius:16px;
    padding:30px;
    height:100%;
    box-shadow:0 10px 30px rgba(245,56,109,.05);
    position:relative;
    overflow:hidden;
}

.section-title{
    font-size:28px;
    font-weight:700;
    color:#1c2b52;
    margin-bottom:0;
}

/*=========================
WHY LIST
==========================*/

.why-list{
    list-style:none;
    margin:0;
    padding:0;
}

.why-list li{

    display:flex;
    align-items:flex-start;
    gap:10px;

    margin-bottom:8px;

    font-size:14px;
    color:#444;
    line-height:1.4;
    font-weight:500;

}

.why-list i{

    color:#f5386d;
    margin-top:3px;
    font-size:13px;

}

.why-image{

    max-width:100%;
    width:260px;

}

/*=========================
TESTIMONIAL
==========================*/

.testimonial-item{

    padding:0 18px;

}

.quote-icon{

    color:#f5386d;
    font-size:34px;
    margin-bottom:18px;

}

.testimonial-text{

    font-size:11px;
    line-height:1.9;
    color:#555;
    min-height:80px;

}

.client-img{

    width:58px;
    height:58px;

    border-radius:50%;
    object-fit:cover;

}

.client-info h6{

    margin:0;
    font-size:16px;
    font-weight:700;
    color:#1c2b52;

}

.client-info small{

    color:#777;
    display:block;

}

.stars{

    color:#ffb400;
    font-size:13px;

}

/*=========================
SLIDER BUTTONS
==========================*/

.slider-btn{

    position:absolute;

    top:50%;
    transform:translateY(-50%);

    width:38px;
    height:38px;

    border:1px solid #ffd3df;

    border-radius:50%;

    background:#fff;

    color:#f5386d;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;

    z-index:10;

}

.slider-prev{

    left:-29px;

}

.slider-next{

    right:-29px;

}

.slider-btn:hover{

    background:#f5386d;
    color:#fff;

}

/*=========================
DOTS
==========================*/

.slider-dots{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;

}

.slider-dots span{

    width:8px;
    height:8px;

    border-radius:50%;

    background:#d9d9d9;

}

.slider-dots span.active{

    width:10px;
    height:10px;

    background:#f5386d;

}

/*=========================
RESPONSIVE
==========================*/

@media (max-width:1199px){

.section-title{

font-size:24px;

}

.why-image{

width:220px;

}

}

@media (max-width:991px){

.why-card,
.testimonial-card{

padding:25px;

}

.why-image{

margin-top:30px;
width:220px;

}

.testimonial-item{

padding:15px 0;

}

.slider-prev{

left:10px;

}

.slider-next{

right:10px;

}

}

@media (max-width:767px){

.section-title{

font-size:22px;
text-align:center;

}

.why-list{

margin-bottom:30px;

}

.why-list li{

font-size:14px;

}

.why-image{

width:200px;

}

.border-end{

border-right:none !important;
border-bottom:1px solid #eee;
padding-bottom:25px;
margin-bottom:25px;

}

.testimonial-text{

min-height:auto;

}

.slider-btn{

display:none;

}

}

@media (max-width:575px){

.why-card,
.testimonial-card{

padding:20px;

}

.section-title{

font-size:20px;

}

.client-img{

width:50px;
height:50px;

}

.client-info h6{

font-size:15px;

}

.client-info small{

font-size:12px;

}

.quote-icon{

font-size:28px;

}

.testimonial-text{

font-size:14px;
line-height:1.8;

}

.why-image{

width:180px;

}

}



/* =====================CTA======================== */

.crm-cta-box{
    background: linear-gradient(90deg,#ff2f92 0%,#ff4f8d 40%,#ff2b7f 100%);
    border-radius: 14px;
    padding: 18px 28px;
    box-shadow: 0 10px 30px rgba(255,45,127,.18);
}

.crm-content{
    display:flex;
    align-items:center;
}

.crm-icon{
    width:65px;
    height:65px;
    min-width:65px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ff2f92;
    font-size:28px;
}

.crm-title{
    color:#fff;
    font-size:26px;
    font-weight:700;
    line-height:1.2;
}

.crm-text{
    color:rgba(255,255,255,.92);
    font-size:15px;
}

.crm-btn{
    background:#fff;
    color:#ff2f92;
    border-radius:8px;
    padding:13px 24px;
    font-weight:700;
    transition:.3s;
    white-space:nowrap;
}

.crm-btn:hover{
    background:#ffe7f1;
    color:#ff2f92;
    transform:translateY(-2px);
}

/* Tablet */
@media(max-width:991px){

    .crm-title{
        font-size:22px;
    }

    .crm-text{
        font-size:14px;
    }

    .crm-btn{
        margin-top:10px;
    }
}

/* Mobile */
@media(max-width:767px){

    .crm-cta-box{
        padding:22px 18px;
        text-align:center;
    }

    .crm-content{
        flex-direction:column;
    }

    .crm-icon{
        margin-bottom:15px;
    }

    .crm-content .ms-3{
        margin-left:0!important;
    }

    .crm-title{
        font-size:20px;
    }

    .crm-text{
        font-size:14px;
    }

    .crm-btn{
        width:100%;
        margin-top:20px;
        padding:14px;
    }
}




/*====================================
        WHY ATTEND
====================================*/

.why-attend{
    padding:80px 0;
    background:#fff;
}

.why-box{
    background:linear-gradient(135deg,#fff6f8,#fff);
    border:1px solid #f8e8ef;
    border-radius:20px;
    padding:50px 40px;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
}

.why-title{
    font-size:34px;
    font-weight:700;
    color:#17233d;
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    height:100%;
    position:relative;
    padding:0 15px;
}

/* Divider */

.why-item::after{
    content:"";
    position:absolute;
    right:-15px;
    top:10px;
    width:1px;
    height:80%;
    background:#f3d9e5;
}

.col-lg-3:last-child .why-item::after{
    display:none;
}

.why-icon{
    width:72px;
    height:72px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;

    color:#f5386d;
    font-size:30px;

    box-shadow:0 10px 25px rgba(245,56,109,.12);

    transition:.35s;
}

.why-item:hover .why-icon{
    background:linear-gradient(90deg,#f5386d,#ff8a1e);
    color:#fff;
    transform:translateY(-5px);
}

.why-content h5{
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
    color:#17233d;
}

.why-content p{
    font-size:15px;
    color:#666;
    line-height:1.8;
    margin:0;
}

/*=========================
      Responsive
==========================*/

@media(max-width:991px){

.why-box{
    padding:40px 25px;
}

.why-title{
    font-size:30px;
}

.why-item::after{
    display:none;
}

.why-item{
    padding:10px;
}

}

@media(max-width:767px){

.why-attend{
    padding:60px 0;
}

.why-title{
    font-size:26px;
}

.why-item{
    flex-direction:column;
    text-align:center;
    align-items:center;
}

.why-content h5{
    font-size:18px;
}

.why-content p{
    font-size:14px;
}

}

@media(max-width:575px){

.why-box{
    padding:30px 20px;
}

.why-title{
    font-size:22px;
}

.why-icon{
    width:65px;
    height:65px;
    font-size:26px;
}

}