/* Hero Section */
.pgp-hero {
    background: linear-gradient(135deg, #2c5f8d 0%, #1e4466 100%);
    padding: 40px 0;
    margin-bottom: 30px;
    border-radius: 15px;
    color: white;
}

.pgp-hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.pgp-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Image Gallery */
.images-gellary ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
}

.images-gellary ul li {
    list-style: none;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.images-gellary ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.images-gellary ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.images-gellary ul li img:hover {
    transform: scale(1.15);
}

/* Feature Cards */
.pgp-feature-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #2c5f8d;
}

.pgp-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.pgp-feature-card h4 {
    color: #2c5f8d;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.pgp-feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Info Box */
.pgp-info-box {
    background: #f0f6fa;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    border: 2px solid #2c5f8d;
}

.pgp-info-box h3 {
    color: #2c5f8d;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Benefit Cards */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid #2c5f8d;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.benefit-item i {
    font-size: 3rem;
    color: #2c5f8d;
    margin-bottom: 15px;
}

.benefit-item h5 {
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Buttons */
.pgp-btn-group {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.ttm-btn-custom {
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.ttm-btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 141, 0.3);
}

.ttm-btn-color-blue {
    background-color: #2c5f8d !important;
    border-color: #2c5f8d !important;
    color: white !important;
}

.ttm-btn-color-blue:hover {
    background-color: #1e4466 !important;
    border-color: #1e4466 !important;
}

/* Stats Section */
.pgp-stats {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c5f8d;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    margin-top: 10px;
}

/* Process Steps */
.process-timeline {
    position: relative;
    padding: 20px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    padding-left: 50px;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 40px;
    bottom: -25px;
    width: 2px;
    background: #2c5f8d;
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    background: #2c5f8d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(44, 95, 141, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h5 {
    color: #333;
    font-weight: bold;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    margin: 0;
}

/* Contact Info */
.contact-info-card {
    background: linear-gradient(135deg, #2c5f8d 0%, #1e4466 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.contact-info-card h4 {
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    opacity: 0.9;
}

/* Pretty Photo */
.pp_pic_holder {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    position: fixed !important;
}

.pp_overlay {
    background: rgba(0, 0, 0, 0.85) !important;
}

/* Custom Link Color */
.ttm-textcolor-blue {
    color: #2c5f8d !important;
}

.ttm-textcolor-blue:hover {
    color: #1e4466 !important;
}

.ttm-list-icon-color-blue .ti {
    color: #2c5f8d !important;
}

/* Alert Box */
.alert-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.alert-box i {
    color: #ffc107;
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .pgp-hero h1 {
        font-size: 1.8rem;
    }
    
    .pgp-btn-group {
        flex-direction: column;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
    }
}