/* =====================================================
   SECTION DEFAULT
===================================================== */

section{

    position:relative;

    padding:120px 0;

}

.section-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-subtitle{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,0.16);

    color:#ffffff;

    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

    margin-bottom:22px;

}

.section-title{

    font-size:56px;

    line-height:1.1;

    letter-spacing:-2px;

    color:#0f172a;

    margin-bottom:24px;

}

.section-description{

    font-size:18px;

    line-height:1.9;

    color:#64748b;

}

/* ==========================================
   WHY BLOOMSERVE
========================================== */

.why-bloomserve{

    background:#ffffff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.why-card{

    padding:42px 34px;

    background:#ffffff;

    border-radius:24px;

    border:1px solid #edf2f7;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:

    0 30px 60px rgba(15,23,42,.08);

}

.why-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(

        90deg,

        var(--primary),

        var(--secondary)

    );

    transform:scaleX(0);

    transition:.35s;

}

.why-card:hover::before{

    transform:scaleX(1);

}

.why-icon{

    width:72px;

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:#eef7ff;

    margin-bottom:24px;

    font-size:32px;

}

.why-card h3{

    font-size:24px;

    margin-bottom:16px;

}

.why-card p{

    color:#64748b;

    line-height:1.9;

}

/* =====================================================
   SERVICES
===================================================== */

.services{

    background:#f8fbff;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    position:relative;

    background:#ffffff;

    border:1px solid #edf2f7;

    border-radius:24px;

    padding:40px;

    overflow:hidden;

    transition:all .35s ease;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:

    0 30px 70px rgba(15,23,42,.08);

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(

        90deg,

        var(--primary),

        var(--secondary)

    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

/* =====================================
   ICON
===================================== */

.service-icon{

    width:74px;

    height:74px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:#eef7ff;

    color:var(--primary);

    margin-bottom:28px;

    transition:.35s;

}

.service-card:hover .service-icon{

    background:var(--primary);

    color:#ffffff;

    transform:rotate(-8deg);

}

/* =====================================
   CONTENT
===================================== */

.service-card h3{

    font-size:24px;

    margin-bottom:16px;

    color:#0f172a;

}

.service-card p{

    color:#64748b;

    line-height:1.9;

    margin-bottom:26px;

}

.service-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:700;

    font-size:15px;

}

.service-link::after{

    content:"→";

    transition:.3s;

}

.service-link:hover::after{

    transform:translateX(6px);

}

/* =====================================
   FEATURE TAG
===================================== */

.service-tag{

    position:absolute;

    top:22px;

    right:22px;

    padding:8px 12px;

    border-radius:999px;

    background:#f1f5f9;

    color:#64748b;

    font-size:12px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;

}

/* =====================================================
   PROCESS
===================================================== */

.process{

    background:#ffffff;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.process-card{

    position:relative;

    background:#ffffff;

    border:1px solid #edf2f7;

    border-radius:24px;

    padding:42px 34px;

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(15,23,42,.08);

}

.process-number{

    font-size:54px;
    font-weight:800;
    color:#0b86d5;
    margin-bottom:22px;

}

.process-card h3{

    font-size:24px;

    margin-bottom:16px;

    color:#0f172a;

}

.process-card p{

    color:#64748b;

    line-height:1.9;

}

/* =====================================================
   INDUSTRIES
===================================================== */

.industries{

    background:#f8fbff;

}

.industry-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.industry-card{

    background:#ffffff;

    border:1px solid #edf2f7;

    border-radius:24px;

    padding:34px;

    transition:.35s;

}

.industry-card:hover{

    border-color:var(--primary);

    transform:translateY(-8px);

    box-shadow:0 24px 55px rgba(15,23,42,.08);

}

.industry-card h3{

    font-size:22px;

    margin-bottom:14px;

}

.industry-card p{

    color:#64748b;

    line-height:1.8;

}

/* =====================================================
   DOWNLOADS
===================================================== */

.downloads{

    background:#ffffff;

}

.downloads-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.download-card{

    background:#ffffff;

    border:1px solid #edf2f7;

    border-radius:24px;

    padding:40px;

    transition:.35s;

}

.download-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(15,23,42,.08);

}

