

/* =========================================
   ARPAN ORANGE PREMIUM BREADCRUMB
========================================= */

.arpan-breadcrumb-section {
    position: relative;
    overflow: hidden;

    padding: 60px 0 55px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 102, 0, 0.35) 0%,
            rgba(255, 102, 0, 0.18) 22%,
            transparent 48%
        ),
        radial-gradient(
            circle at 5% 90%,
            rgba(255, 140, 0, 0.22) 0%,
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #0d1b2a 0%,
            #142b3d 45%,
            #0d1b2a 100%
        );
}


/* =========================================
   ORANGE DECORATIVE CIRCLES
========================================= */

.arpan-breadcrumb-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -220px;

    border-radius: 50%;

    border: 75px solid rgba(255, 102, 0, 0.16);

    box-shadow:
        0 0 80px rgba(255, 102, 0, 0.15);
}


.arpan-breadcrumb-section::after {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    left: -130px;
    bottom: -150px;

    border-radius: 50%;

    background: rgba(255, 102, 0, 0.14);

    box-shadow:
        0 0 70px rgba(255, 102, 0, 0.18);
}


/* =========================================
   CONTENT
========================================= */

.arpan-breadcrumb-content {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.arpan-breadcrumb-left {
    max-width: 720px;
}


/* =========================================
   ORANGE TAG
========================================= */

.arpan-breadcrumb-tag {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 9px 18px;

    margin-bottom: 17px;

    border-radius: 50px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            rgba(255, 102, 0, 0.30),
            rgba(255, 140, 0, 0.18)
        );

    border: 1px solid rgba(255, 140, 0, 0.55);

    box-shadow:
        0 5px 25px rgba(255, 102, 0, 0.18),
        inset 0 0 15px rgba(255, 102, 0, 0.08);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.3px;
}

.arpan-breadcrumb-tag i {
    color: #ff8c00;

    font-size: 15px;

    filter:
        drop-shadow(
            0 0 6px rgba(255, 102, 0, 0.55)
        );
}


/* =========================================
   HEADING
========================================= */

.arpan-breadcrumb-left h1 {
    position: relative;

    margin: 0 0 17px;

    color: #ffffff;

    font-size: clamp(36px, 4.5vw, 55px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1px;
}


/* Orange underline */

.arpan-breadcrumb-left h1::after {
    content: "";

    display: block;

    width: 85px;

    height: 5px;

    margin-top: 13px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #ff4d00,
            #ff6600,
            #ff9d00
        );

    box-shadow:
        0 0 15px rgba(255, 102, 0, 0.55);
}


/* =========================================
   DESCRIPTION
========================================= */

.arpan-breadcrumb-left p {
    max-width: 680px;

    margin: 0;

    padding-left: 15px;

    border-left: 3px solid rgba(255, 102, 0, 0.65);

    color: rgba(255, 255, 255, 0.82);

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================
   BREADCRUMB NAV
========================================= */

.arpan-breadcrumb-nav {
    position: relative;

    display: flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;

    padding: 15px 20px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 102, 0, 0.25),
            rgba(255, 140, 0, 0.12)
        );

    border: 1px solid rgba(255, 140, 0, 0.45);

    border-radius: 14px;

    backdrop-filter: blur(12px);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.18),
        0 0 25px rgba(255, 102, 0, 0.10);
}


/* Small orange glow */

.arpan-breadcrumb-nav::before {
    content: "";

    position: absolute;

    top: 0;
    left: 20%;

    width: 60%;

    height: 2px;

    border-radius: 20px;

    background: #ff6600;

    box-shadow:
        0 0 12px rgba(255, 102, 0, 0.75);
}


/* =========================================
   HOME
========================================= */

.arpan-breadcrumb-nav a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: all 0.3s ease;
}

.arpan-breadcrumb-nav a i {
    color: #ff8c00;

    font-size: 13px;
}

.arpan-breadcrumb-nav a:hover {
    color: #ff8c00;

    transform: translateY(-1px);
}


/* =========================================
   ARROW
========================================= */

.arpan-breadcrumb-arrow {
    color: rgba(255, 140, 0, 0.65);

    font-size: 10px;
}


/* =========================================
   CURRENT PAGE
========================================= */

.arpan-breadcrumb-nav span {
    color: #ff8c00;

    font-size: 14px;

    font-weight: 800;

    text-shadow:
        0 0 12px rgba(255, 102, 0, 0.35);
}


/* =========================================
   NAV HOVER
========================================= */

.arpan-breadcrumb-nav:hover {
    background:
        linear-gradient(
            135deg,
            rgba(255, 102, 0, 0.34),
            rgba(255, 140, 0, 0.17)
        );

    border-color: rgba(255, 140, 0, 0.70);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.20),
        0 0 30px rgba(255, 102, 0, 0.16);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .arpan-breadcrumb-section {
        padding: 48px 0;
    }

    .arpan-breadcrumb-content {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .arpan-breadcrumb-left {
        max-width: 100%;
    }

    .arpan-breadcrumb-nav {
        align-self: flex-start;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .arpan-breadcrumb-section {
        padding: 40px 15px 42px;
    }

    .arpan-breadcrumb-section::before {
        width: 280px;
        height: 280px;

        right: -160px;
        top: -150px;

        border-width: 50px;
    }

    .arpan-breadcrumb-tag {
        padding: 8px 14px;

        font-size: 11px;
    }

    .arpan-breadcrumb-left h1 {
        font-size: 35px;

        letter-spacing: -0.5px;
    }

    .arpan-breadcrumb-left h1::after {
        width: 60px;

        height: 4px;

        margin-top: 10px;
    }

    .arpan-breadcrumb-left p {
        padding-left: 11px;

        font-size: 13px;

        line-height: 1.65;
    }

    .arpan-breadcrumb-nav {
        width: 100%;

        padding: 12px 14px;

        gap: 8px;

        border-radius: 11px;
    }

    .arpan-breadcrumb-nav a,
    .arpan-breadcrumb-nav span {
        font-size: 12px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .arpan-breadcrumb-section {
        padding: 34px 12px 36px;
    }

    .arpan-breadcrumb-left h1 {
        font-size: 30px;
    }

    .arpan-breadcrumb-left p {
        font-size: 12px;
    }

    .arpan-breadcrumb-nav {
        padding: 10px 11px;
    }
}



.banner{ 
	background: url(../img/banner.png);
	background-size:cover; 
    background-position: center; 
    padding-bottom: 2em !important;
}


@media screen and (max-width: 580px){
	.banner{
		background-position: calc(26%) !important; 
	}
}

.heading {
	display: flex;
	align-items: center;
	justify-content: center;

}


.heading h2{
	font-size: 40px;
	color: #619174;
	margin-top: 4em !important;
}.heading { position: relative; margin-bottom: 22px; padding-left: 18px; } .heading::before { content: ""; position: absolute; left: 0; top: 4px; width: 5px; height: 42px; border-radius: 10px; background: linear-gradient(180deg, #a451fb, #7a1ed2); } .heading h2 { margin: 0; font-size: 32px; line-height: 1.25; font-weight: 800; color: #24113f; letter-spacing: -0.5px; } .heading h2::after { content: ""; display: block; width: 70px; height: 4px; margin-top: 10px; border-radius: 10px; background: linear-gradient(90deg, #7a1ed2, #a451fb); } /* Mobile */ @media (max-width: 767px) { .heading { padding-left: 14px; } .heading::before { width: 4px; height: 34px; } .heading h2 { font-size: 25px; } }


.arpan-description {
    position: relative;
    margin: 0;
    padding: 22px 25px;
    
    /* Premium Background */
    background: linear-gradient(
        135deg,
        #fff3f3 0%,
        #fff3f3 45%,
        #ffffff 100%
    );

    border-radius: 14px;
    color: #5b5365;
    font-size: 16px;
    line-height: 1.85;
    box-shadow: 0 8px 25px rgba(122, 30, 210, 0.08);
    overflow: hidden;
}

/* Soft Background Glow */
.arpan-description::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -45px;
    top: -55px;
    background: rgba(164, 81, 251, 0.12);
    border-radius: 50%;
}

/* Bottom Glow */
.arpan-description::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    left: -45px;
    bottom: -55px;
    background: rgba(122, 30, 210, 0.08);
    border-radius: 50%;
}

/* Mobile */
@media (max-width: 767px) {
    .arpan-description {
        padding: 18px 20px;
        font-size: 15px;
        line-height: 1.75;
        border-radius: 12px;
    }
};/* ==============================
   ABOUT SECTION
============================== */

.arpan-about {
    padding: 90px 0;
    background: #faf8ff;
    overflow: hidden;
}

/* IMAGE */

.arpan-about-image {
    position: relative;
    margin: 0 20px 20px 0;
}

.arpan-about-image::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    left: -18px;
    bottom: -18px;
    border-radius: 25px;
    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );
    z-index: 0;
}

