/* Lower CTA */
.lower-cta {
    padding: 6rem 0;
    background: var(--white);
}

.excellence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.excellence-content {
    padding-right: 2rem;
}

.excellence-subtitle {
    color: goldenrod;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.excellence-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffa500;
}

.excellence-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.excellence-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: #ffa500;
    font-size: 1.2rem;
}

.excellence-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.excellence-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.excellence-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .excellence-content {
        padding-right: 0;
        text-align: center;
    }

    .excellence-features {
        justify-content: center;
    }

    .feature {
        justify-content: center;
    }

}

@media (max-width: 768px) {
    .excellence-content h2 {
        font-size: 2.5rem;
    }

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

  

        .about-premier {
    padding: 6rem 0;
    background: var(--white);
    overflow: hidden;
}

.premier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Image Styling */
.premier-image-container {
    position: relative;
}

.premier-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.premier-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premier-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: #ffa500;
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 1rem;
    opacity: 0.9;
}

.achievement-cards {
    display: flex;
    gap: 2rem;
    margin-top: -60px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.achievement-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
}

.achievement-card i {
    color: #ffdb0f;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.achievement-card h4 {
    font-size: 1.8rem;
    color: #ffa500;
    margin-bottom: 0.5rem;
}

.achievement-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Content Styling */
.premier-content {
    padding-right: 2rem;
}

.section-subtitle {
    color: #ffdb0f;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.8rem;
    color: #ffa500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.premier-lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.premier-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: #ffdb0f;
    padding: 1rem;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
}

.feature-text h4 {
    color: #ffa500;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #666;
    line-height: 1.6;
}

.premier-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.badge img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.badge span {
    font-size: 0.9rem;
    color: #ffa500;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .premier-grid {
        gap: 3rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .premier-image img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .premier-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .premier-content {
        padding-right: 0;
    }

    .premier-image img {
        height: 400px;
    }

    .achievement-cards {
        margin-top: -40px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-premier {
        padding: 4rem 0;
    }

    .premier-image img {
        height: 300px;
    }

    .experience-badge {
        right: 10px;
        bottom: 10px;
        padding: 1rem;
    }

    .experience-badge .years {
        font-size: 2rem;
    }

    .achievement-cards {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .premier-badges {
        flex-direction: column;
        gap: 1rem;
    }
}
    