.hero {
    /* background: linear-gradient(90deg, #0072ff, #00c6ff); */
    padding: 50px 20px 50px 20px !important;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        /* Stack items vertically */
        text-align: center;
        /* Center text */
        padding: 30px !important;
        /* Reduce padding */
    }
}

.ac-wd {
    max-width: 400px;
}



@media (max-width: 480px) {
    .ac-spec-container {
        padding: 0px 2px !important;
    }

    .icon-container {
        display: flex;
        justify-content: space-around;
        gap: 30px;
        flex-direction: column;
    }

    .ac-wd {
        max-width: 300px !important;
    }

    .hero {
        padding: 20px !important;
        /* Even smaller padding */
    }

    .testimonial-card {
        background: #fff;
        color: #333;
        padding: 31px 32px 31px 43px;
        border-radius: 16px;
        margin: auto;
        max-width: 90%;
        position: relative;
        font-size: 1rem;
    }

    .testimonial-card::before {
        top: 8px;
        left: 7px;
    }

    .testimonial-card::before,
    .testimonial-card::after {

        font-size: 3rem;
        position: absolute;
        color: #000080;
    }

    .faq-question strong {
        font-size: 16px;
    }

    .testimonial-card::after {
        bottom: 20px;
        right: 15px;
    }
}

.cards-container {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px auto;
    padding: 0 20px;
}

.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 360px;
    padding: 20px;
    position: relative;
    border-top: 4px solid #007bff;
    transition: all 0.3s ease;
    /* smooth hover */
}

.card:hover {
    transform: translateY(-10px);
    /* slight lift */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    /* deeper shadow */
}

/* optional: add image zoom on hover */
.card img {
    width: 100%;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

/* .card:hover img {
    transform: scale(1.05);
} */

.star-badge {
    background-color: #ffc107;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    width: fit-content;
    align-items: left;
    gap: 5px;
    margin-bottom: 15px;
}

.card h3 {
    color: #0056d2;
    font-size: 18px;
    margin: 10px 0 20px;
    text-align: left;
}

.spec {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 8px 0;
    text-align: left;
    color: #333;
}

.spec::before {
    content: "🔹";
    margin-right: 8px;
    color: #007bff;
}

.buttons {
    display: flex;
    justify-content: flex-start;
    margin-top: 25px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-secondary {
    background-color: #f2f2f2;
    color: #007bff;
}

.btn-price {
    background-color: #f2f2f2;
    color: #000;
    font-weight: bold;
}

.h2-head {
    color: #0083ff;
    font-size: 32px;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

/* IMAGE SECTION */
.image-section {
    width: 45%;
    padding: 20px;
}

.main-image {
    position: relative;
    text-align: center;
    width: 100%;
    height: 400px;
    /* Fixed height */
    border-radius: 15px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    cursor: zoom-in;
}

.zoom-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0066cc;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

/* THUMBNAIL CAROUSEL */
.thumbnail-carousel {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.thumbnails-wrapper {
    display: flex;
    overflow: hidden;
    flex: 1;
}

.thumbnail {
    flex: 0 0 auto;
    width: 131px;
    margin: 0 5px;
    border: 2px solid #cce4ff;
    border-radius: 6px;
    cursor: pointer;
}

.thumbnail img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}

.thumbnail.selected {
    border: 2px solid #0066cc;
}

.arrow {
    background: #0066cc;
    color: white;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    font-size: 18px;
    border-radius: 4px;
}

/* DETAILS SECTION */
.details-section {
    width: 55%;
    padding: 0px 20px;
}

.details-section h2 {
    color: #0073e6;
    margin-bottom: 10px;
}

/* ZOOM MODAL */
.modal {
    display: none;
    /* ✅ hidden by default */
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);

    justify-content: center;
    align-items: center;
}

.para-txt{
    text-transform: uppercase;
    margin-bottom: 70px;

}

.modal-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90%;
}

.modal-content img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.modal .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    font-size: 30px;
    padding: 10px;
}

.modal .arrow.left {
    left: 10px;
}

.modal .arrow.right {
    right: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
    .product-container {
        flex-direction: column;
    }

    .image-section,
    .details-section {
        width: 100%;
    }

    .main-image {
        height: 300px;
    }

    .thumbnail {
        width: 50px;
        height: 40px;
    }
}