.arpan-about-image img {
    position: relative;
    z-index: 1;
    width: 100%;
   
    border-radius: 25px;
    display: block;
    box-shadow: 0 20px 50px rgba(60, 20, 100, 0.15);
}

/* IMAGE BADGE */

.arpan-image-badge {
    position: absolute;
    right: -15px;
    bottom: 35px;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px 18px;
    background: #fff;
    border-radius: 13px;

    box-shadow: 0 15px 35px rgba(40, 20, 60, 0.15);
}

.badge-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    font-weight: 700;

    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );
}

.arpan-image-badge strong {
    display: block;
    color: #251c2d;
    font-size: 14px;
    margin-bottom: 3px;
}

.arpan-image-badge small {
    display: block;
    color: #817985;
    font-size: 11px;
}


/* ==============================
   CONTENT
============================== */

.arpan-about-tag {
    display: inline-block;
    padding: 8px 15px;
    margin-bottom: 15px;

    border-radius: 30px;
    background: #fff3f3;
    color: #2d3192;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.arpan-about-content h2 {
    margin: 0 0 20px;

    color: #18121f;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.arpan-about-content h2 span {
    background: linear-gradient(
        135deg,
        #ff7a00,
        #ff7a00
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.arpan-about-content p {
    margin-bottom: 15px;

    color: #68616f;
    font-size: 15px;
    line-height: 1.8;
}

.arpan-about-intro {
    color: #4f4757 !important;
    font-size: 16px !important;
}


/* ==============================
   FEATURES
============================== */

.arpan-feature {
    height: 100%;

    display: flex;
    align-items: flex-start;
    gap: 10px;

    padding: 13px;

    background: #fff;
    border: 1px solid #eee7f6;
    border-radius: 11px;
}

.arpan-feature > span {
    width: 27px;
    height: 27px;
    min-width: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: #fff;

    font-size: 12px;
    font-weight: 700;

    background: linear-gradient(
        135deg,
        #ff6600,
        #ff6600
    );
}

.arpan-feature strong {
    display: block;

    color: #29222f;
    font-size: 13px;
    margin-bottom: 3px;
}

.arpan-feature small {
    display: block;

    color: #817986;
    font-size: 10px;
    line-height: 1.5;
}


/* ==============================
   BUTTON
============================== */

.arpan-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 25px;
    padding: 14px 22px;

    border-radius: 8px;

    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );

    color: #fff;
    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 12px 25px rgba(121, 35, 208, 0.22);

    transition: 0.3s ease;
}

.arpan-about-btn span {
    font-size: 19px;
}

.arpan-about-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}


/* ==============================
   TABLET
============================== */

@media (max-width: 991px) {

    .arpan-about {
        padding: 70px 0;
    }

    .arpan-about-content h2 {
        font-size: 34px;
    }

    .arpan-about-image img {
        height: 270px;
    }

    .arpan-image-badge {
        right: -5px;
    }
}


/* ==============================
   MOBILE
============================== */

@media (max-width: 767px) {

    .arpan-about {
        padding: 60px 15px;
    }

    .arpan-about-image {
        margin-right: 10px;
    }

    .arpan-about-image img {
        height: 200px;
        border-radius: 20px;
    }

    .arpan-about-image::before {
        left: -10px;
        bottom: -10px;
        border-radius: 20px;
    }

    .arpan-image-badge {
        right: 5px;
        bottom: 20px;
        padding: 11px 13px;
    }

    .badge-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .arpan-image-badge strong {
        font-size: 12px;
    }

    .arpan-image-badge small {
        font-size: 9px;
    }

    .arpan-about-content h2 {
        font-size: 30px;
    }

    .arpan-about-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .arpan-about-btn {
        width: 100%;
        justify-content: center;
    }
}/* =========================
   WHY CHOOSE SECTION
========================= */

.arpan-why-section {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Background Decoration */

.arpan-why-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(152, 63, 240, 0.06);
    border-radius: 50%;
    top: -120px;
    left: -100px;
}

.arpan-why-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(121, 35, 208, 0.05);
    border-radius: 50%;
    right: -100px;
    bottom: -100px;
}

/* Heading */

.arpan-section-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}

.arpan-small-title {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(152, 63, 240, 0.10);
    color: #7923d0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.arpan-section-heading h2 {
    margin: 0;
    color: #181225;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
}

.arpan-section-heading h2 span {
    background: linear-gradient(
        135deg,
        #ff7a00,
        #ff7a00
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.arpan-section-heading p {
    margin: 18px auto 0;
    color: #686474;
    font-size: 16px;
    line-height: 1.8;
}


/* Cards */

.arpan-why-card {
    position: relative;
    height: 100%;
    padding: 35px 28px;
    background: #ffffff;
    border: 1px solid #eee8f7;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(50, 20, 80, 0.07);
    overflow: hidden;
    transition: all 0.35s ease;
}

.arpan-why-card::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -35px;
    top: -35px;
    border-radius: 50%;
    background: rgba(152, 63, 240, 0.07);
    transition: 0.35s ease;
}

.arpan-why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(152, 63, 240, 0.35);
    box-shadow: 0 20px 45px rgba(121, 35, 208, 0.16);
}

.arpan-why-card:hover::before {
    transform: scale(2.2);
    background: rgba(152, 63, 240, 0.08);
}


/* Icon */

.arpan-icon {
    position: relative;
    z-index: 2;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );
    color: #ffffff;
    font-size: 27px;
    margin-bottom: 24px;
    box-shadow: 0 12px 25px rgba(121, 35, 208, 0.25);
}

.arpan-why-card h3 {
    position: relative;
    z-index: 2;
    color: #211832;
    font-size: 21px;
    font-weight: 750;
    margin-bottom: 12px;
}

.arpan-why-card p {
    position: relative;
    z-index: 2;
    color: #716d79;
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0;
}


/* Number */

.arpan-card-number {
    position: absolute;
    right: 22px;
    bottom: 12px;
    color: rgba(121, 35, 208, 0.08);
    font-size: 55px;
    line-height: 1;
    font-weight: 900;
}


/* Bottom CTA */

.arpan-why-bottom {
    position: relative;
    z-index: 2;
    margin-top: 45px;
    padding: 22px 25px 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );
    box-shadow: 0 18px 40px rgba(121, 35, 208, 0.20);
}

.arpan-bottom-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.arpan-bottom-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 25px;
}

.arpan-bottom-content h4 {
    color: #ffffff;
    font-size: 19px;
    font-weight: 750;
    margin: 0 0 5px;
}

.arpan-bottom-content p {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    margin: 0;
}


/* Button */

.arpan-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 14px 22px;
    border-radius: 50px;
    background: #ffffff;
    color: #7923d0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s ease;
}

