/* home page start here */

:root {
    --navy-bg: #062d60;
    --teal-accent: #0082a4;
    --mint-green: #00d4bd;
    --pure-white: #ffffff;
    --soft-white: rgba(248, 250, 252, 0.9);
    --text-dark: #1e293b;

}


.hero-container {
    background-color: var(--navy-bg);
    padding: 50px 0;
    position: relative;
    color: var(--pure-white);
    display: flex;
    align-items: center;
    overflow: visible;
}


.floating-stats {
    position: absolute;
    top: 20px;
    right: 45px;
    background: var(--teal-accent);
    color: var(--pure-white);
    padding: 2px 6px;
    border-radius: 10px;
    z-index: 110;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px dotted rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    font-size: 0.85rem;
    font-weight: 700;
}


.hero-content {
    text-align: left;
    padding-right: 15px;
}


ul.tight-list {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-left: 1.1rem !important;
    list-style-type: disc !important;
    color: #00E5FF;
}

ul.tight-list li {
    margin: 0 !important;
    padding: 0 !important;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.3 !important;
}


ul.tight-list li::marker {
    color: white !important;
    font-size: 1.25rem;
}

.hero-content h1 {
    font-weight: 800;
    font-size: 1.7rem;
    line-height: 1.1;
    margin-bottom: 10px;
    text-align: justify;
    text-justify: inter-word;
    color: #00E5FF;
}

.hero-content h4 {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--pure-white);
}

.hero-description {
    font-size: 0.85rem !important;
    color: var(--soft-white);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 550px;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;

}

@media (max-width: 991px) {
    .hero-description {
        text-align: justify;
        text-justify: inter-word;
        margin: 0 auto 25px;
    }
}


.hero-description1 {
    font-size: 0.75rem;
    color: var(--soft-white);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 550px;


    text-align: justify;
    text-justify: inter-word;
    display: block;

    opacity: 0.9;
    font-weight: 500;
}


@media (max-width: 991px) {
    .hero-description1 {
        text-align: justify;
        text-justify: inter-word;
        margin: 0 auto 25px;
    }
}



.benefit-list {
    margin-bottom: 25px !important;
    padding: 0;
}

span {
    font-size: 0.9rem;
    font-weight: 400;
}

.benefit-list li {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px !important;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--mint-green);
}



.pricing-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    color: var(--text-dark);
    border: 2px dotted var(--teal-accent);
    position: relative;
    z-index: 10;
}

.card-tag {
    background: #fff5ed;
    color: var(--accent-orange);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
}

.pricing-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 !important;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px !important;
    font-size: 0.8rem;
    font-weight: 350;
    color: #000000;
}

.pricing-list i {
    color: var(--teal-accent);
    font-size: 0.75rem;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-main,
.btn-outline {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-main {
    background: var(--teal-accent);
    color: var(--pure-white) !important;
    border: 2px solid transparent;
}

.btn-outline {
    border: 2px solid var(--pure-white);
    color: var(--pure-white) !important;
}


@media (max-width: 576px) {

    .button-group-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-main,
    .btn-outline {
        width: 100%;

        padding: 14px 20px;
        margin: 0;

    }
}


.trust-badges {
    display: flex;
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
}

.trust-badges span {
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991px) {
    .hero-container {
        padding: 40px 15px;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-description {
        margin: 0 auto 20px;
        text-align: center;

    }

    .hero-actions,
    .trust-badges,
    .benefit-list {
        justify-content: center;
    }

    .floating-stats {
        position: relative;
        top: 0;
        right: 0;
        margin: 0 auto 20px;
        width: fit-content;
    }

    .btn-main,
    .btn-outline {
        width: 100%;
        margin: 0 !important;
    }

    .hero-actions {
        flex-direction: column;
    }

    .pricing-card li {
        justify-content: center;
    }
}

/* end here hero page */


/* start here account pro section */

#accounting-pro-section {
    background: linear-gradient(135deg, #f7f8ff, #eef1ff);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Roboto, sans-serif;
}


#accounting-pro-section .aps-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: .6;
}

.aps-shape-1 {
    width: 250px;
    height: 250px;
    background: #dfe4ff;
    top: -100px;
    left: -100px;
}

.aps-shape-2 {
    width: 220px;
    height: 220px;
    background: #cfd6ff;
    bottom: -100px;
    right: -80px;
}

#accounting-pro-section .aps-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;

    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

#accounting-pro-section .aps-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}

#accounting-pro-section h2 {
    color: #0082a4;
    font-size: 1.75rem;
    margin: 0 0 15px 0;
    padding: 0;
    line-height: 1.25;
    font-weight: 700;
    text-align: left;
}

#accounting-pro-section p.main-contet-video {
    color: #555;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 20px 0;
    padding: 0;
    text-align: justify;
    text-justify: inter-word;
    width: 100%;
}

