:root {
    --primary: #2563eb;
    --secondary: #0f172a;
    --text: #475569;
    --light-bg: #f8fbff;
    --border: #e2e8f0;
}

body {
    overflow-x: hidden;
}

.automation-wrapper {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: #fff;
}

.section-space {
    padding: 60px 0;
}

/* SECTION TAG FIX */

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 60px;
    background: rgba(37, 99, 235, 0.08) !important;
    color: #2563eb;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.section-tag span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2563eb !important;
}

.main-heading {
    font-size: 46px;
    line-height: 1.25;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.section-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
}

/* HERO */
/* Isolated CSS for this section only */
.hero-automation-unique {
    padding: 60px 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(37, 99, 235, 0.08),
            transparent 30%
        ),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hau-main-heading {
    font-size: 46px;
    font-weight:600;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 25px;
}

.hau-text-blue {
    color: #2563eb;
}

.hau-description {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.hau-btn-group {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.hau-btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hau-btn-outline {
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hau-video-frame {
    background: #fff;
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.1);
    animation: hauFloat 6s ease-in-out infinite;
}

.hau-browser-bar {
    display: flex;
    gap: 8px;
    padding: 15px 20px;
    background: #f8fafc;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.hau-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.hau-red {
    background: #ff5f57;
}
.hau-yellow {
    background: #febc2e;
}
.hau-green {
    background: #28c840;
}

.hau-video-inner {
    overflow: hidden;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    background: #000;
    line-height: 0;
}

.hau-video-element {
    width: 100%;
    height: auto;
}

@keyframes hauFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 991px) {
    .hero-automation-unique {
        padding: 60px 0;
        text-align: center;
    }
    .hau-main-heading {
        font-size: 32px;
    }
    .hau-btn-group {
        justify-content: center;
    }
}

/* Mobile Responsiveness for Hero Buttons */
@media (max-width: 575px) {
    .hau-btn-group {
        flex-direction: column; /* Buttons ko stack karne ke liye */
        gap: 12px; /* Vertical spacing */
        width: 100%;
    }

    .hau-btn-primary,
    .hau-btn-outline {
        display: block;
        width: 100%; /* Mobile par full width buttons */
        text-align: center;
        padding: 12px 20px; /* Thoda compact padding */
        font-size: 15px;
    }
}

/* Tablet (Medium Screens) Fix */
@media (min-width: 576px) and (max-width: 991px) {
    .hau-btn-group {
        justify-content: center; /* Center align buttons on tablets */
    }
}

/* WHAT IS */
.what-is-section {
    background: #fff;
    position: relative;
    padding:60px;
}

.info-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.info-card {
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 26px;
    background: #fff;
    transition: 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.info-card i {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 18px;
}

.info-card h5 {
    color: var(--secondary);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.info-card p {
    margin: 0;
    line-height: 1.8;
    font-size: 15px;
}

/* SERVICES */
/* =========================
   MODERN SERVICES SECTION
========================= */

.services-area {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 70px;
}

.modern-service-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    min-height: 340px;
    padding: 42px;
    transition: all 0.45s ease;
}

.modern-service-card:hover {
    transform: translateY(-10px);
}

.service-card-one {
    background: #f8efe4;
}

.service-card-two {
    background: #eaf3ff;
}

.service-card-three {
    background: #f4ebff;
}

.service-card-four {
    background: #edf8ea;
}

.service-card-five {
    background: #eef7ff;
}

.service-card-six {
    background: #fff2eb;
}

.service-content {
    position: relative;
    z-index: 5;
    max-width: 75%;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    color: #111827;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 28px;
    position: relative;
    z-index: 5;
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
}

.service-icon-wrap i {
    font-size: 24px;
    color: #111827;
}

.modern-service-card:hover .service-icon-wrap {
    transform: rotate(-8deg) scale(1.05);
}

.modern-service-card h4 {
    font-size: 34px;
    line-height: 1.15;
    color: #111827;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.modern-service-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 28px;
}

.modern-service-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.modern-service-card a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: #111827;
    transition: 0.4s ease;
}

.modern-service-card:hover a::after {
    width: 100%;
}

.modern-service-card a i {
    transition: 0.4s ease;
}

.modern-service-card:hover a i {
    transform: translateX(5px);
}

/* SHAPES */

.service-pattern {
    position: absolute;
    right: -10px;
    bottom: -10px;
    opacity: 0.35;
    z-index: 1;
    transition: 0.6s ease;
}

.modern-service-card:hover .service-pattern {
    transform: scale(1.08) rotate(8deg);
}

.pattern-one {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #f5c98f, #fff3df);
    border-radius: 38px;
    transform: rotate(45deg);
}

.pattern-two {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at center, #bfdcff 20%, transparent 20%);
    background-size: 70px 70px;
}

.pattern-three {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, #e0c9ff, transparent, #e0c9ff);
}

.pattern-four {
    width: 190px;
    height: 190px;
    background: linear-gradient(135deg, #b8f1ae, #e8ffe2);
    border-radius: 50px;
    transform: rotate(45deg);
}

.pattern-five {
    width: 240px;
    height: 240px;
    background:
        linear-gradient(90deg, rgba(147, 197, 253, 0.4) 1px, transparent 1px),
        linear-gradient(rgba(147, 197, 253, 0.4) 1px, transparent 1px);
    background-size: 40px 40px;
}

.pattern-six {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ffc9aa 20%, transparent 20%);
    background-size: 40px 40px;
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .modern-service-card {
        min-height: auto;
        padding: 34px;
    }

    .service-content {
        max-width: 100%;
    }

    .modern-service-card h4 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .modern-service-card {
        padding: 28px;
        border-radius: 24px;
    }

    .modern-service-card h4 {
        font-size: 24px;
    }

    .service-badge {
        margin-bottom: 22px;
    }
}

/* IMPORTANCE */
/* =========================================
   IMPORTANCE SECTION
========================================= */

.importance-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.benefits-process-wrapper {
    margin-top: 90px;
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    align-items: center;
    gap: 30px;
}

/* SIDE ITEMS */

.benefit-side {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.process-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.benefit-number {
    font-size: 42px;
    line-height: 1;
    min-width: 62px;
    font-weight: 300;
    opacity: 0.9;
}

.benefit-content h4 {
    font-size: 28px;
    line-height: 1.3;
    color: #111827;
    font-weight: 500;
    margin-bottom: 12px;
}

.benefit-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #6b7280;
    margin: 0;
    max-width: 290px;
}

/* CENTER */

.benefit-center {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

/* ROTATING RING */

.center-ring {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    position: relative;
    animation: rotateRing 28s linear infinite;
}

.center-ring::before {
    content: "";
    position: absolute;
    inset: 50px;
    border-radius: 50%;
    border: 2px dashed rgba(37, 99, 235, 0.15);
}

/* FIXED CENTER */

.center-content {
    position: absolute;
    width: 180px;
    height: 180px;
    background: #fff;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 5;
}

.center-content h2 {
    font-size: 76px;
    line-height: 1;
    color: #d1d5db;
    margin: 0;
    font-weight: 600;
}

.center-content span {
    font-size: 28px;
    color: #374151;
    margin-top: 5px;
    font-weight: 500;
}

/* ORBIT CIRCLES */

.orbit {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);

    /* KEEP ICONS STRAIGHT */
    animation: counterRotate 28s linear infinite;
}

.orbit::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

/* POSITIONS */

.orbit-one {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #9ad63b;
}

.orbit-two {
    top: 70px;
    right: 0;
    background: #4968b2;
}

.orbit-three {
    bottom: 70px;
    right: 0;
    background: #3a8dff;
}

.orbit-four {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #42cfe2;
}

.orbit-five {
    bottom: 70px;
    left: 0;
    background: #38d6b3;
}

.orbit-six {
    top: 70px;
    left: 0;
    background: #79d94f;
}

/* TEXT COLORS */

.green {
    color: #9ad63b;
}

.cyan {
    color: #38d6b3;
}

.sky {
    color: #42cfe2;
}

.blue {
    color: #3a8dff;
}

.royal {
    color: #4968b2;
}

.gray {
    color: #94a3b8;
}

/* ANIMATION */

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* RESPONSIVE */

@media (max-width: 1199px) {
    .benefits-process-wrapper {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .benefit-side {
        gap: 30px;
    }

    .process-benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefit-content p {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .benefit-center {
        width: 100%;
        height: 320px;
    }

    .center-ring {
        width: 280px;
        height: 280px;
    }

    .orbit {
        width: 64px;
        height: 64px;
        font-size: 22px;
    }

    .center-content {
        width: 140px;
        height: 140px;
    }

    .center-content h2 {
        font-size: 50px;
    }

    .center-content span {
        font-size: 22px;
    }

    .benefit-content h4 {
        font-size: 22px;
    }
}
/* INDUSTRIES */
/* =====================================
       INDUSTRY SECTION
    ===================================== */

.industry-section {
    background: linear-gradient(135deg, #03132f 0%, #041944 100%);
    padding: 60px 0;
    overflow: hidden;
}

/* =====================================
       HEADING
    ===================================== */

.industry-heading {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.5);
    color: #fff;
    font-size: 14px;
    margin-bottom: 25px;
}

.section-tag span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
}

/* .main-heading {
    color: #fff;
    font-size: 54px;
    line-height: 1.15;
    font-weight: 800;
    max-width: 850px;
    margin: auto auto 22px;
} */

.main-heading span {
    color: #4f8cff;
}

.industry-heading-desc {
    max-width: 820px;
    margin: auto;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    line-height: 1.9;
}

@media (max-width: 991px) {
    .main-heading {
        font-size: 42px;
    }

    .industry-heading-desc {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .main-heading {
        font-size: 34px;
    }

    .industry-heading-desc {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* =====================================
       MAIN LAYOUT
    ===================================== */

.industry-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.industry-side {
    width: 28%;
}

.industry-center-image {
    width: 44%;
    text-align: center;
}

.industry-center-image img {
    width: 100%;
    max-width: 500px;
    animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =====================================
       ITEM
    ===================================== */

.industry-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.industry-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border: 1px solid;
    background: rgba(255, 255, 255, 0.03);
}

.industry-content h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.industry-content p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* =====================================
       COLORS
    ===================================== */

.red .industry-icon,
.red h4 {
    color: #ff4d3f;
    border-color: rgba(255, 77, 63, 0.5);
}

.orange .industry-icon,
.orange h4 {
    color: #ff9800;
    border-color: rgba(255, 152, 0, 0.5);
}

.green .industry-icon,
.green h4 {
    color: #8ad61d;
    border-color: rgba(138, 214, 29, 0.5);
}

.blue .industry-icon,
.blue h4 {
    color: #2f80ff;
    border-color: rgba(47, 128, 255, 0.5);
}

.purple .industry-icon,
.purple h4 {
    color: #b14cff;
    border-color: rgba(177, 76, 255, 0.5);
}

/* =====================================
       RESPONSIVE
    ===================================== */

@media (max-width: 1200px) {
    .main-heading {
        font-size: 46px;
    }

    .industry-center-image img {
        max-width: 420px;
    }
}

@media (max-width: 991px) {
    .industry-layout {
        flex-direction: column;
    }

    .industry-side,
    .industry-center-image {
        width: 100%;
    }

    .industry-center-image {
        order: -1;
        margin-bottom: 20px;
    }

    .main-heading {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .industry-section {
        padding: 60px 0;
    }

    .main-heading {
        font-size: 32px;
    }

    .industry-item {
        flex-direction: column;
    }

    .industry-icon {
        width: 65px;
        height: 65px;
        min-width: 65px;
        font-size: 26px;
    }

    .industry-content h4 {
        font-size: 22px;
    }
}

.industry-center-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    animation: floatImage 5s ease-in-out infinite;
}

/* TECHNOLOGIES */
.tech-area {
    background: #fff;
}

.tech-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 50px;
}

.tech-pill {
    padding: 16px 24px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: #fff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.4s ease;
}

.tech-pill:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.tech-pill i {
    color: var(--primary);
    font-size: 18px;
}

.tech-pill span {
    color: var(--secondary);
    font-size: 15px;
}

/* AI SECTION */
:root {
    --dark-text: #0f172a; /* Deep charcoal for maximum readability */
    --body-text: #475569; /* Slate grey for descriptions */
    --brand-blue: #2563eb; /* Vibrant blue for accents */
    --soft-bg: #f1f5f9; /* Very light grey-blue background */
}

.ai-business-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.ai-wrapper {
    background: var(--soft-bg);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid #e2e8f0;
}

/* Heading & Text */
.badge-tag {
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.display-heading {
    color: var(
        --dark-text
    ); /* Ensures "AI-Powered Automation for" is readable */
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight-text {
    color: var(--brand-blue);
}

.description {
    color: var(--body-text);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 550px;
}

.footer-note {
    margin-top: 30px;
    padding: 15px;
    border-left: 3px solid #cbd5e1;
    font-size: 0.95rem;
    color: var(--body-text);
    font-style: italic;
}

/* Feature Pills */
.stack-title {
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.feature-pill {
    background: #ffffff;
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--dark-text);
    font-weight: 500;
}

.feature-pill i {
    color: var(--brand-blue);
    font-size: 1.1rem;
}

/* Responsive fixes */
@media (max-width: 991px) {
    .ai-wrapper {
        padding: 30px;
    }
    .display-heading {
        font-size: 2rem;
    }
}

/* WHY CHOOSE */
/* Section Spacing Fix */
.choose-section {
    background: #fff;
    padding: 60px 0; /* Isse top aur bottom ka extra gap khatam ho jayega */
}

.choose-header {
    padding-right: 20px;
}

.choose-header .main-heading {
    font-size: 2.4rem;
    line-height: 1.2;
    margin: 15px 0;
}

/* Modern Compact Cards */
.choose-card {
    background: #f8fbff;
    border-radius: 20px;
    border: 1px solid #eef2f7;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    transition: all 0.3s ease;
}

.choose-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.08);
    border-color: var(--primary);
}

.icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.choose-card h5 {
    color: #1e293b;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Mobile Adjustments */
@media (max-width: 991px) {
    .choose-section {
        padding: 40px 0;
    }
    .choose-header {
        text-align: center;
        margin-bottom: 40px;
        padding-right: 0;
    }
}

/* --- Naya Premium Tag CSS (Existing CSS ke niche add karein) --- */

.section-tag-premium-arrow {
    display: inline-flex;
    align-items: center;
    position: relative;
    height: 38px; /* Height thodi kam ki hai taaki clean lage */
    margin-bottom: 25px;
    z-index: 10;
}

/* Base Body */
.arrow-base {
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px 0 10px;
    position: relative;
    /* Left side cut-in effect */
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
}

.brand-line {
    width: 2px;
    height: 16px;
    background: rgba(255, 255, 255, 0.6);
    margin-left: 8px;
    margin-right: 10px;
}

.tag-label {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Right Arrow Tip */
.arrow-point {
    width: 0;
    height: 0;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    border-left: 15px solid #1d4ed8; /* Match base color */
    margin-left: -1px;
}
/* CTA */
.cta-area {
    padding: 60px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.cta-box {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 40px;
    padding: 70px;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 70px 70px;
}

.cta-box h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    position: relative;
    z-index: 2;
}

.cta-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 16px;
    background: #fff;
    color: var(--primary);
    text-decoration: none;
    font-size: 15px;
    transition: 0.4s ease;
    margin-top: 12px;
}

.cta-btn:hover {
    transform: translateY(-5px);
    color: var(--primary);
}

/* FAQ */
.faq-section-light {
    /* Soft premium light gradient */
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    padding: 60px 0;
}

.faq-card-container {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 15px 30px;
    /* Very soft shadow for light theme */
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.05);
    border: 1px solid #eef2f7;
}

.faq-item {
    border-bottom: 1px solid #f1f5f9;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Button & Text */
.faq-button {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 10px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    outline: none !important;
}

.faq-button:not(.collapsed) {
    color: #2563eb;
}

/* Round Icon - Clean Version */
.faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-button:not(.collapsed) .faq-icon {
    background-color: #2563eb;
    color: #fff;
    border-color: #2563eb;
    transform: rotate(180deg);
}

/* Answer Content */
.faq-body {
    padding: 0 10px 25px 10px;
    color: #475569;
    line-height: 1.8;
    font-size: 15.5px;
}

/* Smooth transition for accordion */
.accordion-collapse {
    transition: all 0.35s ease;
}

@media (max-width: 768px) {
    .faq-button {
        font-size: 16px;
        padding: 20px 5px;
    }
    .faq-card-container {
        padding: 10px 15px;
        margin: 0 10px;
    }
}
@media (max-width: 991px) {
    .main-heading,
    .cta-box h2 {
        font-size: 34px;
    }

    .benefit-wrapper {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px;
    }

    .section-space {
        padding: 75px 0;
    }
}