.arpan-quote-btn:hover {
    color: #7923d0;
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.arpan-quote-btn i {
    transition: 0.3s ease;
}

.arpan-quote-btn:hover i {
    transform: translateX(4px);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .arpan-why-section {
        padding: 70px 0;
    }

    .arpan-section-heading h2 {
        font-size: 36px;
    }

    .arpan-why-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .arpan-quote-btn {
        width: 100%;
        justify-content: center;
    }
}


@media (max-width: 575px) {

    .arpan-why-section {
        padding: 55px 0;
    }

    .arpan-section-heading {
        margin-bottom: 35px;
    }

    .arpan-section-heading h2 {
        font-size: 29px;
    }

    .arpan-section-heading p {
        font-size: 14px;
    }

    .arpan-why-card {
        padding: 28px 23px;
    }

    .arpan-bottom-content {
        align-items: flex-start;
    }

    .arpan-bottom-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .arpan-bottom-content h4 {
        font-size: 16px;
    }

    .arpan-bottom-content p {
        font-size: 12px;
        line-height: 1.6;
    }

}
/* =========================================
   SERVICES SECTION
========================================= */

.arpan-services-section {
    position: relative;
    padding: 90px 0;
    background: #faf8fd;
    overflow: hidden;
}


/* Decorative Background */

.arpan-services-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(152, 63, 240, 0.06);
    top: -180px;
    left: -120px;
}

.arpan-services-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(121, 35, 208, 0.05);
    right: -120px;
    bottom: -150px;
}


/* =========================================
   HEADING
========================================= */

.arpan-services-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}

.arpan-services-label {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(152, 63, 240, 0.10);
    color: #7923d0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.arpan-services-heading h2 {
    margin: 0;
    color: #1b1625;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}

.arpan-services-heading h2 span {
    background: linear-gradient(
        135deg,
      #ff7a00,
        #ff7a00
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.arpan-services-heading p {
    margin: 17px auto 0;
    color: #706b78;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   SERVICE CARD
========================================= */

.arpan-service-card {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #eee8f5;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(50, 20, 80, 0.06);
    transition: all 0.35s ease;
}

.arpan-service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s ease;
}

.arpan-service-card:hover {
    transform: translateY(-9px);
    border-color: rgba(152, 63, 240, 0.25);
    box-shadow: 0 20px 45px rgba(121, 35, 208, 0.14);
}

.arpan-service-card:hover::before {
    transform: scaleX(1);
}


/* =========================================
   TOP AREA
========================================= */

.arpan-service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.arpan-service-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );

    color: #ffffff;
    font-size: 25px;

    box-shadow:
        0 12px 25px rgba(121, 35, 208, 0.23);

    transition: 0.35s ease;
}

.arpan-service-card:hover .arpan-service-icon {
    transform: rotate(-5deg) scale(1.06);
}


/* Number */

.arpan-service-number {
    font-size: 42px;
    font-weight: 900;
    color: rgba(121, 35, 208, 0.08);
    line-height: 1;
}


/* =========================================
   CONTENT
========================================= */

.arpan-service-card h3 {
    color: #21182e;
    font-size: 21px;
    font-weight: 750;
    margin: 0 0 12px;
}

.arpan-service-card p {
    color: #716c79;
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 20px;
}


/* =========================================
   SERVICE LINK
========================================= */

.arpan-service-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #7923d0;
    text-decoration: none;

    font-size: 14px;
    font-weight: 750;

    transition: 0.3s ease;
}

.arpan-service-link i {
    font-size: 12px;
    transition: 0.3s ease;
}

.arpan-service-link:hover {
    color: #983ff0;
}

.arpan-service-link:hover i {
    transform: translateX(5px);
}


/* =========================================
   CTA
========================================= */

.arpan-services-cta {
    position: relative;
    z-index: 3;

    margin-top: 50px;
    padding: 22px 25px;

    display: flex;
    align-items: center;
    gap: 18px;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );

    box-shadow:
        0 18px 40px rgba(121, 35, 208, 0.20);
}

.arpan-cta-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(255,255,255,0.15);

    color: #ffffff;
    font-size: 23px;
}

.arpan-cta-content {
    flex: 1;
}

.arpan-cta-content h3 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 19px;
    font-weight: 750;
}

.arpan-cta-content p {
    margin: 0;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
}

.arpan-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 23px;

    border-radius: 50px;
    background: #ffffff;

    color: #7923d0;
    text-decoration: none;

    font-size: 14px;
    font-weight: 800;

    white-space: nowrap;

    transition: 0.3s ease;
}

.arpan-cta-button:hover {
    color: #7923d0;
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.arpan-cta-button i {
    transition: 0.3s ease;
}

.arpan-cta-button:hover i {
    transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .arpan-services-section {
        padding: 70px 0;
    }

    .arpan-services-heading h2 {
        font-size: 36px;
    }

    .arpan-services-cta {
        flex-wrap: wrap;
    }

    .arpan-cta-content {
        min-width: 220px;
    }

    .arpan-cta-button {
        margin-left: auto;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .arpan-services-section {
        padding: 55px 0;
    }

    .arpan-services-heading {
        margin-bottom: 35px;
    }

    .arpan-services-heading h2 {
        font-size: 29px;
    }

    .arpan-services-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .arpan-service-card {
        padding: 25px;
        border-radius: 18px;
    }

    .arpan-service-icon {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }

    .arpan-service-number {
        font-size: 35px;
    }

    .arpan-service-card h3 {
        font-size: 19px;
    }

    .arpan-service-card p {
        font-size: 13.5px;
    }

    .arpan-services-cta {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .arpan-cta-content {
        width: 100%;
    }

    .arpan-cta-button {
        width: 100%;
        margin-left: 0;
    }

}
/* =========================================
   WORK PROCESS SECTION
========================================= */

.arpan-process-section {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}


/* Background Decorations */

.arpan-process-section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(152, 63, 240, 0.055);
    top: -190px;
    right: -120px;
}

.arpan-process-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(121, 35, 208, 0.045);
    bottom: -150px;
    left: -100px;
}


/* =========================================
   HEADING
========================================= */

.arpan-process-heading {
    position: relative;
    z-index: 2;
    max-width: 750px;
    text-align: center;
    margin: 0 auto 65px;
}

.arpan-process-label {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 50px;

    background: rgba(152, 63, 240, 0.10);
    color: #7923d0;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;

    margin-bottom: 14px;
}

.arpan-process-heading h2 {
    margin: 0;
    color: #1b1625;

    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
}

.arpan-process-heading h2 span {
    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.arpan-process-heading p {
    margin: 17px auto 0;

    color: #716c79;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   PROCESS WRAPPER
========================================= */

.arpan-process-wrapper {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


/* Connecting Line */

.arpan-process-wrapper::before {
    content: "";

    position: absolute;

    top: 45px;
    left: 11%;
    right: 11%;

    height: 2px;

    background: linear-gradient(
        90deg,
        #983ff0,
        #7923d0
    );

    opacity: 0.25;
    z-index: -1;
}


/* =========================================
   PROCESS ITEM
========================================= */

.arpan-process-item {
    position: relative;
    text-align: center;
}


/* Icon Wrapper */

.arpan-process-icon-wrap {
    position: relative;

    width: 92px;
    height: 92px;

    margin: 0 auto 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 50%;

    box-shadow:
        0 10px 30px rgba(121, 35, 208, 0.13);

    border: 1px solid rgba(152, 63, 240, 0.16);
}


/* Icon */

.arpan-process-icon {
    width: 66px;
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );

    color: #ffffff;

    font-size: 24px;

    box-shadow:
        0 10px 22px rgba(121, 35, 208, 0.25);

    transition: 0.35s ease;
}


/* Hover */

.arpan-process-item:hover .arpan-process-icon {
    transform: scale(1.08) rotate(-6deg);
}


/* Number */

.arpan-process-count {
    position: absolute;

    right: -3px;
    top: -3px;

    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #7923d0;

    border: 2px solid #983ff0;

    font-size: 10px;
    font-weight: 900;

    box-shadow:
        0 5px 12px rgba(121, 35, 208, 0.15);
}


/* =========================================
   CONTENT
========================================= */

.arpan-process-content {
    padding: 0 10px;
}

.arpan-process-content h3 {
    margin: 0 0 11px;

    color: #21182e;

    font-size: 20px;
    font-weight: 750;
}

.arpan-process-content p {
    margin: 0;

    color: #716c79;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================
   BOTTOM CTA
========================================= */

.arpan-process-bottom {
    position: relative;
    z-index: 2;

    margin-top: 60px;

    padding: 22px 25px 22px 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );

    box-shadow:
        0 18px 40px rgba(121, 35, 208, 0.20);
}


.arpan-process-bottom-left {
    display: flex;
    align-items: center;
    gap: 17px;
}


/* Check Icon */

.arpan-process-check {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.15);

    color: #ffffff;

    font-size: 22px;
}


.arpan-process-bottom h4 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 19px;
    font-weight: 750;
}


.arpan-process-bottom p {
    margin: 0;

    color: rgba(255,255,255,0.85);

    font-size: 13px;
}


/* =========================================
   BUTTON
========================================= */

.arpan-process-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 23px;

    border-radius: 50px;

    background: #ffffff;

    color: #7923d0;

    text-decoration: none;

    font-size: 14px;
    font-weight: 800;

    white-space: nowrap;

    transition: 0.3s ease;
}