/* RESPONSIVE */
@media screen and (max-width: 768px) {
    .product-container {
        flex-direction: column;
    }

    .image-section,
    .details-section {
        width: 100%;
    }

    .main-image {
        height: 300px;
    }

    .thumbnail {
        width: 50px;
        height: 40px;
    }
}


.key-highlights-container {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.key-highlights {
    background-color: #e6f2ff;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.highlight {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    width: 32%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.clblack {
    color: #000 !important;
}

.icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.text h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.text p {
    font-size: 1rem;
    color: #000;
}


.iconss {
    background-color: #007bff;
    color: white;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px !important;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Default width for desktop */
.highlight {
    width: 32%;
}

/* Tablet & mobile view: 2 items per row */
@media (max-width: 768px) {
    .highlight {
        width: 48%;
        /* 2 items per row with some gap */
    }
}

/* Small mobile view: 1 item per row */
@media (max-width: 480px) {
    .highlight {
        width: 48%;
        /* Still 2 per row */
    }
}

.faq-container {
    margin: 50px auto;
    padding: 20px;
    background-color: white;
}

.faq-title {

    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.faq-question strong {
    font-weight: bold;
    color: #000;
    font-size: 18px;
}

.accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    margin-bottom: 15px;
}

.accordion-btn {
    width: 100%;
    padding: 15px;
    background-color: #1e3a8a;
    color: white;
    text-align: left;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border-radius: 10px;
}

.accordion-btn:hover {
    background-color: #2563eb;
}

.accordion-btn .triangle {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid white;
    transition: transform 0.3s ease;
}

.accordion-content {
    display: none;
    background-color: #f1f1f1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.accordion-content ul {
    list-style-type: none;
}

.accordion-content li {
    padding: 15px 20px;
    display: flex;
    border-radius: 5px;
    align-items: center;
    /* align-content: flex-end; */
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
}

.accordion-content li:nth-child(odd) {
    background-color: #fdfdfd;
}

.accordion-content li:nth-child(even) {
    background-color: #dddddd;
}

.accordion-content strong {
    font-weight: bold;
}

.accordion-btn.active .triangle {
    transform: rotate(180deg);
}

.features-section {
    padding: 50px 20px;
    text-align: center;
    background: #f8fafc;
}

.features-title {
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    background-color: #007bff;
    color: white;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card h3 {
    font-size: 18px;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #000;
}

.icon-container {
    display: flex;
    justify-content: space-evenly;

}

.single-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.single-icon img {
    width: 50px;
    height: 50px;
}

.single-icon p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

.icl {
    background-color: #dbeaf7;
    color: #007bff;
    border-radius: 50%;
    padding: 10px;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

/* .table-container {
    overflow-x: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

th,
td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

th {
    background: #008cff;
    color: #fff;
    font-size: 16px;
} */

/* tr:nth-child(even) td {
    background: #f9fbff;
} */

td:first-child {
    font-weight: bold;
    background: #f4faff;
    text-align: center;
}

.bcl {
    background-color: #e6f3ff;
}

/* Responsive: On mobile, convert to block style */
@media (max-width: 768px) {

    /* table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    } */



    /* tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 10px;
        background: #fff;
    }

    td {
        text-align: right;
        padding: 10px;
        position: relative;
        border: none;
        border-bottom: 1px solid #eee;
    }

    td:first-child {
        background: none;
        font-weight: bold;
        text-align: center;
        color: #004aad;
    }

    td:before {
        content: attr(data-label);
        position: absolute; 
        left: 10px;
        font-weight: bold;
        text-align: center;
        color: #333;
    } */
}

.clblue {
    color: #0073e6;
}

.installation-warranty-title {
    text-align: center;
    font-size: 2.5rem;
    color: #0073e6;
    margin-bottom: 40px;
}

.installation-warranty-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.installation-requirements,
.warranty-details,
.service-network {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    border-left: 4px solid #007bff;
    transition: transform 0.3s ease;
}

.installation-requirements:hover,
.warranty-details:hover,
.service-network:hover {
    transform: scale(1.05);
}

.installation-requirements-title,
.warranty-details-title,
.service-network-title {
    font-size: 23px;
    color: #0073e6;
    margin-bottom: 15px;
}

.installation-requirements-list li,
.warranty-details-list li,
.service-network-list li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #000;
}

.cooling {
    background-color: #0073e6;
}

.cooling-container {
    text-align: center;
}

.cooling-content {
    color: white;
}

.cooling-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.cooling-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cooling-button {
    background-color: white;
    color: #0073e6;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cooling-button:hover {
    background-color: #005bb5;
}

@media (max-width: 768px) {
    .installation-warranty-row {
        flex-direction: column;
    }

    .installation-requirements,
    .warranty-details,
    .service-network {
        margin-bottom: 20px;
    }
}

/* Responsive Breakpoints */
@media screen and (max-width: 1200px) {
    .highlight {
        width: 23%;
    }
}

@media screen and (max-width: 992px) {
    .highlight {
        width: 30%;
    }
}

@media screen and (max-width: 768px) {
    .highlight {
        width: 45%;
    }
}

@media screen and (max-width: 480px) {
    .highlight {
        margin-bottom: 15px;
    }

    .breadcrumb {
        padding-bottom: 30px;
    }

     

    .text h3 {
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 5px;
    }
    .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
   
}
 .icon-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px; /* icons ke beech gap */
        justify-items: center; /* center align each icon */
    }
}

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 50vh;
    background: linear-gradient(135deg, #007bff, #007bff);
    color: #fff;
    padding: 20px;
}

.hero-section h1 {
    /* font-size: 2rem; */
    color: #fff;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1rem;
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-section button {
    padding: 12px 25px;
    font-size: 1rem;
    background-color: #0d6efd;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-section button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .hero-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stats-banner {
    background-color: #000080;
    border-radius: 30px;
    padding: 9px 13px;
    color: white;
    max-width: 1200px;
    /* margin: -62px auto; */
    margin-top: -77px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}
.pt-80 {
    padding-top: 30px !important;
}
.stats-item {
    margin-bottom: 5px;
}
.stats-item p {
    margin: 0;
    font-size: 18px;
}
    .ac-btn {
    padding: 8px 6px !important;
    font-size: 12px;
    text-align: center;
}
    .pt-60{
        padding-top: 30px !important;
    }
    .hero-section p {
        font-size: 0.8rem;
    }

    .hero-section button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .nav-link {
        display: block;
        padding: 0;
        text-decoration: none;
        transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    }

    .product-container {
        display: block;
        margin: auto;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
    }

    .image-section {
        width: 100%;
        padding: 20px 0px;
    }

    .details-section {
        width: 100%;
        padding: 30px 0px;
    }
    .thumbnail {
    width: 64px;
    height: 40px;
}
}

.cd-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.evaporator-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    padding: 28px;
    text-align: left;
    position: relative;
}

