/* ================= GLOBAL SYSTEM ================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


:root {
    --container-max: 1320px;
    --gutter: clamp(16px, 4vw, 32px);
    --section-space: clamp(50px, 5vw, 70px);
    --radius-pill: 999px;
    --primary: #e53935;
    --text-dark: #111;
    --text-muted: #555;
    --bg-light: #f7f7f7;
}

/* ================= RESET ================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}



html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    background-color: white !important;
}

/* ================= CONTAINER ================= */
.container {
    width: min(100% - var(--gutter), var(--container-max));
    margin-inline: auto;
}

/*a:hover {*/
/*    color: white;*/
/*    text-decoration: underline;*/
/*    background: #D63A38;*/
/*    text-decoration:none;*/
/*}*/

a:hover {
    color: white;
    text-decoration: none;
}


.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 20px !important;
}

.navbar {
    width: 100%;
    padding: 18px 0;
    background:transparent;
    border-bottom: 1px solid #eee;
    position: absolute !important;
    top: 10;
    z-index: 1000;
    transition: padding .3s ease;
}
.nav-container {
    width: 90%;
    max-width: 1300px ;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.nav-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}
.nav-menu li a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    transition: color .3s ease;
    white-space: nowrap;
}
.nav-menu li a:hover {
    color: #ff3e3e;
}
.nav-btns {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}
.nav-btns a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 30px 0px 5px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all .3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    white-space: nowrap;
}
.nav-btns .login-btn:hover {
    background-color: #D63A38 !important;
    color:White !important;
}

.nav-btns .register-btn:hover {
    background-color: #262626 !important;
    color:White !important;

}

.nav-btns a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,.15);
}
.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}
.btn-icon {
    width: 34px;
    height: 34px;
    padding: 4px;
}
.login-btn {
    background: #111;
    color: #fff;
}

.features-tag {
    position: relative;
    font-weight: 600;
}

.features-tag::before {
    content: "";
    position: absolute;
    left:5px;
    top: 50%;
    transform: translateY(-50%);
    width:8px;
    height: 8px;
    background: #D63A38;
    border-radius: 50%;
}

.pill-label
 {
    position: relative;
    font-weight: 600;
}

.pill-label::before {
    content: "";
    position: absolute;
    left:5px;
    top: 50%;
    transform: translateY(-50%);
    width:8px;
    height: 8px;
    background: #D63A38;
    border-radius: 50%;
}


.login-bg,
.register-bg {
    /* background: #fff; */
}
.register-btn {
    background: #D63A38;
    color: #fff;
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all .3s ease;
}