.arpan-process-btn:hover {
    color: #7923d0;

    transform: translateX(4px);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.15);
}

.arpan-process-btn i {
    transition: 0.3s ease;
}

.arpan-process-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .arpan-process-section {
        padding: 70px 0;
    }

    .arpan-process-heading h2 {
        font-size: 36px;
    }

    .arpan-process-wrapper {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }

    .arpan-process-wrapper::before {
        display: none;
    }

    .arpan-process-bottom {
        flex-wrap: wrap;
    }

    .arpan-process-btn {
        margin-left: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .arpan-process-section {
        padding: 55px 0;
    }

    .arpan-process-heading {
        margin-bottom: 40px;
    }

    .arpan-process-heading h2 {
        font-size: 29px;
    }

    .arpan-process-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .arpan-process-wrapper {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .arpan-process-item {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 18px;
    }

    .arpan-process-icon-wrap {
        width: 75px;
        height: 75px;

        flex-shrink: 0;

        margin: 0;
    }

    .arpan-process-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .arpan-process-count {
        width: 25px;
        height: 25px;
        font-size: 9px;
    }

    .arpan-process-content {
        padding: 8px 0 0;
    }

    .arpan-process-content h3 {
        font-size: 18px;
        margin-bottom: 7px;
    }

    .arpan-process-content p {
        font-size: 13px;
        line-height: 1.65;
    }

    .arpan-process-bottom {
        margin-top: 45px;

        flex-direction: column;
        align-items: flex-start;

        padding: 20px;
    }

    .arpan-process-bottom-left {
        align-items: flex-start;
    }

    .arpan-process-check {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .arpan-process-bottom h4 {
        font-size: 16px;
    }

    .arpan-process-bottom p {
        font-size: 12px;
        line-height: 1.6;
    }

    .arpan-process-btn {
        width: 100%;
        margin-left: 0;
    }

}
/* =========================================
   ALL INDIA SECTION
========================================= */

.arpan-india-section {
    position: relative;
    padding: 90px 0;
    background: #faf8fd;
    overflow: hidden;
}


/* Background */

.arpan-india-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(152, 63, 240, 0.055);
    top: -180px;
    left: -120px;
}

.arpan-india-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(121, 35, 208, 0.045);
    right: -140px;
    bottom: -160px;
}


/* =========================================
   HEADING
========================================= */

.arpan-india-heading {
    position: relative;
    z-index: 2;
    max-width: 750px;
    text-align: center;
    margin: 0 auto 55px;
}

.arpan-india-label {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 50px;

    background: rgba(152, 63, 240, 0.10);
    color: #7923d0;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;

    margin-bottom: 14px;
}

.arpan-india-heading h2 {
    margin: 0;

    color: #1b1625;

    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
}

.arpan-india-heading h2 span {
    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.arpan-india-heading p {
    margin: 17px auto 0;

    color: #716c79;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   CITY CARD
========================================= */

.arpan-city-card {
    position: relative;
    z-index: 2;

    min-height: 105px;

    padding: 20px;

    display: flex;
    align-items: center;

    gap: 15px;

    background: #ffffff;

    border: 1px solid #eee8f5;

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(50, 20, 80, 0.055);

    overflow: hidden;

    transition: all 0.35s ease;
}


/* Top Line */

.arpan-city-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );

    transform: scaleX(0);
    transform-origin: left;

    transition: 0.35s ease;
}

.arpan-city-card:hover {
    transform: translateY(-7px);

    border-color: rgba(152, 63, 240, 0.25);

    box-shadow:
        0 18px 40px rgba(121, 35, 208, 0.13);
}

.arpan-city-card:hover::before {
    transform: scaleX(1);
}


/* =========================================
   CITY ICON
========================================= */

.arpan-city-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );

    color: #ffffff;

    font-size: 21px;

    box-shadow:
        0 9px 20px rgba(121, 35, 208, 0.20);

    transition: 0.35s ease;
}

.arpan-city-card:hover .arpan-city-icon {
    transform: scale(1.07);
}


/* =========================================
   CITY CONTENT
========================================= */

.arpan-city-content {
    flex: 1;
}

.arpan-city-content h3 {
    margin: 0 0 4px;

    color: #21182e;

    font-size: 18px;
    font-weight: 750;
}

.arpan-city-content p {
    margin: 0;

    color: #8a8492;

    font-size: 12px;
}


/* Arrow */

.arpan-city-arrow {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(152, 63, 240, 0.08);

    color: #7923d0;

    font-size: 12px;

    transition: 0.3s ease;
}

.arpan-city-card:hover .arpan-city-arrow {
    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );

    color: #ffffff;

    transform: translateX(3px);
}


/* =========================================
   BOTTOM BANNER
========================================= */

.arpan-india-banner {
    position: relative;
    z-index: 3;

    margin-top: 50px;

    padding: 24px 28px;

    display: flex;
    align-items: center;

    gap: 18px;

    border-radius: 22px;

    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );

    box-shadow:
        0 20px 45px rgba(121, 35, 208, 0.20);
}


.arpan-india-banner-icon {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.15);

    color: #ffffff;

    font-size: 24px;
}


.arpan-india-banner-content {
    flex: 1;
}

.arpan-india-banner-content h3 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 750;
}

.arpan-india-banner-content p {
    margin: 0;

    color: rgba(255,255,255,0.85);

    font-size: 13px;
    line-height: 1.6;
}


/* Button */

.arpan-india-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 23px;

    border-radius: 50px;

    background: #ffffff;

    color: #7923d0;

    text-decoration: none;

    font-size: 14px;
    font-weight: 800;

    white-space: nowrap;

    transition: 0.3s ease;
}

.arpan-india-btn:hover {
    color: #7923d0;

    transform: translateX(4px);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.15);
}

.arpan-india-btn i {
    transition: 0.3s ease;
}