.evaporator-card .label {
    position: absolute;
    top: -10px;
    left: 20px;
    background-color: #187bff;
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 15px;
}

.evaporator-card.popular .label-popular {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #03cdbe;
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 15px;
}

.image-placeholder {
    width: 100%;
    height: 180px;
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #666;
}

.model-name {
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.power {
    font-size: 28px;
    color: #187bff;
    font-weight: bold;
    margin-bottom: 10px;
}

.specs1 {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* .btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    background-color: #0050c8;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
} */

@media (max-width: 768px) {
    .cd-container {
        flex-direction: column;
        align-items: center;
    }

    .evaporator-card {
        width: 90%;
    }
}

.buttons1 {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 20px;
}

.bt-cl {
    padding: 12px 25px;
    font-size: 1rem;
    background-color: #0d6efd;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}


/* Main Wrapper */
.pqr-wrap {
    max-width: 1100px;
    margin: 40px auto;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
}

/* Header */
.pqr-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.pqr-title h2 {
    color: #1f5bd7;
    font-weight: 700;
}

.pqr-title p {
    color: #000;
}

.pqr-ibox {
    background: #eaf2ff;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1.8rem;
}

/* Body Section */
.pqr-body {
    margin-top: 25px;
}

.pqr-body h3 {
    color: #1f5bd7;
    font-weight: 700;
}

.pqr-sub {
    color: #000;
    font-size: 0.95rem;
    margin-top: 5px;
}

/* Table Section */
.tbl-box {
    overflow-x: auto;
    margin-top: 20px;
}

.tbl {
    width: 100%;
    border-collapse: collapse;
    /* min-width: 600px; */
    border: 1px solid #eeeeee;
}

.tbl thead {
    background-color: #0056d2;
    color: #fff;
}

.tbl th,
.tbl td {
    text-align: left;
    /* padding: 12px 15px; */
    border-bottom: 1px solid #eee;
}

.tbl tbody tr:nth-child(even) {
    background: #f7f9fc;
}

/* Feature Boxes */
.bx-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
    gap: 15px;
}

.bx {
    flex: 1 1 calc(33.333% - 10px);
    background: #f1f7ff;
    border-radius: 8px;
    padding: 20px;
    transition: 0.3s ease;
}

.bx:hover {
    background: #e8f0ff;
    transform: translateY(-3px);
}

.bx-ico {
    font-size: 20px;
    /* margin-bottom: 10px; */
    padding: 7px 10px;
    height: 50px;
    background: #0066cc;
    width: 50px;
    border-radius: 10px;
}

.bx h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f5bd7;
}

