.passport-section {
    padding: 3rem 2rem;
}
.passport-section h2 {
    color: #000000;
    text-align: center;
    vertical-align: text-top;
    font-size: 43px;
    line-height: 60px;
    border-style: hidden;
    outline: none;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}
.passport-section p {
    color: #000000;
    vertical-align: text-top;
    font-size: 20px;
    line-height: auto;
    border-style: hidden;
    outline: none;
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
    text-align: center;
}
.passport-btn {
    display: inline-block;
    background-color: #ff5a00;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    align-self: center;
}
.passport-btn:hover {
    background-color: #1a47cc;
}

/* Workshop grid */
.workshop-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 1200px;
    margin: 2rem auto;
}

.workshop-card {
    flex: 0 0 280px;               /* fixed width */
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);

    /* Equal height fix */
    align-items: stretch;
}

.content-area {
    flex-grow: 1;                  /* content area takes all available space */
    display: flex;
    flex-direction: column;
}

.content-area {
    flex: 1;  /* Take available space */
}

.workshop-card img {
    width: 100%;
    height: 200px; /* or whatever fixed height you want */
    object-fit: cover;
    object-position: top; /* ensures top of image is visible */
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
}
.testimonial-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    text-align: center;
}
.testimonial-card p {
    font-style: italic;
}
.testimonial-card h4 {
    margin-top: 1rem;
    font-weight: 600;
}


/*start css for testimonial */
.testimonial-slider {
    position: relative;
    width: 90%;
    max-width: 700px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 10px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
    width: 100%;
}

.testimonial-card {
    flex: 0 0 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 1.5rem 2rem;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.testimonial-card img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    object-fit: cover;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.testimonial-card h4 {
    font-size: 0.95rem;
    color: #333;
}


/* Responsive */
@media (max-width: 768px) {
    .workshop-grid {
        display: block;          /* stack items vertically */
        max-width: 100%;          /* almost full width */
        margin: 1rem auto;       /* less top/bottom margin */
        padding: 0 1rem;         /* optional, to avoid touching screen edges */
    }

    .workshop-grid > * {
        width: 100%;             /* full width for each item */
        margin-bottom: 1.5rem;   /* gap between items */
    }

    .workshop-grid > *:last-child {
        margin-bottom: 0;        /* remove extra margin after last item */
    }
    .testimonial-card {
        padding: 1rem 1.2rem;
    }
    .testimonial-card img {
        width: 70px;
        height: 70px;
    }
    .testimonial-card p {
        font-size: 0.95rem;
    }
}
@media (max-width: 480px) {
    .testimonial-card {
        padding: 0.8rem 1rem;
    }
    .testimonial-card img {
        width: 60px;
        height: 60px;
    }
    .testimonial-card p {
        font-size: 0.9rem;
    }
    .testimonial-card h4 {
        font-size: 0.85rem;
    }
}
/*end css for testimonial*/
.work-title{
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
}
.work-desc{
    font-size: 17px !important;
    line-height: 1.3;
    text-align: left!important;
}

@media (max-width: 768px) {
    /* styles for tablets + big phones */
    .work-title{
        font-size: 1.3rem;
    }
    .passport-section h2 {
        font-size: 32px;
        line-height: normal;
    }
    .passport-section {
        padding: 1.5rem 1rem;
    }
}