.arpan-india-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .arpan-india-section {
        padding: 70px 0;
    }

    .arpan-india-heading h2 {
        font-size: 36px;
    }

    .arpan-india-banner {
        flex-wrap: wrap;
    }

    .arpan-india-btn {
        margin-left: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .arpan-india-section {
        padding: 55px 0;
    }

    .arpan-india-heading {
        margin-bottom: 35px;
    }

    .arpan-india-heading h2 {
        font-size: 29px;
    }

    .arpan-india-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .arpan-city-card {
        min-height: 90px;
        padding: 15px;
        border-radius: 15px;
    }

    .arpan-city-icon {
        width: 48px;
        height: 48px;

        border-radius: 13px;

        font-size: 18px;
    }

    .arpan-city-content h3 {
        font-size: 16px;
    }

    .arpan-city-arrow {
        width: 30px;
        height: 30px;
    }

    .arpan-india-banner {
        padding: 20px;

        flex-direction: column;

        align-items: flex-start;
    }

    .arpan-india-banner-icon {
        width: 48px;
        height: 48px;

        font-size: 20px;
    }

    .arpan-india-banner-content h3 {
        font-size: 17px;
    }

    .arpan-india-banner-content p {
        font-size: 12px;
    }

    .arpan-india-btn {
        width: 100%;
        margin-left: 0;
    }

}
/* =========================================
   MISSION VISION SECTION
========================================= */

.arpan-mission-section {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}


/* Background Decorations */

.arpan-mission-section::before {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(152, 63, 240, 0.055);

    left: -150px;
    top: -150px;
}

.arpan-mission-section::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(121, 35, 208, 0.045);

    right: -130px;
    bottom: -130px;
}


/* =========================================
   HEADING
========================================= */

.arpan-mission-heading {
    position: relative;
    z-index: 2;

    max-width: 760px;

    text-align: center;

    margin: 0 auto 55px;
}

.arpan-mission-label {
    display: inline-block;

    padding: 7px 18px;

    border-radius: 50px;

    background: rgba(152, 63, 240, 0.10);

    color: #7923d0;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 14px;
}

.arpan-mission-heading h2 {
    margin: 0;

    color: #1b1625;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 800;
}

.arpan-mission-heading h2 span {
    background: linear-gradient(
        135deg,
        #ff6600,
        #ff6600
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.arpan-mission-heading p {
    margin: 17px auto 0;

    color: #716c79;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   PURPOSE CARD
========================================= */

.arpan-purpose-card {
    position: relative;

    height: 100%;

    padding: 38px;

    border-radius: 25px;

    overflow: hidden;

    border: 1px solid #eee8f5;

    background: #ffffff;

    box-shadow:
        0 15px 40px rgba(50, 20, 80, 0.07);

    transition: all 0.35s ease;
}

.arpan-purpose-card:hover {
    transform: translateY(-8px);

    border-color: rgba(152, 63, 240, 0.25);

    box-shadow:
        0 22px 50px rgba(121, 35, 208, 0.14);
}


/* =========================================
   TOP
========================================= */

.arpan-purpose-top {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 27px;
}

.arpan-purpose-icon {
    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );

    color: #ffffff;

    font-size: 28px;

    box-shadow:
        0 12px 25px rgba(121, 35, 208, 0.25);

    transition: 0.35s ease;
}

.arpan-purpose-card:hover .arpan-purpose-icon {
    transform: rotate(-5deg) scale(1.06);
}

.arpan-purpose-top > span {
    color: rgba(121, 35, 208, 0.10);

    font-size: 55px;

    line-height: 1;

    font-weight: 900;
}


/* =========================================
   CONTENT
========================================= */

.arpan-purpose-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 14px;

    color: #21182e;

    font-size: 25px;

    font-weight: 800;
}

.arpan-purpose-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #716c79;

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================
   POINTS
========================================= */

.arpan-purpose-points {
    position: relative;
    z-index: 2;

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;
}

.arpan-purpose-points div {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 13px;

    border-radius: 50px;

    background: rgba(152, 63, 240, 0.07);

    color: #4e435a;

    font-size: 12px;

    font-weight: 650;
}

.arpan-purpose-points i {
    width: 19px;
    height: 19px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );

    color: #ffffff;

    font-size: 9px;
}


/* =========================================
   DECORATIVE SHAPE
========================================= */

.arpan-purpose-shape {
    position: absolute;

    width: 150px;
    height: 150px;

    right: -75px;
    bottom: -75px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        rgba(152,63,240,0.08),
        rgba(121,35,208,0.03)
    );

    transition: 0.4s ease;
}

.arpan-purpose-card:hover .arpan-purpose-shape {
    transform: scale(1.3);
}


/* =========================================
   BOTTOM STATEMENT
========================================= */

.arpan-purpose-bottom {
    position: relative;

    z-index: 3;

    margin-top: 45px;

    padding: 23px 28px;

    display: flex;

    align-items: center;

    gap: 18px;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );

    box-shadow:
        0 18px 40px rgba(121, 35, 208, 0.20);
}

.arpan-purpose-bottom-icon {
    width: 57px;
    height: 57px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.15);

    color: #ffffff;

    font-size: 23px;
}

.arpan-purpose-bottom-content {
    flex: 1;
}

.arpan-purpose-bottom-content h4 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 19px;

    font-weight: 750;
}

.arpan-purpose-bottom-content p {
    margin: 0;

    color: rgba(255,255,255,0.85);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .arpan-mission-section {
        padding: 70px 0;
    }

    .arpan-mission-heading h2 {
        font-size: 36px;
    }

    .arpan-purpose-card {
        padding: 32px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .arpan-mission-section {
        padding: 55px 0;
    }

    .arpan-mission-heading {
        margin-bottom: 35px;
    }

    .arpan-mission-heading h2 {
        font-size: 29px;
    }

    .arpan-mission-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .arpan-purpose-card {
        padding: 27px 23px;

        border-radius: 19px;
    }

    .arpan-purpose-icon {
        width: 58px;
        height: 58px;

        border-radius: 16px;

        font-size: 23px;
    }

    .arpan-purpose-top > span {
        font-size: 42px;
    }

    .arpan-purpose-card h3 {
        font-size: 21px;
    }

    .arpan-purpose-card p {
        font-size: 13px;
        line-height: 1.75;
    }

    .arpan-purpose-points {
        gap: 8px;
    }

    .arpan-purpose-points div {
        font-size: 11px;
        padding: 8px 11px;
    }

    .arpan-purpose-bottom {
        padding: 20px;

        align-items: flex-start;
    }

    .arpan-purpose-bottom-icon {
        width: 45px;
        height: 45px;

        font-size: 18px;
    }

    .arpan-purpose-bottom-content h4 {
        font-size: 16px;
    }

    .arpan-purpose-bottom-content p {
        font-size: 12px;
    }

}
/* =========================
   FOOTER MAIN
========================= */

.arpan-footer {
    font-family: Arial, sans-serif;
    background: #faf8fd;
    color: #ffffff;
}

.arpan-footer-main {
    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );

    padding: 70px 0 55px;
    position: relative;
    overflow: hidden;
}


/* Decorative Circle */

.arpan-footer-main::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 50%;
    top: -180px;
    right: -100px;
}

.arpan-footer-main::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    bottom: -140px;
    left: -80px;
}


/* =========================
   FOOTER BOX
========================= */

.arpan-footer-box {
    position: relative;
    z-index: 2;
}

.arpan-footer-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

.arpan-footer-box h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    border-radius: 20px;
    background: #ffffff;
}


/* =========================
   LOGO
========================= */

.arpan-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.arpan-footer-logo small {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 4px;
    opacity: 0.85;
}

.arpan-logo-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.20);
    font-size: 24px;
}


/* =========================
   ABOUT TEXT
========================= */

.arpan-about-box p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    margin: 0 0 25px;
    max-width: 380px;
}


/* =========================
   SOCIAL ICONS
========================= */

.arpan-social-links {
    display: flex;
    gap: 10px;
}

.arpan-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #7923d0;
    background: #ffffff;
    transition: 0.3s ease;
}

.arpan-social-links a:hover {
    transform: translateY(-5px);
    background: #f1e7ff;
}


/* =========================
   FOOTER LINKS
========================= */

.arpan-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.arpan-footer-links li {
    margin-bottom: 13px;
}

.arpan-footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    transition: 0.3s ease;
}

.arpan-footer-links a i {
    font-size: 10px;
    color: #ffffff;
}

.arpan-footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}


/* =========================
   LOCATION GRID
========================= */