.bx p {
    font-size: 0.9rem;
    color: #444;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .pqr-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .bx-wrap {
        flex-direction: column;
    }

    .bx {
        width: 100%;
    }
}




/* --- Section Heading --- */
.blk-section-title {
    text-align: left;
    color: #0056d2;
    /* margin: 30px 40px 20px; */
}

/* --- Cards Row --- */
.blk-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;

}

.blk-card {
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    width: 265px;
    text-align: center;
    padding: 20px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.blk-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blk-card .blk-card-ico {
    font-size: 28px;
    color: #0056d2;
    margin-bottom: 10px;
    text-decoration: none;
}

.blk-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f5bd7;
}

.blk-card p {

    color: #000;
    margin: 0;
}

/* --- Help Section --- */
.blk-help-area {
    background: #e8f1ff;
    border-radius: 8px;
    margin: 40px 0px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.blk-help-text {
    flex: 1 1 250px;
}

.blk-help-text h3 {
    color: #0056d2;
    font-weight: 700;
    margin-bottom: 15px;
}

.blk-help-text ul {
    padding-left: 20px;
}

.blk-help-text ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

/* --- Form Section --- */
.blk-form-box {
    flex: 1 1 300px;
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blk-form-box label {
    font-size: 14px;
    color: #333;
}

.blk-form-box input,
.blk-form-box textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.blk-form-box input[type="checkbox"] {
    width: auto;
    margin-right: 5px;
}

.blk-form-box button {
    width: 100%;
    background-color: #0056d2;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.blk-form-box button:hover {
    background-color: #0041a8;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .blk-card-grid {
        justify-content: center;
    }

    .blk-help-area {
        flex-direction: column;
        padding: 20px;
    }

    .blk-form-box {
        width: 100%;
    }
}

.box {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    background-color: #0073e6;
    color: white;
    min-width: fit-content;
    margin-bottom: 40px;
    width: fit-content;
    margin-top: 10px;
}

.ic {
    background: #0073e6;
    color: white;
    padding: 9px 7px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    text-align: center;
}


.ac-spec-section {
    padding: 60px 15px;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

.ac-spec-title {
    text-align: center;
    color: #004aad;

    font-weight: 600;
    margin-bottom: 25px;
}

.ac-spec-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); */
}

.ac-spec-table {
    width: 100%;
    border-collapse: collapse;
    /* min-width: 700px; */
}

.ac-spec-table th,
.ac-spec-table td {
    border: 1px solid #ddd;
    padding: 10px 12px;
    text-align: center;

}

.ac-spec-table th {
    background: #007bff;
    color: #fff;
    font-weight: 600;
}

.ac-spec-section-row td {
    background: #e7f1ff;
    color: #007bff;
    font-weight: 600;
    text-transform: uppercase;
}

.ac-spec-table tr:nth-child(even):not(.ac-spec-section-row) {
    background: #f7faff;
}

@media (max-width: 768px) {

    .ac-spec-table th,
    .ac-spec-table td {
        font-size: 16px;
        padding: 8px;
    }
}