@media(min-width:1440px) {
    .nav-container {
        max-width: 1300px;
    }
    .nav-menu {
        gap: 40px;
    }
    .logo {
        height: 45px;
    }
}
@media(min-width:1300px) and (max-width:1439px) {
    .nav-menu {
        gap: 30px;
    }
}
@media(min-width:992px) and (max-width:1199px) {
    .nav-container {
        width: 92%;
    }
    .nav-menu {
        gap: 25px;
    }
    .nav-menu li a {
        font-size: 15px;
    }
    .nav-btns a {
        font-size: 15px;
        padding: 7px 18px 7px 7px;
    }
    .icon-wrapper {
        width: 34px;
        height: 34px;
    }
    .btn-icon {
        width: 30px;
        height: 30px;
    }
}
@media(max-width:991px) {
    .navbar {
        padding: 15px 0;
    }
    .nav-container {
        width: 90%;
    }
    .nav-menu {
        display: none;
    }
    .logo {
        height: 36px;
    }
    .nav-btns a {
        font-size: 14px;
        padding: 6px 16px 6px 6px;
    }
    .icon-wrapper {
        width: 32px;
        height: 32px;
    }
    .btn-icon {
        width: 16px;
        height: 16px;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}
@media(max-width:767px) {
    .navbar {
        padding: 12px 0;
    }
    .nav-container {
        width: 92%;
    }
    .logo {
        height: 32px;
    }
    .nav-btns {
        gap: 8px;
    }
    .nav-btns a {
        font-size: 13px;
        padding: 5px 14px 5px 5px;
        gap: 8px;
    }
    .icon-wrapper {
        width: 30px;
        height: 30px;
    }
    .btn-icon {
        width: 14px;
        height: 14px;
    }
}
@media(max-width:575px) {
    .navbar {
        padding: 10px 0;
    }
    .nav-container {
        width: 94%;
        gap: 10px;
    }
    .logo {
        height: 28px;
    }
    .nav-btns {
        gap: 6px;
    }
    .nav-btns a {
        font-size: 12px;
        padding: 4px 12px 4px 4px;
        gap: 6px;
    }
    .icon-wrapper {
        width: 28px;
        height: 28px;
    }
    .btn-icon {
        width: 13px;
        height: 13px;
    }
    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
}
@media(max-width:374px) {
    .nav-container {
        gap: 8px;
    }
    .logo {
        height: 26px;
    }
    .nav-btns a {
        font-size: 11px;
        padding: 4px 10px 4px 4px;
    }
    .icon-wrapper {
        width: 26px;
        height: 26px;
    }
    .btn-icon {
        width: 12px;
        height: 12px;
    }
}

.mobile-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    padding: 20px;
}
.mobile-nav-menu.active {
    display: block;
}
.mobile-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav-menu ul li {
    margin-bottom: 15px;
}
.mobile-nav-menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 10px;
    transition: color .3s ease;
}
.mobile-nav-menu ul li a:hover {
    color: #ff3e3e;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px,7px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px,-7px);
}



/* ================= HERO ================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    background: url(image/qmater-bg.png) no-repeat center / cover;
    overflow: hidden;
}



/* ================= HERO INNER ================= */
.hero-inner {
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: stretch; /* important */
}

/* ================= HERO TEXT ================= */
.hero-text {
    width: 500px;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly; /* ðŸ”¥ top + bottom separation */
    z-index: 2;
    margin-top: 50px;
}

