.text-justify {
    text-align: justify;
}

.key-about {
    background-color: #fff7f0;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 300px;
    transition: transform 0.3s;
    /* border: 1px solid #188d40; */
}

.key-about:hover {
    transform: translateY(-5px);
}

.key-about h3 {
    font-size: 1.6rem;
    color: #000000;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff7202;
    padding-bottom: 5px;
    font-weight: 600;
}

.key-links {
    background-color: #fff7f0;
    /* soft background */
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 300px;
    transition: transform 0.3s;
    /* border: 1px solid #188d40; */
}

.key-links:hover {
    transform: translateY(-5px);
}

.key-links h3 {
    font-size: 1.6rem;
    color: #000000;
    margin-bottom: 15px;
    border-bottom: 2px solid #e3741b;
    padding-bottom: 5px;
    font-weight: 600;
}

.key-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-links ul li {
    margin: 0px 0;
}

.key-links ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 1rem;
    padding: 8px 12px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.key-links ul li a:hover {
    background-color: #e3741b;
    color: #ffffff;
    transform: translateX(5px);
}

.key-contact {
    background-color: #fff7f0;
    /* soft background */
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 300px;
    transition: transform 0.3s;
    /* border: 1px solid #188d40; */
}

.key-contact:hover {
    transform: translateY(-5px);
}

.key-contact h3 {
    font-size: 1.6rem;
    color: #000000;
    margin-bottom: 15px;
    border-bottom: 2px solid #e3741b;
    padding-bottom: 5px;
    font-weight: 600;
}

.key-contact p a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.key-baner-div {
    width: 100%;
    height: 340px;
    margin-bottom: 30px;
}

.key-baner-div img {
    width: 100%;
    height: 340px;
    /* margin-bottom: 30px; */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.key-main h2 {
    color: #e3741b;
    font-size: 38px;
    font-weight: 800;
}

.all-head {
    font-size: 30px;
    color: #000;
    font-weight: 700;
}




/* FAQ Section */
/* FAQ Item */
.faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* Question */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 26px;
    /* Reduced height */
    font-size: 1rem;
    /* Slightly smaller font */
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #222;
}

/* Icon */
.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #e3741b;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 26px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    padding-bottom: 16px;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    /* arrow points up when open */
}



/* Why choose css */
.experience-section {
    background: linear-gradient(to right, #fff8f6, #ffffff);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.experience-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff7202, #e3741b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    color: #fff;
    font-size: 28px;
}

.experience-card h5 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}

.experience-card p {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 28px;
    }

    .key-about {
        max-width: 100%;
    }

    .key-links {
        max-width: 100%;
    }

    .key-contact {
        max-width: 100%;
    }

    .key-baner-div img {
        width: 100%;
        height: auto;
    }

    .key-baner-div {
        width: 100%;
        height: auto;
    }

    .key-main h2 {
        font-size: 30px;
    }

    .all-head {
        font-size: 22px;
    }

    .line-h {
        height: auto !important;
    }

    .signature {
        height: auto !important;
    }

    .story {
        height: auto;
    }

    .studio {
        height: auto;
    }

    .line-box {
        height: auto;
    }
}


.line-box {
    height: 150px;
}

.studio {
    height: 110px;
}

.list-all {
    list-style: none;
    padding-left: 0rem;
    line-height: 2rem;
}

.list-all li i {
    color: #e3741b;
    padding-right: 25px;
}

.choosing {
    padding-left: 20px;
}

.line-h {
    height: 175px;
}



/* Table css */
/* .table-container {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
} */

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background-color: #e3741b;
    color: #fff;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: center;
}

.comparison-table th {
    font-weight: 600;
    font-size: 16px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: 0.3s ease;
}

.comparison-table tbody tr:hover {
    background-color: #f3f3f3;
}

.comparison-table td {
    font-size: 15px;
    color: #555;
}

/* Responsive */
@media (max-width: 600px) {

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
        font-size: 14px;
    }
}


.best-w {
    border-left: 3px solid #e3741b;
    padding: 18px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.best-w h6 {
    font-size: 16px;
    font-weight: 600;
}

.cinematic {
    list-style: none;
    padding-left: 0rem;
}

.cinematic li i {
    color: #e3741b;
    padding-right: 25px;
}

.signature {
    height: 190px;
}

.story {
    height: 235px;
}