/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3712bd 0%, #57dd18 100%);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 5% 5rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
}

/* Story Section */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.story-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.story-image {
    width: 100%;
    height: 400px;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, #3712bd 0%, #57dd18 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Mission & Vision */
.mission-vision {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    margin-bottom: 5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    text-align: center;
    padding: 2rem;
}

.mv-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.mv-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ED1E79;
}

.mv-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Values Section */
.values-section {
    margin-bottom: 5rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    margin-bottom: 5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 100%;
    height: 300px;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, #3712bd 0%, #57dd18 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.member-info {
    padding: 1.5rem;
}

.member-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.member-role {
    color: #ED1E79;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.member-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: #ED1E79;
    color: white;
    transform: scale(1.1);
}

/* Stats Section */
.stats-section {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, #3712bd 0%, #57dd18 100%);
    padding: 2rem 3%;
    border-radius: 20px;
    margin-bottom: 5rem;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* services section */
.services-section {
    margin-bottom: 5rem;
}
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}
.service-item:hover {
    transform: translateY(-10px);
}
.service-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.service-details {
    text-align: center;
}
.service-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}
.service-details p {
    color: #666;
    line-height: 1.7;
}

.quote-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background: #25D366; /* WhatsApp green */
    color: white;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}
.quote-btn:hover {
    background: #128C7E;
}

/*media cta */
/* Media CTA Section - Add this to your about.css file */

.media-cta {
    background: linear-gradient(135deg, #3712bd 0%, #57dd18 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.media-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.media-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.media-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.media-cta .cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
}

.media-cta .cta-button:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.media-cta .cta-button:active {
    transform: translateY(-1px);
}

/* Alternative Style 1 - With Icons */
.media-cta.style-icons {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.media-cta.style-icons::after {
    content: '📸';
    position: absolute;
    font-size: 15rem;
    opacity: 0.1;
    top: 50%;
    left: 10%;
    transform: translateY(-50%) rotate(-15deg);
}

/* Alternative Style 2 - Split Background */
.media-cta.style-split {
    background: linear-gradient(135deg, #3712bd 0%, #57dd18 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 40px;
}

.media-cta.style-split .cta-content {
    flex: 1;
}

.media-cta.style-split .cta-visual {
    flex: 0 0 300px;
    font-size: 10rem;
    opacity: 0.3;
}

/* Alternative Style 3 - Minimal */
.media-cta.style-minimal {
    background: #f8f9fa;
    border: 3px solid #667eea;
    padding: 50px 40px;
}

.media-cta.style-minimal h2 {
    color: #333;
}

.media-cta.style-minimal p {
    color: #666;
}

.media-cta.style-minimal .cta-button {
    background: linear-gradient(135deg, #3712bd 0%, #57dd18 100%);
    color: white;
}

.media-cta.style-minimal .cta-button:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .media-cta {
        padding: 40px 25px;
        margin: 40px 0;
    }
    
    .media-cta h2 {
        font-size: 2rem;
    }
    
    .media-cta p {
        font-size: 1rem;
    }
    
    .media-cta .cta-button {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .media-cta.style-split {
        flex-direction: column;
        text-align: center;
    }
    
    .media-cta.style-split .cta-visual {
        flex: 0 0 auto;
        font-size: 6rem;
    }
}

@media (max-width: 480px) {
    .media-cta {
        padding: 35px 20px;
        border-radius: 15px;
    }
    
    .media-cta h2 {
        font-size: 1.6rem;
    }
    
    .media-cta p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .media-cta .cta-button {
        padding: 12px 28px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
}

/* Why Choose Us */
.why-choose {
    margin-bottom: 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-content p {
    color: #666;
    line-height: 1.7;
}

/* Certifications */
.certifications {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.certifications h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.cert-badge {
    padding: 2rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: background 0.3s;
}

.cert-badge:hover {
    background: #e8eaf6;
}

.cert-badge .icon {
    width: 100px;              /* fixed size for consistency */
    height: 100px;
    margin: 0 auto 0.5rem;    /* center horizontally */
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-badge .icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;      /* keeps aspect ratio */
    border-radius: 8px;       /* optional: soften edges */
}

.cert-badge p {
    color: #666;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    margin-bottom: 5rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, #3712bd 0%, #57dd18 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    color: #333;
    margin-bottom: 0.2rem;
}

.testimonial-info p {
    color: #999;
    font-size: 0.9rem;
}

.testimonial-stars {
    color: #ffa500;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, #3712bd 0%, #57dd18 100%);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    background: white;
    color: #ED1E79;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .story-section {
        grid-template-columns: 1fr;
    }

    .story-image {
        height: 300px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 2rem 5%;
    }

    .mission-vision {
        padding: 2rem;
    }

    .cta-section {
        padding: 2rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}