.arpan-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.arpan-location-grid a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 9px;
    border-radius: 9px;
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    font-size: 12px;
    transition: 0.3s ease;
}

.arpan-location-grid a i {
    font-size: 11px;
}

.arpan-location-grid a:hover {
    background: rgba(255,255,255,0.16);
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================
   CTA
========================= */

.arpan-footer-cta {
    background: #ffffff;
    padding: 25px 0;
}

.arpan-footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 28px 35px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );
    box-shadow: 0 15px 40px rgba(121,35,208,0.18);
}

.arpan-footer-cta-inner span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.85;
}

.arpan-footer-cta-inner h3 {
    margin: 5px 0 0;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.arpan-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    background: #ffffff;
    color: #7923d0;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.3s ease;
}

.arpan-footer-btn:hover {
    color: #7923d0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


/* =========================
   BOTTOM FOOTER
========================= */

.arpan-footer-bottom {
    background: #ffffff;
    padding: 18px 0;
    border-top: 1px solid #eee7f5;
}

.arpan-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.arpan-bottom-inner p {
    margin: 0;
    color: #777;
    font-size: 13px;
}

.arpan-bottom-inner strong {
    color: #7923d0;
}

.arpan-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.arpan-bottom-links a {
    color: #777;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s ease;
}

.arpan-bottom-links a:hover {
    color: #7923d0;
}

.arpan-bottom-links span {
    width: 4px;
    height: 4px;
    background: #983ff0;
    border-radius: 50%;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .arpan-footer-main {
        padding: 55px 0 40px;
    }

    .arpan-footer-cta-inner {
        padding: 25px;
    }

    .arpan-footer-cta-inner h3 {
        font-size: 19px;
    }

}


@media (max-width: 767px) {

    .arpan-footer-main {
        padding: 50px 0 30px;
    }

    .arpan-footer-box {
        margin-bottom: 15px;
    }

    .arpan-footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .arpan-footer-btn {
        width: 100%;
        justify-content: center;
    }

    .arpan-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .arpan-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

}


@media (max-width: 575px) {

    .arpan-footer-main {
        padding: 45px 0 25px;
    }

    .arpan-footer-box h4 {
        font-size: 18px;
    }

    .arpan-footer-logo {
        font-size: 21px;
    }

    .arpan-logo-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .arpan-location-grid {
        gap: 8px;
    }

    .arpan-location-grid a {
        font-size: 11px;
        padding: 9px 7px;
    }

    .arpan-footer-cta {
        padding: 20px 0;
    }

    .arpan-footer-cta-inner h3 {
        font-size: 18px;
    }

}

/* =====================================================
   VARIABLES
===================================================== */

:root{
    --arpan-purple:#983ff0;
    --arpan-purple-dark:#7923d0;
    --arpan-purple-light:#f6edff;
    --arpan-dark:#171225;
    --arpan-text:#40384d;
    --arpan-white:#ffffff;
}


/* =====================================================
   RESET
===================================================== */

.arpan-navbar,
.arpan-navbar *,
.arpan-mobile-menu,
.arpan-mobile-menu *{
    box-sizing:border-box;
}

.arpan-navbar{
    width:100%;
    position:relative;
    z-index:9999;
    background:#fff;
    font-family:'Poppins',sans-serif;
}


/* =====================================================
   DESKTOP NAVBAR
===================================================== */

.arpan-nav-container{
    max-width:1240px;
    height:82px;
    margin:auto;
    padding:0 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}


/* =====================================================
   LOGO
===================================================== */

.arpan-logo{
    display:flex;
    align-items:center;
    gap:13px;

    text-decoration:none;
    flex-shrink:0;
}

.arpan-logo-icon{
    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:23px;

    border-radius:15px;

    background:linear-gradient(
        135deg,
        #983ff0,
        #7923d0
    );

    box-shadow:
        0 9px 22px rgba(152,63,240,.28);
}

.arpan-logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.15;
}

.arpan-logo-text strong{
    color:var(--arpan-dark);

    font-size:20px;
    font-weight:800;

    letter-spacing:-.5px;
}

.arpan-logo-text span{
    color:var(--arpan-purple);

    font-size:10px;
    font-weight:600;

    letter-spacing:1.1px;
    text-transform:uppercase;

    margin-top:5px;
}


/* =====================================================
   DESKTOP MENU
===================================================== */

.arpan-nav-menu{
    display:flex;
    align-items:center;
    gap:3px;

    list-style:none;

    margin:0;
    padding:0;
}

.arpan-nav-menu > li{
    position:relative;
}

.arpan-nav-menu > li > a{
    display:flex;
    align-items:center;
    gap:7px;

    padding:12px 14px;

    color:var(--arpan-text);

    text-decoration:none;

    font-size:15px;
    font-weight:700;

    border-radius:9px;

    transition:.3s ease;
}

.arpan-nav-menu > li > a:hover,
.arpan-nav-menu > li.active > a{
    color:var(--arpan-purple);
    background:var(--arpan-purple-light);
}


/* =====================================================
   DESKTOP SERVICES DROPDOWN
===================================================== */

.arpan-desktop-dropdown{
    position:absolute;

    top:calc(100% + 13px);
    left:50%;

    width:245px;

    padding:10px;

    background:#fff;

    border-radius:16px;

    border:1px solid rgba(152,63,240,.12);

    box-shadow:
        0 20px 50px rgba(40,15,65,.16);

    opacity:0;
    visibility:hidden;

    transform:
        translateX(-50%)
        translateY(12px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;
}

.arpan-services:hover .arpan-desktop-dropdown{
    opacity:1;
    visibility:visible;

    transform:
        translateX(-50%)
        translateY(0);
}

.arpan-desktop-dropdown a{
    display:flex;
    align-items:center;
    gap:11px;

    padding:11px 12px;

    color:#3d3548;

    text-decoration:none;

    font-size:12px;
    font-weight:600;

    border-radius:10px;

    transition:.25s ease;
}

.arpan-desktop-dropdown a i{
    width:28px;
    height:28px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:8px;

    color:var(--arpan-purple);
    background:#f3e7ff;

    font-size:11px;

    transition:.25s ease;
}

.arpan-desktop-dropdown a:hover{
    color:#fff;
    background:var(--arpan-purple);
}

.arpan-desktop-dropdown a:hover i{
    color:#fff;
    background:rgba(255,255,255,.18);
}


/* =====================================================
   DESKTOP CTA
===================================================== */

.arpan-nav-cta{
    display:flex;
    align-items:center;
    gap:10px;
}

.arpan-call-btn{
    min-height:45px;

    padding:0 19px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;

    color:#fff;

    text-decoration:none;

    font-size:12px;
    font-weight:700;

    border-radius:11px;

    background:
        linear-gradient(
            135deg,
            #ff7a00,
            #7923d0
        );

    box-shadow:
        0 8px 20px rgba(152,63,240,.25);

    transition:.3s ease;
}

.arpan-call-btn:hover{
    color:#fff;
    transform:translateY(-2px);

    box-shadow:
        0 13px 28px rgba(152,63,240,.35);
}


/* =====================================================
   MOBILE HAMBURGER
===================================================== */

.arpan-mobile-toggle{
    width:45px;
    height:45px;

    display:none;

    align-items:center;
    justify-content:center;

    border:0;
    outline:none;

    border-radius:12px;

    color:var(--arpan-purple);

    background:var(--arpan-purple-light);

    font-size:19px;

    cursor:pointer;

    transition:.3s ease;
}

.arpan-mobile-toggle:hover{
    background:#ead8ff;
}


/* =====================================================
   MOBILE OVERLAY
===================================================== */

.arpan-menu-overlay{

    position:fixed;

    inset:0;

    z-index:99998;

    background:
        rgba(19,10,31,.55);

    opacity:0;
    visibility:hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;

    backdrop-filter:blur(3px);
}

.arpan-menu-overlay.active{
    opacity:1;
    visibility:visible;
}


/* =====================================================
   MOBILE SIDE MENU
===================================================== */

.arpan-mobile-menu{

    position:fixed;

    top:0;
    right:0;

    width:390px;
    max-width:88vw;
    height:100vh;

    z-index:99999;

    background:#fff;

    display:flex;
    flex-direction:column;

    box-shadow:
        -15px 0 50px rgba(30,10,50,.20);

    transform:translateX(105%);

    transition:
        transform .42s
        cubic-bezier(.77,0,.18,1);

    overflow-y:auto;
    overscroll-behavior:contain;
}

.arpan-mobile-menu.active{
    transform:translateX(0);
}


/* =====================================================
   MOBILE MENU HEADER
===================================================== */

.arpan-mobile-header{

    min-height:88px;

    padding:18px 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    border-bottom:1px solid rgba(152,63,240,.10);

    background:
        linear-gradient(
            135deg,
            #fff 0%,
            #fbf7ff 100%
        );
}

.arpan-mobile-brand{
    display:flex;
    align-items:center;
    gap:11px;
}

.arpan-mobile-brand-icon{

    width:43px;
    height:43px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            #983ff0,
            #7923d0
        );

    box-shadow:
        0 7px 18px rgba(152,63,240,.25);
}