#accounting-pro-section .aps-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#accounting-pro-section .aps-video {
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    padding: 10px;
    border-radius: 15px;
    border: 1px solid #062d60;
    aspect-ratio: 1 / 0.8;
    max-height: 380px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

lottie-player {
    width: 95% !important;
    height: 95% !important;
}


@media (max-width: 768px) {
    #accounting-pro-section {
        padding: 50px 0;
    }

    #accounting-pro-section .aps-container {
        flex-direction: column;
        gap: 30px;
    }

    #accounting-pro-section h2 {
        font-size: 1.5rem;
        text-align: left;
    }

    #accounting-pro-section p.main-contet-video {
        text-align: left;
        text-justify: none;
        font-size: 14px;
    }

    #accounting-pro-section .aps-video {
        max-height: 280px;

        width: 100%;
    }
}

/* what we provide start here */

:root {
    --navy: #0082a4;
    --teal: #062d60;
}

.provide-section-premium {
    background-color: #ffffff;
    padding: 45px 0;
    position: relative;
}

.image-sticky-wrapper {
    position: sticky;
    top: 20px;
    padding-right: 30px;
    margin-left: 20px;
}

.image-frame {
    position: relative;
    padding: 12px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 25px 55px rgba(0, 130, 164, 0.12);
    border: 1px solid #f1f5f9;
    width: 110%;
}

.image-frame img {
    border-radius: 8px;
    width: 100%;
    height: 420px;
    display: block;
    object-fit: cover;
}

.service-steps {
    position: relative;
    padding-left: 50px;
    margin-left: 25px;
}

.service-steps::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--navy) 0%, #f1f5f9 100%);
}

.step-item {
    position: relative;
    margin-bottom: 28px;
    transition: 0.3s;
}

.step-dot {
    position: absolute;
    left: -50px;
    top: 4px;
    width: 30px;
    height: 30px;
    background: #fff;
    border: 2px solid var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 2;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step-item:hover .step-dot {
    background: var(--navy);
    color: #fff;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 5px;
    line-height: 1.3;
}

.step-content p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: justify;
}

@media (max-width: 991px) {
    .provide-section-premium {
        padding: 35px 0;
    }

    .image-sticky-wrapper {
        position: static;
        padding-right: 0;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .image-frame {
        width: 100%;
    }

    .image-frame img {
        height: auto;
        min-height: 250px;
    }

    .service-steps {
        padding-left: 40px;
        margin-left: 0;
    }

    .step-dot {
        left: -40px;
    }

    .step-content p {
        text-align: left;
    }
}

/* end here what we provide */


/* our process start here */

:root {
    --navy: #0082a4;
    --teal: #062d60;
    --process-bg: #f0f4f7;
    --muted-text: #5f6c7b;
}

.process-section {
    background-color: var(--process-bg);
    padding: 40px 0;
    width: 100%;
    overflow: hidden;
}

.process-h2 {
    color: #000000;
    font-size: 1.7rem;
    font-weight: 600;
}

.process-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 15px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.process-container::before {
    content: '';
    position: absolute;
    top: 21px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: #cbd5e1;
    z-index: 1;
}

.process-card {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number-circle {
    width: 42px;
    height: 42px;
    background: #ffffff;
    border: 2px solid var(--navy);
    color: #062d60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.process-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #062d60;
    margin-bottom: 8px;
    line-height: 1.2;
}


.process-card p {
    font-size: 0.85rem;
    color: var(--muted-text);
    line-height: 1.6;
    margin-bottom: 0;
    padding: 0 10px;
    display: block;
    text-align: justify;
    text-align: left;
    hyphens: auto;
    word-break: break-word;
}


@media (max-width: 768px) {
    .process-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .process-container::before {
        display: none;
    }

    .process-card:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 42px;
        left: 50%;
        width: 1px;
        height: 40px;
        background: #cbd5e1;
        z-index: 1;
    }

    .process-card {
        width: 100%;
        max-width: 300px;
    }

    .process-card p {
        text-align: justify;
        text-justify: inter-word;
        text-align-last: center;
        hyphens: auto;
        word-break: break-word;
        line-height: 1.6;
        font-size: 0.85rem;
        padding: 0 10px;
        margin: 0;
        display: block;
        width: 100%;
    }
}

/* our process end here */



/* why choose start */
.why-choose-section {
    padding: 80px 0;
    background-color: #f4f7fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.why-choose-section h2 {
    color: #007ba7;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
}

.why-choose-section .section-subtitle {
    font-style: italic;
    font-weight: 600;
    color: #062d60;
    margin-bottom: 15px;
    text-align: center;
    display: block;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: center;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 0 15px;
}

.why-card {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #0082a4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.why-icon-box {
    width: 60px;
    height: 60px;
    background-color: #e6f0f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.why-icon-box img,
.why-icon-box i {
    width: 28px;
    height: auto;
    color: #062d60;
}

.why-card h4 {
    font-size: 1.1rem;
    color: #062d60;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.why-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1200px) {
    .why-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .why-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-description {
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .why-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-choose-section h2 {
        font-size: 1.8rem;
    }
}

/* why choose end here */



/* driving result here */
.brand-ticker-section {
    background-color: #ffffff;
    padding: 60px 0;
    overflow: hidden;
}

.ticker-title {
    color: #062d60;
    font-weight: 550;
    font-size: 1.7rem;
    margin-bottom: 5px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.ticker-subtitle {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 40px 0 20px 0;
    position: relative;

}

.ticker-wrapper::before,
.ticker-wrapper::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.ticker-wrapper::before {
    left: 0;
    top: 0;
    background: linear-gradient(to right, white, transparent);
}

.ticker-wrapper::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, white, transparent);
}

.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-brands 20s linear infinite;
}


.ticker-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Card Look */
    background: #ffffff;
    border: 1px solid #062d60;
    color: #ffffff;
    border-radius: 8px;
    margin: 0 12px;
    padding: 15px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);

    /* Box size fix for all items */
    width: 200px;
    /* Har card ki width fix */
    height: 100px;
    /* Har card ki height fix */
}

