﻿/* Banner Section */
.header-banner-section {
    background: linear-gradient(to right, #DBF5FD 50%, #fff 50%);
    position: relative;
    padding-top: 2rem;
    padding-bottom: 5rem;
}

.header-banner-section .page-title {
    color: #0a3fa4;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease forwards;
}

/* Content Card */
.header-banner-section .content-card {
    width: 100%;
    background-image: url('../images/why-choose-us-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 2rem;
    animation: fadeInUp 1.2s ease forwards;
}

.header-banner-section .content-card .content-card-wrapper {
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 3rem 4rem;
    border-radius: 0.75rem;
    position: relative;
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease;
}
.header-banner-section .content-card .content-card-wrapper.show {
    transform: translateY(0);
    opacity: 1;
}

/* Paragraphs */
.content-card .description-paragraph {
    font-size: 1rem;
    color: #202329;
    margin-bottom: 1.5rem;
    line-height: 1.75;
    animation: fadeIn 1s ease forwards;
}

/* Extra Points */
.extra-points ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}
.extra-points li {
    font-size: 1rem;
    color: #0a3fa4;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}
.extra-points li.show {
    opacity: 1;
    transform: translateX(0);
}
.extra-points i {
    color: #f46300;
    font-size: 20px;
}

/* CTA Button */
.cta-wrapper {
    text-align: center;
    margin-top: 2rem;
}
.cta-wrapper .contact-button {
    display: inline-block;
    background-color: #0a3fa4;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
    font-size: 1rem;
}
.cta-wrapper .contact-button:hover {
    background-color: #072c7a;
    transform: translateY(-3px);
}

/* Certifications Section */
.certifications-section {
    padding: 5rem 1rem 6rem 1rem;
    margin-top: 3rem;
    text-align: center;
    background: #f9f9f9;
}
.certifications-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #0a3fa4;
    animation: fadeInDown 1s ease forwards;
}
.certifications-section .button-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.button-grid .cert-button {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 0.75rem 1.5rem;
    border: 2px solid #f46300;
    border-radius: 0.5rem;
    color: #f46300;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
}
.button-grid .cert-button.show {
    opacity: 1;
    transform: translateY(0);
}
.button-grid .cert-button:hover {
    background-color: #f46300;
    color: white;
    transform: scale(1.05);
}

.section-title::after {
    position:relative;
    left:auto;

}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 550px) {
    .header-banner-section .content-card { padding: 3rem 2rem; }
    .header-banner-section .content-card .content-card-wrapper { padding: 2rem; }
}
@media (max-width: 470px) {
    .header-banner-section .content-card { padding: 1rem; }
}