.arpan-mobile-brand-text{
    display:flex;
    flex-direction:column;
}

.arpan-mobile-brand-text strong{
    color:var(--arpan-dark);

    font-size:16px;
    font-weight:800;
}

.arpan-mobile-brand-text span{
    color:var(--arpan-purple);

    font-size:8px;
    font-weight:600;

    letter-spacing:1px;
    text-transform:uppercase;

    margin-top:3px;
}


/* =====================================================
   CLOSE BUTTON
===================================================== */

.arpan-close-menu{

    width:42px;
    height:42px;

    border:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:11px;

    color:#fff;

    background:var(--arpan-purple);

    font-size:18px;

    cursor:pointer;

    box-shadow:
        0 7px 18px rgba(152,63,240,.25);

    transition:.3s ease;
}

.arpan-close-menu:hover{
    background:var(--arpan-purple-dark);
    transform:rotate(90deg);
}


/* =====================================================
   MOBILE MENU BODY
===================================================== */

.arpan-mobile-body{

    padding:18px;

    flex:1;
}


/* =====================================================
   MOBILE NAV LINKS
===================================================== */

.arpan-mobile-link{

    width:100%;

    min-height:53px;

    margin-bottom:7px;

    padding:0 15px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    color:#393142;

    text-decoration:none;

    font-size:14px;
    font-weight:600;

    border-radius:12px;

    transition:.25s ease;
}

.arpan-mobile-link-left{

    display:flex;
    align-items:center;
    gap:12px;
}

.arpan-mobile-link-left i{

    width:34px;
    height:34px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:9px;

    color:var(--arpan-purple);

    background:#f5ebff;

    font-size:12px;
}

.arpan-mobile-link:hover,
.arpan-mobile-link.active{

    color:var(--arpan-purple);

    background:#f8f1ff;
}


/* =====================================================
   MOBILE SERVICES
===================================================== */

.arpan-mobile-services-btn{

    width:100%;

    min-height:53px;

    margin-bottom:7px;

    padding:0 15px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    border:0;

    color:#393142;

    background:#fff;

    border-radius:12px;

    font-family:'Poppins',sans-serif;

    font-size:14px;
    font-weight:600;

    cursor:pointer;

    transition:.25s ease;
}

.arpan-mobile-services-btn:hover,
.arpan-mobile-services-btn.open{

    color:var(--arpan-purple);

    background:#f8f1ff;
}

.arpan-mobile-services-left{

    display:flex;
    align-items:center;
    gap:12px;
}

.arpan-mobile-services-left i{

    width:34px;
    height:34px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:9px;

    color:var(--arpan-purple);

    background:#f5ebff;

    font-size:12px;
}

.arpan-services-chevron{

    font-size:11px;

    transition:.3s ease;
}

.arpan-mobile-services-btn.open
.arpan-services-chevron{

    transform:rotate(180deg);
}


/* =====================================================
   MOBILE SERVICES SUB MENU
===================================================== */

.arpan-mobile-submenu{

    max-height:0;

    overflow:hidden;

    padding-left:13px;

    transition:
        max-height .4s
        cubic-bezier(.4,0,.2,1);
}

.arpan-mobile-submenu.open{
    max-height:500px;
}

.arpan-mobile-submenu a{

    min-height:45px;

    display:flex;
    align-items:center;

    gap:10px;

    padding:0 12px;

    margin-bottom:4px;

    color:#51485e;

    text-decoration:none;

    font-size:12px;
    font-weight:500;

    border-left:
        2px solid #ead9ff;

    transition:.25s ease;
}

.arpan-mobile-submenu a i{

    width:26px;
    height:26px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--arpan-purple);

    background:#f6edff;

    border-radius:7px;

    font-size:10px;
}

.arpan-mobile-submenu a:hover{

    color:var(--arpan-purple);

    padding-left:17px;

    border-left-color:var(--arpan-purple);
}


/* =====================================================
   MOBILE BOTTOM CTA
===================================================== */

.arpan-mobile-footer{

    padding:18px;

    border-top:1px solid rgba(152,63,240,.10);

    background:#fcfaff;
}

.arpan-mobile-quote{

    width:100%;

    min-height:52px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;

    color:#fff;

    text-decoration:none;

    border-radius:12px;

    background:
        linear-gradient(
            135deg,
            #983ff0,
            #7923d0
        );

    font-size:13px;
    font-weight:700;

    box-shadow:
        0 9px 22px rgba(152,63,240,.25);

    transition:.3s ease;
}

.arpan-mobile-quote:hover{
    color:#fff;
    transform:translateY(-2px);
}


/* =====================================================
   MOBILE MENU INFO
===================================================== */

.arpan-mobile-info{

    margin-top:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:7px;

    color:#80768c;

    font-size:10px;
    font-weight:500;
}

.arpan-mobile-info i{
    color:#983ff0;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1050px){

    .arpan-nav-container{
        gap:12px;
    }

    .arpan-nav-menu > li > a{
        padding:11px 9px;
        font-size:12px;
    }

    .arpan-call-btn{
        padding:0 14px;
    }
}


/* =====================================================
   TABLET + MOBILE
===================================================== */

@media(max-width:850px){

    .arpan-nav-container{
        height:74px;
        padding:0 15px;
    }

    /* Hide desktop menu */
    .arpan-nav-menu{
        display:none;
    }

    /* Show hamburger */
    .arpan-mobile-toggle{
        display:flex;
    }

    .arpan-logo-icon{
        width:45px;
        height:45px;
        border-radius:12px;
        font-size:19px;
    }

    .arpan-logo-text strong{
        font-size:17px;
    }

    .arpan-logo-text span{
        font-size:8px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:500px){

    .arpan-nav-container{
        padding:0 12px;
    }

    .arpan-logo{
        gap:9px;
    }

    .arpan-logo-icon{
        width:42px;
        height:42px;
    }

    .arpan-logo-text strong{
        font-size:15px;
    }

    .arpan-logo-text span{
        font-size:7px;
        letter-spacing:.7px;
    }

    .arpan-call-btn{
        display:none;
    }

    .arpan-mobile-toggle{
        width:42px;
        height:42px;
    }

    .arpan-mobile-menu{
        width:100%;
        max-width:100%;
    }
}
/* =========================
   BREADCRUMB SECTION
========================= */

.arpan-breadcrumb-section {
    position: relative;
    overflow: hidden;
    padding: 55px 0;
    background:
    radial-gradient(
        circle at 90% 15%,
        rgba(255, 102, 0, 0.45) 0%,
        rgba(255, 102, 0, 0.25) 25%,
        transparent 55%
    ),
    linear-gradient(
        135deg,
        #0d1b2a 0%,
        #15344a 38%,
        #ff6600 100%
    );
}


/* Decorative Circle */

.arpan-breadcrumb-section::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    right: -120px;
    top: -180px;
}