@media (max-width: 576px) {
    .ac-spec-title {
        font-size: 22px;
    }

    .ac-spec-table {
        font-size: 12px;
    }
}

.ac-spec-container {
    padding: 0px 50px;
}

.bd {
    font-weight: 600;
}

/* Hidden state */
.hidden {
    display: none;
}

/* Button styling */
.read-more-btn {
    background-color: #ffffff;
    color: #007bff;
    border: none;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    /* display: inline-flex; */
    align-items: center;
    gap: 8px;
    width: 100%;
    text-align: center;
    font-weight: 500;
}

/* .read-more-btn:hover {
  background-color: #0056b3;
} */

/* Icon styling and rotation */
.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.arrow.rotate {
    transform: rotate(180deg);
}

/* Smooth show/hide animation */
#moreSpec {
    overflow: hidden;
    transition: max-height 0.5s ease;
}

@media (max-width: 1199px) and (min-width: 992px) {}

/* Tablet Portrait and Landscape */
@media (min-width: 768px) and (max-width: 1024px) {
    .submenu {
        display: none;
        position: absolute;
        background: #fff;
        top: 100%;
        left: -125px;
        min-width: fit-content;
        border: 1px solid #ddd;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        list-style: none;
    }

    /* Styles for iPad and similar tablets */

    .stats-item h2 {
        color: #00d1b2;
        font-weight: 700;
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 30px;
    }

    .ac-wd {
        max-width: 350px;
    }

    .nav-links a {
        font-size: 19px;
    }

    .nav-links {
        gap: 12px;
    }
}


.banner-section {
    overflow: hidden;
    position: relative;
}

/* Zoom In Once Animation */
@keyframes zoomInOnce {
    0% {
        transform: scale(1.2);
    }

    /* 60% {
      transform: scale(1.1); 
      Image thoda bada hoga  
    } */

    100% {
        transform: scale(1);
    }
}

.zoom-banner {
    width: 100%;
    height: auto;
    animation: zoomInOnce 2.5s ease-in-out;
    /* 2.5 sec me ek baar chalega */
}





/* Section */
.ac-section {
    padding: 40px 0 80px;
    background: #f7f7f7;
}

/* Container */
.ac-container {

    margin: auto;
    padding: 0 15px;
}

/* Title */
.ac-title {
    text-align: center;
    margin-bottom: 40px;
}

.ac-title h2 {
    font-size: 32px;
}

.ac-spec::before {
    content: "🔹";
    margin-right: 8px;
    color: #007bff;
}

/* Grid */
.ac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.ac-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #007bff;
    transition: transform 0.3s ease;
    text-align: center;
}

.ac-spec {
    line-height: 40px;
}

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

.ac-card img {
    width: 100%;
    max-width: 330px;
    margin-bottom: 15px;
}

.ac-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #0056d2;
}

/* Button */
.ac-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #007bff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

/* Tablet */
@media (max-width: 992px) {
    .ac-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile - 2 cards */
@media (max-width: 576px) {
    .ac-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .ac-card h3 {
        font-size: 14px;
    }

    .ac-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
}

.ac-breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
}

.ac-breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.ac-spec {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
}

/* Section */
.cr-section {
    padding: 60px 0 80px;
    background: #f7f9fc;
}

/* Container */
.cr-container {

    margin: auto;
    padding: 0 15px;
}

/* Title */
.cr-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
    color: #004aad;
}

/* GRID – always 2 columns */
.cr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */
.cr-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

/* Label */
.cr-label {
    background: #004aad;
    color: #fff;
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    margin-bottom: 15px;
    width: fit-content;
}

/* Image placeholder */
.cr-image {
    background: #eef2f7;
    height: 200px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

/* Model name */
.cr-model {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Power */
.cr-power {
    font-size: 16px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 15px;
}

/* Specs */
.cr-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
}

/* Button */
.cr-btn {
    margin-top: auto;
    text-align: center;
    background: #007bff;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
}

/* Mobile adjustments (still 2 columns) */
@media (max-width: 576px) {
    .cr-grid {
        gap: 15px;
    }

    .cr-image {
        height: 160px;
        font-size: 12px;
    }

    .cr-model {
        font-size: 16px;
    }

    .cr-specs {
        font-size: 13px;
    }
}