body,
html {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important
}

:root {
    --srv-emerald: #059669;
    --srv-teal: #0f766e;
    --srv-yellow: #f59e0b;
    --srv-dark: #064e3b;
    --text-grey: #475569;
    --grad-sunrise: linear-gradient(135deg, #064e3b 0%, #0d9488 100%);
    --light-mint: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    --light-sun: linear-gradient(135deg, #fdfbfb 0%, #fffbeb 100%)
}

h1,
h2,
h3,
h4 {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    color: var(--srv-dark)
}

body {
    padding-top: 80px;
    color: #333;
    line-height: 1.6;
    background: var(--soft-grad-white);
    overflow-x: hidden
}

section {
    padding: 90px 5%;
    box-sizing: border-box
}

img {
    max-width: 100%;
    display: block;
    border-radius: 20px
}

.hs-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px
}

.hs-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px
}

.hs-header p {
    font-size: 1.1rem;
    color: var(--text-grey)
}

.srv-hero {
    background: var(--grad-sunrise);
    color: #fff;
    position: relative;
    min-height: 70vh;
    padding: 150px 5% 80px !important;
    overflow: visible
}

.srv-badge,
.srv-btn-primary {
    background: #fde047;
    color: var(--srv-dark);
    border-radius: 50px;
    font-weight: 800
}

.srv-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px
}

.srv-hero-content {
    flex: 1;
    width: 50%
}

.srv-hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff
}

.pack-card.highlighted i,
.srv-hero-content .highlight {
    color: #fde047
}

.srv-hero-content p {
    font-size: 1.15rem;
    opacity: .95;
    margin-bottom: 35px;
    color: #fff
}

.srv-badge {
    padding: 8px 18px;
    font-size: .9rem;
    display: inline-block;
    margin-bottom: 20px
}

.srv-hero-btns {
    display: flex;
    gap: 20px;
    align-items: center
}

.srv-btn-primary,
.srv-btn-secondary {
    transition: .3s;
    display: inline-block
}

.srv-btn-primary {
    padding: 16px 35px;
    font-size: 1.1rem
}

.srv-btn-primary:hover {
    transform: translateY(-4px);
    background: #fff
}

.srv-btn-secondary {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .4);
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(5px)
}

.srv-btn-secondary:hover {
    background: rgba(255, 255, 255, .2);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1)
}

.pack-btn:hover,
.pack-card.highlighted {
    background: var(--srv-teal);
    transform: scale(1.05)
}

.srv-hero-visual {
    flex: 1;
    width: 50%;
    position: relative;
    aspect-ratio: 16/9
}

.srv-hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    box-shadow: 0 0 50px rgba(241, 196, 15, .2);
    border: 1px solid rgba(255, 255, 255, .1);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    transition: .5s;
    object-fit: cover
}

.srv-floating-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: #fff;
    color: var(--srv-dark);
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 800;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    animation: 3s ease-in-out infinite float;
    white-space: nowrap;
    z-index: 10
}

.srv-floating-card i {
    color: var(--srv-yellow);
    font-size: 1.8rem
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }
}

.hs-packages,
.hs-savings {
    background: var(--light-mint)
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center
}

.srv-process-grid,
.why-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1200px
}

.pack-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: .4s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .02)
}

.pack-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(10, 92, 43, .15);
    border-color: var(--arka-gold)
}

.pack-head {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--srv-teal);
    margin-bottom: 10px
}

.pack-price {
    font-size: 1.8rem !important;
    font-weight: 800;
    color: var(--arka-green);
    margin-bottom: 5px
}

.pack-desc {
    font-weight: 700;
    color: #e67e22 !important;
    margin-bottom: 15px;
    font-size: .95rem
}

.pack-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px
}

.pack-features li {
    margin-bottom: 12px;
    color: var(--text-grey);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600
}

.pack-features i {
    color: var(--srv-emerald)
}

.pack-btn {
    display: block;
    border: 2px solid var(--srv-teal);
    color: var(--srv-teal);
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s
}

.pack-card.highlighted {
    color: #fff;
    border: none;
    box-shadow: 0 20px 40px rgba(13, 148, 136, .3)
}

.pack-card.highlighted .pack-head,
.pack-card.highlighted .pack-price {
    color: #fff
}

.pack-card.highlighted .pack-desc,
.pack-card.highlighted .pack-features li {
    color: #e0f2fe
}

.pack-card.highlighted:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(3, 17, 8, .3)
}

.pack-btn-main {
    display: block;
    background: #fde047;
    color: var(--srv-dark);
    padding: 15px;
    border-radius: 50px;
    font-weight: 800
}

.pack-btn:hover {
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(13, 148, 136, .3)
}

.pack-btn-main:hover {
    background: #fff;
    color: var(--srv-dark);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(252, 224, 71, .4)
}

.pack-card:hover .pack-features i {
    transform: scale(1.2);
    transition: .3s
}

.odisha-highlight {
    background: rgba(10, 92, 43, .03);
    padding: 10px 15px;
    border-radius: 10px;
    border-left: 4px solid #f1c40f;
    animation: 2.5s infinite gold-glow-pulse;
    position: relative;
    border: 1.5px solid #f1c40f;
    margin: 10px 0;
    transition: .4s
}

.odisha-highlight span {
    color: #031108 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .5px
}

.odisha-highlight i {
    color: #f1c40f !important;
    transform: scale(1.1)
}