.ticker-item img {

    max-height: 60px;
    max-width: 150px;

    width: auto;
    height: auto;
    object-fit: contain;
    display: block;


}


.ticker-item:hover img {}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .ticker-title {
        font-size: 1.7rem;
    }

    .ticker-item {
        padding: 0 25px;
    }

    .ticker-item img {
        height: 35px;
    }
}

/* end here driving result  */

/* swtching whiz here */

:root {
    --navy-bg: #062d60;
    --teal-accent: #0082a4;
    --light-teal: #00d2ff;
    --text-gray: #5f6c7b;
}

.switch-section {
    padding: 40px 0;
    background-color: #f0f4f7;
    width: 100%;
}

.switch-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}


.switch-card {
    flex: 1;
    background-color: var(--navy-bg);
    border-radius: 15px;
    padding: 40px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(6, 45, 96, 0.15);

}

.switch-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.switch-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.switch-list li i {
    color: #ffffff;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 50%;
}


.switch-content {
    flex: 1;
}

.switch-content h2 {
    color: var(--navy-bg);
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.switch-content p {
    color: var(--text-gray);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
    text-justify: inter-word;
}


.btn-switch {
    background-color: #0082a4;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    transition: 0.3s;
    border: none;
}

@media (max-width: 991px) {
    .switch-grid {
        flex-direction: column;
        gap: 30px;
    }

    .switch-card,
    .switch-content {
        width: 100%;
        text-align: center;
    }

    .switch-content p {
        text-align: center;
    }
}

/* end here switching here */


/* acccordian and contact us start here */

:root {
    --navy: #062d60;
    --teal: #0082a4;
    --bg: #f8fafc;
}

.faq-contact-section {
    background: var(--bg);
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 60/40 Optimized Grid --- */
.faq-grid {
    display: flex;
    gap: 35px;
    align-items: stretch;
    /* Dono ki height match rahegi */
}

/* FAQ: 60% Width */
.faq-content {
    flex: 0.6;
}

/* Form: 40% Width */
.contact-form-card {
    flex: 0.4;
    background: var(--teal);
    padding: 30px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* FAQ Optimization */
.faq-tag {
    color: var(--teal);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-content h2 {
    color: var(--navy);
    font-weight: 800;
    font-size: 32px;
    margin: 8px 0 25px;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-input {
    display: none;
}

.faq-label {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
}

.faq-label::after {
    content: '+';
    color: var(--teal);
    font-size: 18px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    font-size: 14px;
    color: #5f6c7b;
    line-height: 1.6;
}

.faq-input:checked+.faq-label::after {
    content: '-';
}

.faq-input:checked~.faq-answer {
    max-height: 150px;
    padding-bottom: 15px;
}

/* Form Elements Optimized */
.form-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
}

.form-header p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 12px;
}

.form-control-custom {
    width: 100%;
    padding: 10px 15px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    color: #333;
}

.btn-quote {
    width: 100%;
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .faq-grid {
        flex-direction: column;
    }

    .faq-content,
    .contact-form-card {
        flex: none;
        width: 100%;
    }
}

/* accordian and contact us end here */

/* cta section start here */

.cta-navy-impact {
    background-color: #062d60;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(0, 130, 164, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(0, 130, 164, 0.1) 0%, transparent 40%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cta-main-heading {
    color: #ffffff;
    font-weight: 550;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 12px !important;
}

.text-teal-highlight {
    color: #00E5FF;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
}

.cta-sub-content {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto 25px auto !important;
}

.btn-teal-cta {
    background-color: #0082a4 !important;
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-teal-cta:hover {
    background-color: #00a8d1 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 130, 164, 0.3);
}

.btn-outline-white-cta {
    background-color: transparent !important;
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-outline-white-cta:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-teal-cta i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-teal-cta:hover i {
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .cta-navy-impact {
        padding: 35px 15px;
    }

    .cta-main-heading {
        font-size: 1.1rem;
    }

    .cta-sub-content {
        font-size: 0.75rem;
        margin-bottom: 20px !important;
    }

    .btn-teal-cta,
    .btn-outline-white-cta {
        width: 100%;
        margin-bottom: 5px;
    }
}

/* cta section end here */


/* start here industries sectio here */

.hub-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 110px);
    gap: 10px;
    max-width: 1100px;
    margin: 50px auto;
    padding: 40px;
    position: relative;
    align-items: center;
}

.hub-center {
    grid-column: 3;
    grid-row: 2 / 4;
    background-color: #062d60;
    border: 1.5px solid #1e40af;
    border-radius: 20px;
    padding: 30px 10px;
    text-align: center;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.hub-center h2 {
    font-size: 20px;
    color: white;
    font-weight: 700;
    margin: 0;
}

.industry-box {
    background: #ffffff;
    border: 1.5px solid #1e40af;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 130px;
    margin: auto;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
}

.industry-box p {
    font-size: 13px;
    font-weight: 600;
    color: #1e3a8a;
    margin-top: 8px;
}


.b1 {
    grid-column: 1;
    grid-row: 2;
    transform: translate(10px, -20px);
}

.b7 {
    grid-column: 1;
    grid-row: 3;
    transform: translate(10px, 30px);
}

.b8 {
    grid-column: 2;
    grid-row: 2 / 4;
    transform: translate(-30px, 10px);
}

.b2 {
    grid-column: 2;
    grid-row: 1;
    transform: translate(10px, 20px);
}

.b3 {
    grid-column: 4;
    grid-row: 1;
    transform: translate(-10px, 20px);
}

.b4 {
    grid-column: 5;
    grid-row: 2;
    transform: translate(-10px, -20px);
}

.b6 {
    grid-column: 5;
    grid-row: 3;
    transform: translate(-10px, 30px);
}

.b5 {
    grid-column: 4;
    grid-row: 2 / 4;
    transform: translate(30px, 10px);
}

.b9 {
    grid-column: 2;
    grid-row: 4;
    transform: translate(10px, -30px);
}

.b10 {
    grid-column: 4;
    grid-row: 4;
    transform: translate(-10px, -30px);
}

.industry-box .icon {
    font-size: 30px;
}

@media (max-width: 900px) {
    .hub-section {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        align-items: center;
    }

    .hub-center {
        order: -1;
        width: 100%;
        max-width: 350px;
        min-height: auto;
        padding: 40px 20px;
        margin-bottom: 10px;
    }

    .industry-box {
        width: 100%;
        max-width: 300px;
        height: 110px;
        transform: none !important;
        margin: 0 auto;
    }

    .industry-box p {
        font-size: 14px;
    }
}

/* end here we serve indutry  */

/* start benifit section  */
#benefits-section {
    background-color: #f8fafc;
    padding: 60px 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-title {
    text-align: center;
    color: #062d60;
    font-size: clamp(24px, 4vw, 30px);
    font-weight: 800;
    margin-bottom: 40px;
}

/* 3-Column Grid Layout */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-box {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
    /* Padding thodi kam ki content fit karne ke liye */
    display: flex;
    flex-direction: column;

    /* Height 60px kam kar di (280 - 60 = 220) */
    min-height: 220px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
}

/* Header Area (Icon + Heading) */
.benefit-header {
    display: flex;
    flex-direction: column;
    /* Icon upar, text niche cleaner lagta hai */
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px;
}

.benefit-icon {
    font-size: 28px;
    line-height: 1;
    margin: 0;
    text-align: center;
}

.benefit-box h3 {
    color: #062d60;
    font-size: 15px;
    /* Font size thoda chota kiya 220px box ke liye */
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

/* Content Area */
.benefit-body {
    flex-grow: 1;
}

.benefit-box p {
    color: #444;
    font-size: 13px;
    /* Content chota dikhe isliye 13.5 se 13 kiya */
    line-height: 1.5;
    margin: 0;

    /* Perfect Start/End Alignment */
    text-align: justify;
    text-justify: inter-word;
    text-align-last: left;
    hyphens: auto;
    -webkit-hyphens: auto;
}

/* Footer Section */
.benefits-footer {
    text-align: center;
    margin-top: 40px;
}

.benefits-footer p {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.btn-consult {
    background: #062d60;
    color: white !important;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
}

/* --- MOBILE RESPONSIVE --- */

@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #benefits-section {
        padding: 40px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-box {
        min-height: 180px;
        /* Mobile par aur bhi compact */
        padding: 15px;
    }

    .benefit-box p {
        /* Mobile par proper start aur end alignment */
        text-align: justify;
        text-justify: inter-word;
        text-align-last: left;
        font-size: 13px;
        line-height: 1.5;
    }
}

/* end here benifit section */

/* start here pricing section  */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.aone-main-section {
    --navy: #1e1e62;
    --navy-dark: #19194d;
    --teal: #0082a4;
    --border-color: #e2e8f0;
    --text-muted: #64748b;
    background: #f8fafc;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aone-h2 {
    color: var(--navy);
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 12px 0;
    text-align: center;
}

.aone-h2 span {
    color: var(--teal);
}

.aone-h3 {
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 50px 0;
    text-align: center;
    max-width: 800px;
    line-height: 1.6;
}

.aone-container {
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.aone-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

/* Header Styling */
.aone-table th {
    padding: 25px 15px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    vertical-align: middle;
}

/* The Highlighted Column Header */
.aone-table th:nth-child(2) {
    background: var(--navy);
    color: #ffffff;
    font-size: 14px;
    width: 220px;
}

/* Body Styling */
.aone-table td {
    padding: 22px 15px;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

/* Feature Name Column (Left Side) */
.aone-table .feature-cell {
    text-align: left !important;
    font-weight: 700;
    color: #334155;
    padding-left: 35px !important;
    width: 25%;
}

/* The Highlighted Body Column (AONE) */
.aone-table td:nth-child(2) {
    background-color: #ffffff;
    color: var(--navy);
    font-weight: 700;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

/* Table Row Hover */
.aone-table tr:hover td:not(:nth-child(2)) {
    background-color: #f8fafc;
}

/* Mobile Responsive */
@media (max-width: 850px) {

    .aone-table,
    .aone-table thead,
    .aone-table tbody,
    .aone-table th,
    .aone-table td,
    .aone-table tr {
        display: block;
    }

    .aone-table thead {
        display: none;
    }

    .aone-table tr {
        margin-bottom: 20px;
        border: 1px solid var(--border-color);
        border-radius: 10px;
    }

    .aone-table td {
        display: flex;
        justify-content: space-between;
        padding: 12px 20px;
        text-align: right;
    }

    .aone-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--text-muted);
        font-size: 10px;
        text-transform: uppercase;
    }

    .aone-table .feature-cell {
        background: var(--navy);
        color: white !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 12px !important;
    }

    .aone-table td:nth-child(2) {
        border: none;
        background: #f0f4ff;
    }
}

/* start here  end here pricns section*/

/* External CSS File */

.main-contet-video {
    display: block !important;
    /* Ensure karega ki ye block level hai */
    width: 100% !important;
    /* Full width cover karne ke liye */
    max-width: 600px;
    /* Isse zyada width par justify bura lagta hai */
    margin: 0 auto 25px !important;
    /* Center align karne ke liye */
    padding: 0 15px;

    /* Perfect Justify Logic */
    text-align: justify !important;
    /* Forcefully dono side barabar karega */
    text-justify: inter-word !important;
    /* Gaps ko manage karega */
    text-align-last: left !important;
    /* Start hamesha left se hoga */

    /* Text Look */
    color: #444;
    font-size: 16px;
    line-height: 1.8;

    /* Mobile optimization */
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;

    /* Sharp rendering */
    text-rendering: optimizeLegibility;
}

/* Mobile ke liye specifically */
@media screen and (max-width: 768px) {
    .main-contet-video {
        font-size: 15px;
        line-height: 1.6;
        text-align: justify !important;
    }
}