#gpm-main-about{
    width: 100%;
}
#gpm-main-about-all{
    width: 90%;
    height: auto;
    margin: auto;
}
.gpm-main-about-hero-section {
    position: relative;
}

.gpm-main-about-hero-content {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    width: 100%;
}
.gpm-main-about-container h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

.gpm-main-about-container .gpm-heading-main {
    color: #c21717;
}

#gpm-main-about-all  h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

#gpm-main-about-all  .gpm-heading-main {
    color: #c21717;
}
.gpm-main-about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1976d2;
    margin-bottom: 30px;
}

.gpm-main-about-hero-description {
    color: black;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.gpm-main-about-features-list {
    list-style: none;
    margin-bottom: 40px;
}

.gpm-main-about-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #c21717;
    font-size: 15px;
}

.gpm-main-about-features-list li::before {
    content: '✓';
    background: #19762d;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.gpm-main-about-cta-button {
    background: #1976d2;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(32, 201, 151, 0.3);
}

.gpm-main-about-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(32, 201, 151, 0.4);
}

.gpm-main-about-hero-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gpm-main-about-main-image {
    width: 100%;
    max-width: 420px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.8s ease-in-out;
}

.gpm-main-about-main-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px #19762d;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gpm-main-about-hero-content {
        grid-template-columns: 58% 42%;
        gap: 30px;
    }

    .gpm-main-about-hero-text {
        padding-left: 70px;
    }

    .gpm-main-about-hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 1024px) {
    .gpm-main-about-hero-content {
        grid-template-columns: 60% 40%;
        gap: 25px;
    }

    .gpm-main-about-hero-text {
        padding-left: 60px;
        padding-right: 10px;
    }

    .gpm-main-about-hero-title {
        font-size: 3rem;
    }

    .gpm-main-about-years-badge {
        left: 10px;
        padding: 25px 15px;
    }

    .gpm-main-about-main-image {
        max-width: 380px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .gpm-main-about-hero-content {
        grid-template-columns: 100%;
        gap: 40px;
    }

    .gpm-main-about-hero-text {
        padding-left: 0;
        padding-right: 0;
        order: 2;
        text-align: center;
    }

    .gpm-main-about-hero-images {
        order: 1;
        padding-left: 0;
        max-width: 400px;
        height: 400px;
    }

    .gpm-main-about-hero-title {
        font-size: 2.5rem;
    }

    .gpm-main-about-hero-description {
        max-width: 100%;
    }

    .gpm-main-about-main-image {
        max-width: 380px;
        height: 90%;
    }


}

@media (max-width: 480px) {
    .gpm-main-about-container {
        padding: 0 15px;
    }

    .gpm-main-about-hero-title {
        font-size: 2rem;
    }

    .gpm-main-about-main-image {
        max-width: 100%;
        height: 350px;
    }

    .gpm-main-about-cta-button {
        padding: 12px 30px;
        font-size: 15px;
    }

    .gpm-main-about-years-badge {
        padding: 12px 20px;
        font-size: 11px;
    }

    .gpm-main-about-hero-description {
        font-size: 15px;
    }

    .gpm-main-about-features-list li {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .gpm-main-about-hero-title {
        font-size: 1.8rem;
    }

    .gpm-main-about-main-image {
        height: 320px;
    }

    .gpm-main-about-hero-text {
        text-align: left;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gpm-main-about-hero-text>* {
    animation: fadeInUp 0.8s ease forwards;
}

.gpm-main-about-hero-text .gpm-main-about-about-tag {
    animation-delay: 0.1s;
}

.gpm-main-about-hero-text .gpm-main-about-hero-title {
    animation-delay: 0.2s;
}

.gpm-main-about-hero-text .gpm-main-about-hero-description {
    animation-delay: 0.3s;
}

.gpm-main-about-hero-text .gpm-main-about-features-list {
    animation-delay: 0.4s;
}

.gpm-main-about-hero-text .gpm-main-about-cta-button {
    animation-delay: 0.5s;
}

.gpm-main-about-hero-images {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}


/* stats */
.gpm-about-overview-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    border-left: 6px solid var(--accent-color);
    padding-left: 20px;
    display: flex;
    align-items: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e5e7eb;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
    .stats-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
        gap: 25px;
        margin: 30px 0;
    }
}

/* Title */
.gpm-about-page-title {
    color: #003366;
    border-left: 5px solid #007bff;
    padding-left: 15px;
    font-size: 28px;
    margin-bottom: 25px;
}

/* Grid Layout */
.gpm-about-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Card Style */
.gpm-about-page-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.gpm-about-page-section:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Headings */
.gpm-about-page-heading {
    color: #007bff;
    font-size: 20px;
    margin-bottom: 10px;
}

.gpm-about-pages-icon {
    font-size: 3rem;
}

/* Text */
.gpm-about-page-text {
    color: black;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: justify;
}

/* Button */
.gpm-about-page-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
}

.gpm-about-page-button:hover {
    background: #0056b3;
}

/* Values */
.gpm-about-mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: auto;
}

.gpm-about-mission-value-card {
    background: rgb(236, 236, 236);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.gpm-about-mission-value-card:hover {
    transform: translateY(-5px);
}

.gpm-about-mission-value-icon {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 15px;
}

.gpm-about-mission-value-title {
    font-size: 1.3rem;
    color: #1e40af;
    margin-bottom: 10px;
    font-weight: 600;
}

@media screen and (max-width: 480px) {
    .gpm-about-mission-values {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .gpm-about-overview-section h2 {
        font-size: 2rem;
        padding-left: 0px;
    }

    .gpm-about-page-grid {
        grid-template-columns: 1fr;
    }
}