.download-card h3{

    font-size:24px;

    margin-bottom:16px;

}

.download-card p{

    color:#64748b;

    line-height:1.9;

    margin-bottom:28px;

}

/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonials{

    background:#f8fbff;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:#ffffff;

    border:1px solid #edf2f7;

    border-radius:24px;

    padding:40px;

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(15,23,42,.08);

}

.testimonial-card p{

    font-size:17px;

    line-height:1.9;

    color:#475569;

    margin-bottom:28px;

}

.testimonial-user{

    display:flex;

    align-items:center;

    gap:16px;

}

.avatar{

    width:56px;

    height:56px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ffffff;

    font-size:18px;

    font-weight:700;

}

.testimonial-user h4{

    margin-bottom:4px;

}

.testimonial-user span{

    color:#64748b;

    font-size:14px;

}

/* =====================================================
   CTA
===================================================== */

.cta-section{

    background:#ffffff;

}

.cta-box{

    position:relative;

    overflow:hidden;

    padding:90px 70px;

    border-radius:32px;

    background:linear-gradient(
        135deg,
        #0b86d5,
        #0669a8
    );

    text-align:center;

    color:#ffffff;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    right:-140px;

    top:-140px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

.cta-box h2{

    color:#ffffff;

    font-size:54px;

    line-height:1.15;

    margin:22px 0;

}

.cta-box p{

    max-width:760px;

    margin:0 auto 40px;

    color:rgba(255,255,255,.88);

    font-size:18px;

    line-height:1.9;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

}

/* =====================================================
   TRUST STRIP
===================================================== */

.trust-section{

    background:#ffffff;

    border-top:1px solid #edf2f7;

    border-bottom:1px solid #edf2f7;

    padding:60px 0;

}

.trust-header{

    text-align:center;

    margin-bottom:40px;

}

.trust-header span{

    font-size:14px;

    letter-spacing:2px;

    font-weight:700;

    color:#94a3b8;

}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:24px;

}

.trust-item{

    text-align:center;

    padding:28px;

    border:1px solid #edf2f7;

    border-radius:20px;

    transition:.3s;

}

.trust-item:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 40px rgba(15,23,42,.06);

}

.trust-item h3{

    font-size:20px;

    margin-bottom:8px;

}

.trust-item small{

    color:#64748b;

}

/* =====================================================
   COMMON RESPONSIVE
===================================================== */

@media (max-width:1024px){

    .why-grid,
    .process-grid,
    .industry-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .services-grid,
    .downloads-grid,
    .testimonial-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .trust-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media (max-width:768px){

    .why-grid,
    .services-grid,
    .process-grid,
    .industry-grid,
    .downloads-grid,
    .testimonial-grid,
    .trust-grid{

        grid-template-columns:1fr;

    }

    .section-title{

        font-size:40px;

    }

    .cta-box{

        padding:60px 30px;

    }

    .cta-box h2{

        font-size:36px;

    }

    .cta-buttons{

        flex-direction:column;

    }

}

/* ===================================================
   GLOBAL SECTION SPACING & HERO GAP FIX
=================================================== */

/* 1. Har Section ka default gap kam karein */
section,
.section {
    padding: 35px 0 !important;
    margin: 0 !important;
}

/* 2. Hero Section ke Cards ke theek baad ka gap khatam karein */
.hero {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* 3. Hero Cards container spacing fix */
.hero-cards-container,
.hero-cards,
.services-overview-cards,
.hero-bottom-cards {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* 4. "One Partner" (Hero ke theek baad wala section) */
.hero + section,
.hero + .section,
section:nth-of-type(2) {
    padding-top: 0 !important;
    margin-top: -25px !important;
}