@keyframes gold-glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(241, 196, 15, .2);
        border-color: rgba(241, 196, 15, .6)
    }

    50% {
        box-shadow: 0 0 15px rgba(241, 196, 15, .6);
        border-color: #f1c40f
    }
}

.hs-whyus,
.srv-faq,
.srv-process {
    background: #fff
}

.srv-process-grid {
    display: grid;
    gap: 30px;
    margin: 0 auto
}

.step-card {
    background: var(--light-sun);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: left;
    border: 1px solid #fef3c7
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--srv-yellow);
    opacity: .3;
    margin-bottom: -10px
}

.savings-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px
}

.savings-img,
.savings-text {
    flex: 1
}

.savings-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px
}

.save-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0
}

.stat-box {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .05);
    flex: 1;
    border-left: 4px solid var(--srv-emerald)
}

.stat-box i {
    font-size: 2rem;
    color: var(--srv-emerald);
    margin-bottom: 10px
}

.why-grid {
    display: grid;
    gap: 30px;
    margin: 0 auto;
    text-align: center
}

.why-item {
    padding: 30px
}

.why-item i {
    font-size: 3.5rem;
    color: var(--srv-teal);
    margin-bottom: 20px
}

.hs-split {
    background: var(--light-sun)
}

.split-wrap {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto
}

.split-card {
    flex: 1;
    padding: 50px;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.split-card.light-mint {
    background: var(--light-mint);
    border: 1px solid #dcfce7
}

.split-card.light-sun {
    background: #fff;
    border: 1px solid #fef3c7
}

.sc-content h3 {
    font-size: 2rem;
    margin-bottom: 15px
}

.sc-content li {
    margin-bottom: 10px;
    font-weight: 600;
    list-style: none
}

.sc-content i {
    color: var(--srv-emerald);
    margin-right: 10px
}

.sc-icon i {
    font-size: 5rem;
    color: var(--srv-teal);
    opacity: .2
}

.faq-container {
    max-width: 800px;
    margin: 0 auto
}

.faq-box {
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    background: var(--light-mint);
    overflow: hidden
}

.faq-box summary {
    padding: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    background: #fff;
    color: var(--srv-dark)
}

.faq-box p {
    padding: 20px;
    color: var(--text-grey)
}

.srv-cta {
    background: var(--grad-sunrise);
    color: #fff;
    text-align: center;
    padding: 100px 5%;
    border-radius: 50px 50px 0 0
}

.srv-cta h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px
}

@media (max-width:1050px) and (min-width:769px) {

    .savings-container,
    .split-wrap,
    .srv-container {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        gap: 20px !important
    }

    .srv-hero-content {
        width: 55% !important;
        flex: none !important
    }

    .srv-hero-visual {
        width: 45% !important;
        flex: none !important
    }

    .srv-hero-content h1 {
        font-size: 2.6rem !important
    }

    .srv-floating-card {
        right: 0 !important;
        left: auto !important;
        bottom: 10px !important;
        padding: 10px 15px !important;
        font-size: 1rem !important
    }
}

@media (max-width:768px) {
    section {
        padding: 60px 5%
    }

    .srv-hero {
        padding-top: 130px !important
    }

    .savings-container,
    .split-wrap,
    .srv-container {
        flex-direction: column !important;
        text-align: center;
        gap: 30px !important
    }

    .srv-hero-content,
    .srv-hero-visual {
        width: 100% !important
    }

    .srv-hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
        word-wrap: break-word
    }

    .srv-hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: center
    }

    .srv-btn-secondary {
        margin-left: 0;
        margin-top: 10px
    }

    .srv-floating-card {
        position: absolute !important;
        bottom: -15px !important;
        left: 50% !important;
        right: auto !important;
        top: auto !important;
        margin: 0 !important;
        width: max-content !important;
        animation: 3s ease-in-out infinite floatMobile !important
    }

    .package-grid,
    .save-stats,
    .srv-process-grid,
    .why-grid {
        display: flex !important;
        flex-direction: column !important;
        width: 100%;
        gap: 15px
    }

    .pack-card,
    .split-card,
    .stat-box,
    .step-card,
    .why-item {
        width: 100% !important;
        padding: 25px 15px !important;
        margin: 0 !important;
        box-sizing: border-box
    }

    .pack-card.highlighted {
        transform: scale(1) !important;
        width: 100% !important
    }

    .sc-icon {
        display: none
    }
}

@keyframes floatMobile {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(-10px)
    }
}

@media (max-width:850px) {
    section {
        padding: 40px 5%
    }

    .srv-hero {
        padding-top: 140px !important;
        min-height: auto !important;
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .srv-badge {
        white-space: nowrap !important;
        display: inline-block !important;
        margin: 10px auto 15px !important;
        font-size: 12px
    }

    .srv-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
        margin-top: 0 !important
    }

    .srv-hero-content {
        width: 100% !important;
        order: 1
    }

    .srv-hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 10px !important
    }

    .srv-hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        align-items: center;
        margin-top: 15px
    }

    .srv-hero-visual {
        width: 100% !important;
        order: 2;
        margin-top: 20px
    }

    .srv-floating-card {
        position: relative !important;
        margin: -40px auto 30px !important;
        display: block !important;
        width: 90% !important;
        max-width: 280px;
        left: 0 !important;
        right: 0 !important;
        z-index: 100 !important;
        animation: 3s ease-in-out infinite floatingCenterFinal !important
    }

    @keyframes floatingCenterFinal {

        0%,
        100% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(-20px)
        }
    }
}