.arpan-breadcrumb-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 50%;
    left: -100px;
    bottom: -140px;
}


/* =========================
   CONTENT
========================= */

.arpan-breadcrumb-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================
   LEFT CONTENT
========================= */

.arpan-breadcrumb-left {
    max-width: 650px;
}

.arpan-breadcrumb-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 14px;

    border-radius: 50px;

    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.18);

    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;

    margin-bottom: 13px;
}

.arpan-breadcrumb-tag i {
    font-size: 11px;
}


.arpan-breadcrumb-left h1 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.arpan-breadcrumb-left p {
    margin: 0;

    max-width: 570px;

    color: rgba(255,255,255,0.82);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================
   BREADCRUMB NAV
========================= */

.arpan-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 18px;

    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);

    border-radius: 50px;

    white-space: nowrap;
}

.arpan-breadcrumb-nav a {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #ffffff;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s ease;
}

.arpan-breadcrumb-nav a:hover {
    opacity: 0.75;
}

.arpan-breadcrumb-nav a i {
    font-size: 12px;
}

.arpan-breadcrumb-nav span {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 500;
}

.arpan-breadcrumb-arrow {
    color: rgba(255,255,255,0.55);
    font-size: 9px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .arpan-breadcrumb-section {
        padding: 45px 0;
    }

    .arpan-breadcrumb-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .arpan-breadcrumb-left h1 {
        font-size: 36px;
    }

}


@media (max-width: 575px) {

    .arpan-breadcrumb-section {
        padding: 38px 0;
    }

    .arpan-breadcrumb-left h1 {
        font-size: 30px;
    }

    .arpan-breadcrumb-left p {
        font-size: 13px;
    }

    .arpan-breadcrumb-tag {
        font-size: 11px;
    }

    .arpan-breadcrumb-nav {
        padding: 11px 14px;
        gap: 9px;
    }

    .arpan-breadcrumb-nav a,
    .arpan-breadcrumb-nav span {
        font-size: 12px;
    }

}/* =========================
   FAQ SECTION
========================= */

.arpan-faq-section {
    padding: 90px 0;
    background: #faf8fd;
    overflow: hidden;
}


/* =========================
   HEADING
========================= */

.arpan-faq-heading {
    max-width: 760px;
    margin: 0 auto 55px;
}

.arpan-faq-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 15px;

    border-radius: 50px;

    background: rgba(152,63,240,0.10);
    color: #ff6600;

    font-size: 12px;
    font-weight: 700;
}

.arpan-faq-heading h2 {
    margin: 16px 0 13px;

    color: #1c1230;

    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
}

.arpan-faq-heading h2 span {
    display: block;

    background: linear-gradient(
        135deg,
        #ff6600,
        #ff6600
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.arpan-faq-heading p {
    margin: 0;

    color: #77717f;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================
   LEFT INFO CARD
========================= */

.arpan-faq-info {
    padding: 38px 32px;

    background: linear-gradient(
        135deg,
        #ff6600,
        #ff6600
    );

    border-radius: 25px;

    position: relative;
    overflow: hidden;

    box-shadow: 0 18px 45px rgba(121,35,208,0.17);
}

.arpan-faq-info::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 50%;

    top: -110px;
    right: -90px;
}

.arpan-faq-info::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 50%;

    bottom: -80px;
    left: -60px;
}


.arpan-faq-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.15);

    border: 1px solid rgba(255,255,255,0.20);

    border-radius: 16px;

    color: #ffffff;
    font-size: 23px;

    margin-bottom: 22px;

    position: relative;
    z-index: 2;
}


.arpan-faq-info h3 {
    position: relative;
    z-index: 2;

    color: #ffffff;

    font-size: 24px;
    line-height: 1.35;
    font-weight: 750;

    margin-bottom: 13px;
}

.arpan-faq-info > p {
    position: relative;
    z-index: 2;

    color: rgba(255,255,255,0.82);

    font-size: 13px;
    line-height: 1.8;

    margin-bottom: 25px;
}


/* =========================
   FAQ POINTS
========================= */

.arpan-faq-points {
    position: relative;
    z-index: 2;

    margin-bottom: 27px;
}

.arpan-faq-points div {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 12px;

    color: rgba(255,255,255,0.90);

    font-size: 13px;
}

.arpan-faq-points i {
    width: 21px;
    height: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.16);

    border-radius: 50%;

    font-size: 9px;
}


/* =========================
   FAQ BUTTON
========================= */

.arpan-faq-btn {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 20px;

    background: #ffffff;

    color: #7923d0;

    border-radius: 50px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s ease;
}

.arpan-faq-btn:hover {
    color: #7923d0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


/* =========================
   FAQ LIST
========================= */

.arpan-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.arpan-faq-item {
    background: #ffffff;

    border: 1px solid #eee7f5;

    border-radius: 15px;

    overflow: hidden;

    transition: 0.3s ease;
}

.arpan-faq-item.active {
    border-color: rgba(152,63,240,0.25);

    box-shadow: 0 10px 30px rgba(121,35,208,0.08);
}


/* =========================
   QUESTION
========================= */

.arpan-faq-question {
    width: 100%;

    border: 0;
    outline: none;

    background: transparent;

    padding: 19px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    text-align: left;

    cursor: pointer;

    color: #241536;

    font-size: 14px;
    font-weight: 700;
}

.arpan-faq-question span {
    display: flex;
    align-items: center;
    gap: 14px;
}

.arpan-faq-question b {
    min-width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(152,63,240,0.09);

    color: #ff6600;

    font-size: 10px;
}

.arpan-faq-question > i {
    width: 30px;
    height: 30px;

    min-width: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(152,63,240,0.09);

    color: #7923d0;

    font-size: 11px;

    transition: 0.3s ease;
}


/* =========================
   ANSWER
========================= */

.arpan-faq-answer {
    max-height: 0;

    overflow: hidden;

    padding: 0 20px;

    transition:
        max-height 0.4s ease,
        padding 0.3s ease;
}

.arpan-faq-answer p {
    margin: 0;

    padding: 0 0 19px 46px;

    color: #77717f;

    font-size: 13px;
    line-height: 1.8;
}


.arpan-faq-item.active .arpan-faq-answer {
    max-height: 250px;

    padding-top: 0;
}

.arpan-faq-item.active
.arpan-faq-question > i {
    transform: rotate(45deg);

    background: linear-gradient(
        135deg,
        #ff6600,
        #ff6600
    );

    color: #ffffff;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .arpan-faq-section {
        padding: 70px 0;
    }

    .arpan-faq-heading h2 {
        font-size: 33px;
    }

}


@media (max-width: 767px) {

    .arpan-faq-section {
        padding: 60px 0;
    }

    .arpan-faq-heading {
        margin-bottom: 35px;
    }

    .arpan-faq-heading h2 {
        font-size: 28px;
    }

    .arpan-faq-info {
        padding: 30px 25px;
    }

}


@media (max-width: 575px) {

    .arpan-faq-heading h2 {
        font-size: 25px;
    }

    .arpan-faq-heading p {
        font-size: 13px;
    }

    .arpan-faq-info {
        padding: 27px 20px;
        border-radius: 20px;
    }

    .arpan-faq-info h3 {
        font-size: 21px;
    }

    .arpan-faq-question {
        padding: 16px 14px;
        font-size: 12.5px;
    }

    .arpan-faq-question span {
        gap: 9px;
    }

    .arpan-faq-question b {
        min-width: 28px;
        height: 28px;
        font-size: 9px;
    }

    .arpan-faq-answer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .arpan-faq-answer p {
        padding-left: 37px;
        font-size: 12px;
    }

}
