/*==========================================
ABOUT PAGE
==========================================*/

.about-banner {
    position: relative;
    background: linear-gradient(135deg, #4B1F6F, #8A2BE2, #F06292);
    padding: 140px 0 90px;
    overflow: hidden;
    color: #fff;
}

.about-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/crystal-pattern.png");
    opacity: .08;
}

.about-banner h1 {
    font-size: 55px;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
}

.about-banner p {
    font-size: 18px;
    opacity: .95;
}

.breadcrumb {
    margin-top: 20px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ffd6f0;
}

.section-tag {
    display: inline-block;
    background: #f5d6ff;
    color: #7a1fa2;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.about-company h2,
.our-story h2,
.why-choose h2,
.services-section h2,
.team-section h2,
.testimonial-section h2,
.faq-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 40px;
    margin-bottom: 20px;
}

.about-company h2 span,
.our-story h2 span {
    color: #8e24aa;
}

.about-company p,
.our-story p {
    color: #666;
    line-height: 1.9;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    transition: .5s;
}

.about-image:hover img {
    transform: scale(1.03);
}

.experience-box {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: #8A2BE2;
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.experience-box h2 {
    font-size: 42px;
    margin: 0;
}

.about-feature {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.about-feature:hover {
    transform: translateY(-10px);
}

.about-feature i {
    font-size: 35px;
    color: #8A2BE2;
    margin-bottom: 15px;
}

/* Mission & Vision */

.mission-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    height: 100%;
}

.mission-box:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #8A2BE2, #F06292);
    color: #fff;
}

.mission-box .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #8A2BE2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.mission-box i {
    font-size: 35px;
}

.mission-box p {
    color: #666;
    transition: .4s;
}

.mission-box:hover p {
    color: #fff;
}

.mission-box:hover .icon {
    background: #fff;
    color: #8A2BE2;
}

/* Why Choose */

.choose-card {
    background: #ee06b1;
    padding: 35px;
    text-align: center;
    border-radius: 20px;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    height: 100%;
}

.choose-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #8A2BE2, #F06292);
    color: #fff;
}

.choose-card i {
    font-size: 45px;
    color: #fbff00;
    margin-bottom: 20px;
}

.choose-card:hover i {
    color: #fff;
}

/* Services */

.service-card {
    background: #ee06b1;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.service-card:hover {
    transform: translateY(-12px);
}

.service-card i {
    font-size: 45px;
    color: #fbff00;
    margin-bottom: 20px;
}

/* Counter */

.counter-box {
    background: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.counter-box i {
    font-size: 45px;
    color: #8A2BE2;
    margin-bottom: 20px;
}

.counter-box h2 {
    font-size: 42px;
    color: #8A2BE2;
}

/* Team */

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 100%;
}

.team-card h4 {
    margin-top: 20px;
}

.team-social {
    padding: 20px;
}

.team-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #8A2BE2;
    color: #fff;
    margin: 5px;
    text-decoration: none;
}

/* Testimonials */

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .4s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

/* FAQ */

.accordion-button:not(.collapsed) {
    background: #8A2BE2;
    color: #fff;
}

/* CTA */

.cta-section {
    background: linear-gradient(135deg, #8A2BE2, #F06292);
    color: #fff;
    padding: 70px 0;
}

.cta-section h2 {
    font-size: 42px;
}

.cta-section p {
    opacity: .9;
}