.hero-text-top h1 {
    font-size: clamp(28px, 4.5vw, 40px);
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-text-top .offer-badge {
    color: #545454;
}

.hero-text-top p {
    font-size: clamp(14px, 1.2vw, 16px);
    /*max-width: 48ch;*/
    margin-bottom: 24px;
}



/* ================= ACTIONS ================= */
.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-circle img {
    width: 20px;
}

/* ================= TRUSTED ================= */
.trusted {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ================= OFFER BADGE ================= */
.offer-badge {
    background-color: rgba(214, 58, 56, 0.1);
    color: #D63A38;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

/* ================= HERO IMAGE ================= */
.hero-image {
    position: absolute;
    right: -100px;
    bottom: 0;                 /* âœ… REAL bottom, no gap */
    width: min(720px, 55vw);
    max-width: 720px;
    z-index: 1;
}



.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 0 0px !important;
    }
.hero-text-top {
    place-items: center;
}
    .hero-inner {
        grid-template-columns: 1fr;
        height: auto;
        text-align: center;
    }

    .hero-text {
        width: 100%;
        align-items: center;
    }

    .trusted {
        margin-top: 32px;
    }

    /*.hero-image {*/
    /*    position: relative;*/
    /*    width: 100%;*/
    /*    max-width: 70%;*/
    /*    margin-top: 48px;*/
    /*}*/
    
    .hero-image {
        position: relative;
        width: 100%;
        margin: 48px auto 0;
        right: auto;      
        left: auto;
        display: flex;
        justify-content: center;
    }
    
}

/* ================= MOBILE ================= */
@media (max-width: 640px) {
    .hero {
        padding: 100px 0 0px !important;
    }

    .hero-text-top h1 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .hero-actions {
        justify-content: center;
    }
}


/* ================= HERO LARGE SCREENS ================= */
@media (min-height: 1340px) {
    .hero {
        height: auto;      /* normal section height */
        min-height: auto;  /* content-driven */
        padding-block: clamp(100px, 10vh, 200px);
    }
}

/* ================= IMAGE SAFETY ================= */
img {
    max-width: 100%;
    height: auto;
    display: block;
}




/* ================= FEATURES SECTION ================= */
.features-section {
    background: #D6D6D6;
    padding-block: 40px; 
    /*padding-block: var(--section-space);*/

    
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    background: #FFFFFF7D;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.features-badge .dot {
    width: 8px;
    height: 8px;
    background: #D63A38; /* Hex direct use */
    border-radius: 50%;
}

/* ================= LAYOUT ================= */
.features-inner {
    display: grid;
    grid-template-columns: 1fr 2.4fr;
    gap: clamp(30px, 6vw, 50px);
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= LEFT CONTENT ================= */
.features-content h2 {
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 500;
    color: #1a1a1a;
}

.features-content p {
    color: #262626;
    font-size: clamp(14px, 1.2vw, 22px);
    margin-bottom: 28px;
    line-height: 1.5;
}

/* ================= RIGHT CARDS ================= */
.features-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ================= FEATURE CARD ================= */
.feature-card {
    position: relative;
    border-radius: 28px;
    padding: 30px 25px;
    min-height: 280px;
    color: #fff;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Default card colors */
.feature-card:nth-child(1) { background: #373737; }
.feature-card:nth-child(2),
.feature-card:nth-child(3) { background: #545454; }

/* ================= CARD TEXT ================= */
.feature-card h4 {
    font-size: 19px;
    margin-bottom: 12px;
    font-weight: 600;
    transition: 0.3s ease;
    position: relative;
    z-index: 2;
        color: #fff;

}

.feature-card p {
    font-size: clamp(14px, 1.2vw, 12px);
    color: #C4C4C4;
    transition: 0.3s ease;
    position: relative;
    z-index: 2;
}

/* ================= BACKGROUND TEXT ================= */
.card-bg-text {
    position: absolute;
    left: 20px;
    bottom: -22px;
    font-size: 60px;
    font-weight: 600;
    opacity: 0.08;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

/* ================= CARD ICON ================= */
.card-icon {
    width: 100px;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Different icons */
.feature-card:nth-child(1) .card-icon { content: url("image/image7.png"); }
.feature-card:nth-child(2) .card-icon { content: url("image/bgelement1.png"); }
.feature-card:nth-child(3) .card-icon { content: url("image/image9.png"); }

/* ================= HOVER EFFECTS ================= */
.feature-card:hover {
    /*background: #921A18 !important;*/
    transform: translateY(-5px);
}

.feature-card:nth-child(2) .card-icon
{
    background:#921A18 !important;
    top:0;
}

.feature-card:nth-child(2)
{
    background:#921A18 !important;
}

.feature-card:nth-child(2) .card-icon
{
    top:0;
}



/* Hover par text width kum karna taake icon se na takraye */
.feature-card:nth-child(2) h4 {
    width: 75%;
}

.feature-card:nth-child(2) p {
    width: 85%;
}


/* ================= RESPONSIVE ================= */

/* Laptop / Small Desktop */
@media (max-width: 1200px) {
    .features-inner {
        gap: 20px;
    }
    .features-cards {
        gap: 15px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .features-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-content p {
        margin-inline: auto;
        max-width: 700px;
    }

    .features-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 30px;
    }

    .card-bg-text {
        font-size: 80px;
        bottom: -30px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .features-section {
        padding-block: 50px;
    }

    .features-cards {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 240px;
        padding: 25px;
    }

    /* Mobile par hover width issue fix */
    .feature-card:hover h4,
    .feature-card:hover p {
        width: 100%; 
    }
    
        .feature-card:hover h4,
    .feature-card:hover p {
      text-align:left;
    }

.feature-card p {
    text-align: left;
}


.features-cards {
        width: 80%;
        place-self: center;
    }
    
    
.feature-card h4 {
    text-align: left;
}


    .card-bg-text {
        bottom: -20px;
    }

    .card-icon {
        width: 70px;
    }
}


/* ================= FEATURE DETAIL SECTION ================= */
.feature-detail-section {
    background: #ffffff;
    padding-block: var(--section-space);
}

.feature-detail-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(32px, 6vw, 96px);
    align-items: center;
}

/* LEFT CONTENT */
.feature-detail-content h2 {
    font-size: clamp(28px, 4.5vw, 44px);
    line-height: 1.15;
    margin-bottom: 18px;
}

.feature-detail-content p {
    color: var(--text-muted);
    max-width: 460px;
    margin-bottom: 32px;
}

/* BUTTONS */
.feature-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-dark {
    padding: clamp(10px, 1.5vw, 14px) clamp(18px, 3vw, 26px);
    border-radius: 999px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-dark .icon,
.btn-primary .icon {
    font-size: 14px;
}

/* IMAGE */
.feature-detail-image {
    position: relative;
}

.feature-detail-image img {
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    display: block;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
    .feature-detail-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-detail-content p {
        margin-inline: auto;
    }

    .feature-buttons {
        justify-content: center;
    }

    .feature-detail-image img {
        margin: 48px auto 0;
        max-width: 520px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .feature-detail-image img {
        max-width: 100%;
    }

    .feature-detail-content h2 {
        font-size: clamp(24px, 7vw, 30px);
    }
}


.pain-points-section {
    /* padding: clamp(80px, 10vw, 140px) 0; */
    background: #fff;
    width: 900px !important;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    justify-self: center;
}

.pain-points-section .hero-actions {
    justify-content: center;
}

.section-badge {
    display: inline-block;
    background: #D63A3830;
    color: #373737;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.2;
    margin-bottom: 14px;
    font-weight: 500;
}

.section-desc {
    /* max-width: 520px; */
    /* margin: 0 auto 28px; */
    color: #262626;
    font-size: clamp(14px, 1.2vw, 22px);
}

.section-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 64px;
}

.btn-primary {
    background: #d63a38;
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
}

.btn-circle {
    width: 42px;
    height: 42px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
}

/* GRID */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
}


/* Tablet */
@media (max-width: 1024px) {

    .pain-points-section {
    width: 100% !important;
}
}

/* Mobile */
@media (max-width: 640px) {

    .pain-points-section {

    width: 100% !important;

}


.pain-card {
    width: 80%;
    place-self: anchor-center;
}


.pain-card h3 {
    max-width: 20ch !important;
}



}



/* ================= CARD ================= */
.pain-card {
    position: relative;
    padding: 32px 26px;
    border-radius: 20px;
    color: #fff;
    text-align: left;
    min-height: 260px;
    overflow: hidden;
}

.pain-card {
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.pain-card:hover {
    transform: translateY(-6px);
}

/* Backgrounds */
.pain-card.dark {
    background: #1c1c1c;
}

.pain-card.red {
    background: #d63a38;
}

/* ICON â€“ TOP RIGHT */
.pain-card .icon {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 30px;
    line-height: 1;
}

/* TEXT */
.pain-card h3 {
    font-size: 18px;
    margin: 48px 0 12px;
    color: #fff;

    line-height: 1.4;
    max-width: 16ch;   /* is value se line break control hota hai */
}


.pain-card p {
    font-size: clamp(14px, 1.2vw, 12px);
    line-height: 1.5;
    opacity: 0.9;
    color: #C4C4C4;
}

/* ================= RIBBON (IMAGE) ================= */
.pain-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    width: 10%;
    height: 70px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


/* ODD cards ribbon */
.pain-card:nth-child(odd)::before {
    background-image: url("image/ribbon_red.png");
}

/* EVEN cards ribbon */
.pain-card:nth-child(even)::before {
    background-image: url("image/ribbon_black.png");
}



/* ================= GRID ================= */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 32px);
    max-width: 900px;          /* laptop + large */
    width:900px;
    margin-inline: auto;       /* center */
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;      /* tablet width */
    }
}

/* ================= MOBILE ================= */
@media (max-width: 640px) {
    .pain-grid {
        grid-template-columns: 1fr;
        max-width: 100%;       /* full width */
    }
}



/* ================= LARGE SCREENS ================= */
@media (min-width: 1440px) {
    .pain-grid {
        gap: 36px;
        justify-self: center;
    }

    .pain-card {
        min-height: 280px;
    }
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pain-card {
        min-height: 240px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 640px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }

    .section-actions {
        flex-direction: column;
    }

    .section-actions .btn-circle {
        display: none;
    }

    .pain-card {
        text-align: left;
    }
}


/* ================= SCREENSHOT SECTION ================= */
.screenshot-section {
padding: var(--section-space);
    background: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    width: 900px;
    justify-self: center;
}

.screenshot-section .section-badge {
    display: inline-block;
    background: #fdecec;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    margin-bottom: 16px;
}

.screenshot-section .section-title {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2;
    margin-bottom: 14px;
}

.screenshot-section .section-desc {
    max-width: 520px;
    margin: 0 auto 28px;
    color: #555;
    font-size: clamp(14px, 1.2vw, 22px);
}

.balance-sheet-title {
    font-size: clamp(22px, 2.5vw, 28px);
    margin-bottom: 24px;
    font-weight: 500;
}

/* CARD WRAPPER */
.screenshot-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.screenshot-card {
    border: 8px solid #d63a38; /* red border as in screenshot */
    border-radius: 20px;
    overflow: hidden;
}


.screenshot-card {
    border-radius: 20px;
    overflow: hidden;
    height: auto;
}


.screenshot-card img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* ARROWS */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    /* background: #f1f1f1; */
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    color: #d63a38;
    transition: 0.3s;
    z-index: 2;
}

.arrow:hover {
    /* background: #d63a38;
    color: #fff; */
}

.arrow.prev {
    left: -60px;
}

.arrow.next {
    right: -60px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .arrow.prev {
        left: -40px;
    }
    .arrow.next {
        right: -40px;
    }    
    
    .screenshot-wrapper{
        max-width: 600px;      /* tablet width */
    }

    
    .screenshot-section {
    width: 100% !important;       /* full width */
}

.screenshot-section {
  width: 100%;
    justify-self: center;
}

}

@media (max-width: 640px) {
    .arrow {
        /*display: none;*/
    }

    .screenshot-section {
    width: 100% !important;       /* full width */
}

.screenshot-section {
  width: 100%;
    justify-self: center;
}


.screenshot-card {
    height: 400px;
}


}



/* ================= SCREENSHOT SECTION ================= */
.screenshot-section {
    position: relative;
    overflow: hidden;
}



/* ================= PRICING SECTION ================= */
.pricing-section {
    padding-block: var(--section-space);
    background-color: #00000040; /* Light gray background from image */
}

.pricing-inner {
    display: grid;
    grid-template-columns: 1fr 2.4fr;
    gap: clamp(20px, 6vw, 30px);
    align-items: center;
}

.pricing-content {
    text-align: left;
}

/* CARDS GRID */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* INDIVIDUAL CARD */
.price-card {
    background: #fff;
    padding: 30px 24px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.price-card.featured h3 {
    color: #fff !important;
}

/* FEATURED CARD (RED/BLACK GRADIENT) */
.price-card.featured {
    background: linear-gradient(180deg, #d63a38 0%, #000 100%);
    color: #fff;
    transform: scale(1.05); /* Slightly larger */
}

.plan-type {
    display: inline-block;
    background: #fdecec;
    color: #000000;
    font-weight: 500;
    padding: 4px 16px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    margin-bottom: 20px;
}

.featured .plan-type {
    background: #EE5C5A;
    color: #fff;
}

.price {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0;
}

.price-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.featured .price-sub {
    color: #ccc;
}

/* BUTTONS IN CARDS */
.btn-outline-red {
    display: block;
    padding: 10px;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-solid-white {
    display: block;
    padding: 10px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-size: 14px;
    margin-bottom: 20px;
}

hr {
    border: 0;
    border-top: 1px solid #eee;
    margin-block: 20px;
}

.featured hr {
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* LIST */
.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.features-list li {
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-list li span {
    color: #4caf50; /* Green checkmark */
    font-weight: bold;
}

.featured .features-list li span {
    color: #4caf50;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
    .pricing-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .pricing-content {
        text-align: center;
        margin-bottom: 40px;
    }
    .pricing-content p {
        margin-inline: auto;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        /* max-width: 400px; */
        width: 80%;
        margin: 0 auto;
    }
    .price-card.featured {
        transform: scale(1);
    }
}



/* ================= INDUSTRY SECTION ================= */

.industry-section {
    padding: 100px 0;
    background: #fff;
    background-image: url("image/image-12.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
    overflow: visible; /* 🔴 arrows cut honay ka main issue yahan tha */
}

/* container ko restrict mat karo */
.industry-section .container {
    position: relative;
    z-index: 1;
}

/* Header */
.industry-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-inline: auto;
}

/* ================= SLIDER WIDTH CONTROL ================= */

.slider-container {
    margin: 0 auto;
    position: relative;
    padding: 0 60px;    /* arrows ke liye space */
}

/* Swiper overflow visible rakho */
.industrySwiper {
    overflow: visible;
}

/* ================= CARD ================= */

.industry-card {
    background: #3c3c3c;
    border-radius: 32px;
    padding: 28px;
    text-align: left;
    color: #fff;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    transform: scale(0.92);
}

/* Default card bg (fallback) */
.industry-card {
    background: #3c3c3c;
}

/* 🔹 Left card (1st visible card) */
.swiper-slide-prev .industry-card {
    background: #373737;
}

/* 🔹 Active / Center card */
.swiper-slide-active .industry-card {
    background: #a21c16;
}

/* 🔹 Right card (3rd visible card) */
.swiper-slide-next .industry-card {
    background: #545454eb;
}


.swiper-slide-active .industry-card {
    /*background: #a21c16;*/
    transform: scale(1);
    /*box-shadow: 0 20px 40px rgba(162, 28, 22, 0.35);*/
}

/* Image */
.industry-card .card-img {
    width: 100%;
    height: 200px;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #222;
}

.industry-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text */
.industry-card h3 {
    font-size: clamp(18px, 1.2vw, 22px);
    font-weight: 600;
    margin-bottom: 0px;
    color:#fff;
}

.industry-card p {
    font-size: clamp(14px, 1.2vw, 12px);
    line-height: 1.6;
    color: #e0e0e0;
}

/* ================= ARROWS ================= */

.swiper-button-next,
.swiper-button-prev {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #d63a38 !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.swiper-button-next {
    right: -10px; /* 🔥 ab cut nahi honge */
}

.swiper-button-prev {
    left: -10px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
    .slider-container {
        max-width: 900x;
        padding: 0 50px;
    }

    .industry-card {
        min-height: auto;
        transform: scale(1);
    }

    .swiper-slide-active .industry-card {
        transform: scale(1);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .industry-section {
        padding: 70px 0;
    }

    .slider-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .industry-card {
        padding: 20px;
        border-radius: 24px;
    }

    .industry-card h3 {
        font-size: 18px;
    }

    .industry-card p {
        font-size: 13px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none; /* 📱 mobile pe swipe only */
    }
}


.faq-section {
    /* padding-block: var(--section-space); */
    /* Industry section wala curved pattern background */
    text-align: center;
    width: 900px;
    background-image: url("image/image-12.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
    overflow: hidden;
    justify-self: center;
    margin-bottom: 50px;
    margin-top: 50px;
    
}


.faq-header {
    margin-bottom: 50px;
}

.faq-container {
    max-width: 900px; /* Jaisa aapne pehle slider ke liye manga tha */
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

/* FAQ ITEM CARD */
.faq-item {
background: transparent;
    border: 2px solid #A4A4A4;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-input {
    display: none; /* Checkbox hide kar dein */
}

/* LABEL (The Question Part) */
.faq-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 35px;
    font-size: 18px;
    font-weight: 400;
    color: #262626;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.faq-label:hover {
    background: #f9f9f9;
}

/* ARROW ICON */
.faq-label .arrow {
    width: 20px;
    height: 20px;
    position: relative;
}

/* Custom CSS Arrow (Up/Down) */
.faq-label .arrow::before {
    content: '▲'; /* Up arrow */
    font-size: 10px;
    color: #d63a38;
    position: absolute;
    top: -5px;
}
.faq-label .arrow::after {
    content: '▼'; /* Down arrow */
    font-size: 10px;
    color: #333;
    position: absolute;
    bottom: -5px;
}

/* CONTENT (The Answer Part) */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding-inline: 35px;
}

.faq-content p {
    padding-bottom: 25px;
    color: #666;
    line-height: 1.6;
    font-size: clamp(14px, 1.2vw, 12px);
}

/* TOGGLE LOGIC */
.faq-input:checked ~ .faq-content {
    max-height: 500px; /* Kafi hai answer ke liye */
    transition: max-height 0.4s ease-in;
}

.faq-input:checked ~ .faq-label {
    border-bottom: 1px solid #eee;
}

/* RESPONSIVE SETTINGS */
@media (max-width: 1024px) {
    .faq-container {
        max-width: 600px; /* Tablet width as requested */
    }
}

@media (max-width: 640px) {
    .faq-container {
        width: 100%;
        padding-inline: 15px;
    }
    
    .faq-label {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-content {
        padding-inline: 20px;
    }
}


/* ================= footer SECTION ================= */


.main-footer {
    /* Yahan apni image ka path lagao */
    background: url('image/footerimage.png') no-repeat center center;
    background-size: cover; /* Ye image ko poori width par stretch karega */
    
    color: #fff;
    padding-top: 150px; /* Diagonal cut ki wajah se top padding thori zyada rakhi hai */
    padding-bottom: 40px;
    position: relative;
}

.footer-col.newsletter h3 {
    color: white !important;
}

/* Grid System */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

/* Logo Styling */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-logo h2 { font-size: 28px; margin: 0; }
.footer-logo h2 span { color: #d63a38; }

.footer-col p {
    color: #cecece;
    font-size: clamp(14px, 1.2vw, 22px);
    line-height: 1.6;
}

/* Links */
.links ul { list-style: none; padding: 0; }
.links ul li { margin-bottom: 10px; }
.links ul li a { color: #fff; text-decoration: none; font-size: 15px; }

/* Newsletter Form */
.subscribe-form {
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    display: flex;
    margin-top: 20px;
}
.subscribe-form input {
    border: none;
    padding: 10px 15px;
    flex: 1;
    border-radius: 50px 0 0 50px;
    outline: none;
}
.subscribe-form button {
    background: #222;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .newsletter { grid-column: span 2; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .newsletter { grid-column: span 1; }
    .main-footer { 
        background-position: left center; /* Mobile par image ka left part dikhega */
        padding-top: 100px; 
    }
}


.social-links a{
    color: #fff;
    padding: 5px;
}

.main-footer a{

    color:#fff !important;
}

/* Purani image hide */
.footer-logo-img {
    opacity: 0 !important;
    visibility: hidden !important;
}

/* New image CSS se lagao */
.footer-logo a {
    display: inline-block !important;
    width: 180px !important;          /* zarurat ho to adjust */
    height: 60px !important;

    background-image: url("/public/frontend/image/QuarterMaster_logo_footer.png") !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: left center !important;
}


@media (min-width: 1400px) {
    .main-footer {
        background: url('/public/frontend/image/footerimage.png') no-repeat center top;
        background-size: cover;
        padding-top: 200px;
    }
    
    .footer-logo a
    {
            width: 100% !important;
    }
    
    .hero-image {
    position: relative;
    right: -100px;
    bottom: 0;
    width: min(100%, 55vw);
    max-width: 100%;
    z-index: 1;
}


    .hero {
        height: auto;
        min-height: auto;
        padding-top: clamp(100px, 10vh, 200px) !important;
        padding-bottom:0 !important;
}


.hero-text {
     margin-top: 0px !important;
}


}
