/* ==========================================
   SOCIAL MEDIA MARKETING SECTION
========================================== */

.smm-section {
    padding: 80px 0;
    background: #ffffff;
    transition: all 0.4s ease;
}

.smm-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.smm-title {
    font-size: 42px;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: titleFade 1s ease forwards;
}

.smm-title span {
    color: #1896b3;
}

@keyframes titleFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LIST */

.smm-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.smm-list li {
    display: flex;
    gap: 15px;
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    padding: 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.smm-list li:hover {
    background: #f7fbfc;
    transform: translateX(8px);
}

.smm-list i {
    color: #1896ae;
    font-size: 20px;
}

/* TEXT */

.smm-text {
    font-size: 20px;
    color: #444;
    margin-bottom: 25px;
    font-weight: 500;
}

.smm-text span {
    color: #0ea5a8;
    font-weight: 700;
    position: relative;
}

.smm-text span::after {
    content: "";
    width: 100%;
    height: 3px;
    background: #0ea5a8;
    position: absolute;
    left: 0;
    bottom: -4px;
    transform: scaleX(0);
    transition: 0.4s;
}

.smm-text:hover span::after {
    transform: scaleX(1);
}

/* BUTTON */

.smm-btn {
    background: #1896ae;
    color: #fff !important;
    padding: 13px 35px;
    border-radius: 50px;
    margin-top: 25px;
    display: inline-block;
    font-weight: 600;
    transition: 0.3s ease;
}

.smm-btn:hover {
    background: #0f6f81;
    box-shadow: 0 10px 25px rgba(24,150,174,0.3);
}

/* IMAGE */

.smm-image-box {
    text-align: center;
}

.smm-image {
    width: 900px;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.smm-image:hover {
    transform: translateY(-5px);
}

/* MOBILE IMAGE */

@media (max-width:768px) {

    .smm-image {
        width:100%;
        max-width:350px;
        margin:auto;
        display:block;
    }

    .smm-title{
        font-size:28px;
    }

}

/* ==========================================
   BENEFIT CARDS
========================================== */

.benefit-item {
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
    cursor:pointer;
    animation:float 4s ease-in-out infinite;
}

.benefit-item:hover{
    transform:translateY(-10px) scale(1.05);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.benefit-item div{
    font-size:36px;
    color:#1896ae;
    margin-bottom:15px;
    transition:0.3s;
}

.benefit-item:hover div{
    transform:rotate(15deg) scale(1.2);
}

.benefit-item h3{
    font-size:22px;
    color:#1896ae;
    margin-bottom:12px;
}

.benefit-item p{
    font-size:16px;
    color:#555;
    text-align:justify;
}

@keyframes float{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-5px);}
}

/* ==========================================
   TIMELINE
========================================== */

.timeline-wrapper{
    display:flex;
    justify-content:space-between;
    position:relative;
    gap:40px;
}

.timeline-wrapper::before{
    content:"";
    position:absolute;
    top:40px;
    left:0;
    height:3px;
    width:100%;
    background:#1896ae;
    opacity:0.25;
}

.timeline-step{
    width:20%;
    text-align:center;
}

.step-number{
    font-size:40px;
    font-weight:700;
    color:#1896ae;
    background:rgba(24,150,174,0.10);
    padding:10px 20px;
    border-radius:10px;
}

.timeline-step h4{
    margin-top:15px;
    font-size:18px;
    font-weight:600;
}

.timeline-step p{
    font-size:14px;
    color:#555;
}

/* MOBILE TIMELINE */

@media (max-width:992px){

.timeline-wrapper{
    flex-direction:column;
}

.timeline-wrapper::before{
    display:none;
}

.timeline-step{
    width:100%;
    text-align:left;
    border-left:3px solid #1896ae;
    padding-left:20px;
    margin-bottom:30px;
}

.step-number{
    font-size:28px;
}

}

/* ==========================================
   CARD GRID
========================================== */
.card-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.card{
    background:#fff;
    padding:35px;
    box-shadow:0 10px 90px rgba(0,0,0,0.08);
    text-align:center;
    transition:0.4s;
    border-radius:10px;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.card-icon{
    font-size:60px;
    color:#1896b3;
    margin-bottom:20px;
}

.card h3{
    font-size:20px;
    margin-bottom:12px;
}

.card p{
    font-size:15px;
    color:#666;
    line-height:1.6;
}

/* ===================== */
/* LARGE TABLETS */
/* ===================== */

@media (max-width:992px){

.card-container{
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.card{
padding:30px;
}

.card-icon{
font-size:50px;
}

}

/* ===================== */
/* TABLETS */
/* ===================== */

@media (max-width:768px){

.card-container{
grid-template-columns:1fr;
gap:20px;
}

.card{
padding:28px;
}

.card h3{
font-size:18px;
}

.card p{
font-size:14px;
}

}

/* ===================== */
/* MOBILE */
/* ===================== */

@media (max-width:480px){

.card{
padding:24px;
}

.card-icon{
font-size:40px;
}

.card h3{
font-size:17px;
}

.card p{
font-size:13.5px;
}

}

/* UTILITIES */

.serv{
margin-right:0!important;
margin-left:0!important;
}

@media (min-width:992px){
.serv{
margin-right:-60px!important;
}
}
.feature-section{
padding:80px 20px;
background:#f7f9fc;
font-family:sans-serif;
}

.feature-title{
text-align:center;
margin-bottom:60px;
}

.feature-title h2{
font-size:34px;
margin-bottom:10px;
}

.feature-title p{
color:#777;
}

/* GRID */

.feature-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:1100px;
margin:auto;
}

/* CARD */

.card{
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

/* Desktop Card Positions */

.card1{
grid-column:1;
grid-row:1 / span 2;
align-self:center;
border-top:4px solid #46d3d3;
}

.card2{
grid-column:2;
grid-row:1;
border-top:4px solid #ff4d4d;
}

.card3{
grid-column:2;
grid-row:2;
border-top:4px solid #ffa500;
}

.card4{
grid-column:3;
grid-row:1 / span 2;
align-self:center;
border-top:4px solid #4aa3ff;
}

.card h3{
margin-bottom:10px;
font-size:20px;
}

.card p{
color:#666;
font-size:14px;
line-height:1.6;
}

/* ===================== */
/* TABLET VIEW */
/* ===================== */

@media (max-width:992px){

.feature-grid{
grid-template-columns:repeat(2,1fr);
}

.card1,
.card2,
.card3,
.card4{
grid-column:auto;
grid-row:auto;
}

}

/* ===================== */
/* MOBILE VIEW */
/* ===================== */

@media (max-width:600px){

.feature-grid{
grid-template-columns:1fr;
}

.feature-title h2{
font-size:26px;
}

.feature-section{
padding:60px 15px;
}

.card{
padding:25px;
}

}


