/* ===================================
     Start become specialist page 
=================================== */

.hero {
    background: var(--beige-color);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--para-color);
    margin-bottom: 1rem;
    opacity: 0.95;
}

.become-specialist-hero .btn-effect-2 {
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    letter-spacing: 1px;
    transition: transform 0.3s;
    min-width: 150px;
    display: inline-block;
    text-align: center;
    padding: 1rem;
    background-color: var(--white-color);

}

.btn-effect-2:hover {
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Who is Tripaty Section */
.section {
    padding: 4rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1rem, 4vw, 1.5rem);
    font-weight: 600;
    background-image: linear-gradient(to right, var(--main-color) 50%, #67e5f2);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--para-color);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.features-list {
    max-width: 700px;
    margin: 0 auto;
}

.features-list  ul {
    display: list-item;
    margin-bottom: 1.5rem;
}
.features-list ul li {
    display: block;
    position: relative;
    padding-left: 20px;
}

.features-list ul li::before {
    content: "\f058";
    font: var(--fa-font-solid);
    color: var(--main-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 1rem;
    position: absolute;
    left: -20px;
    top: 0;
}

.features-list  ul strong {
    color: var(--black-color);
}

.learn-more-btn {
    display: inline-block;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
}

.learn-more-btn:hover {
    background: var(--main-color);
    color: var(--white-color);
}

/* How it works Section */
.how-it-works {
    background: var(--beige-color);
}

.steps-list {
    max-width: 800px;
    margin: 2rem auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--third-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.1rem;
    color: var(--black-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--para-color);
}

/* Video Section */
.video-section {
    background: var(--white-color);
    padding: 3rem 2rem;
    margin-top: 3rem;
    border-radius: 12px;
}

.video-container {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.video-placeholder {
    background: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--sharp-box-shadow);
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #3acfd5, #008391);
    color: #fff;
    font-size: 18px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    z-index: 10;
    cursor: pointer;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.play-btn::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(58, 207, 213, 0.3);
    z-index: -1;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.video-placeholder img {
    width: 100%;
    height: auto;
}
.video-info span{
    font-size: 1.5rem;
    font-weight: 500;
}
.video-info h3 {
    color: var(--main-color);
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.video-info p {
    color: var(--para-color);
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.7;
}

/* Why Partner Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card h3 {
    font-size: 1.1rem;
    color: var(--black-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--para-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Specialists Section */
.specialists-section {
    background: var(--light-color);
}

.specialists-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.specialists-list {
    list-style: none;
}

.specialists-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--para-color);
    display: block;
}

.specialists-list li::before {
    content: "✓";
    color: var(--main-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.specialist-video {
    background: var(--beige-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--sharp-box-shadow);
}
.specialist-img{
    position: relative;
}
.specialist-video img {
    min-width: 100%;
    border-radius: 8px;
    height: 300px;
    object-fit: cover;
}

.video-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--white-color);
    font-weight: 600;
}

.video-description {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.video-description h4 {
    color: var(--main-color);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.video-description p {
    color: var(--para-color);
    font-size: 0.9rem;
    line-height: 1.7;
}



/* CTA Section */
.cta-section {
    text-align: center;
    padding: 30px 0;
    background: var(--white-color);
}

.cta-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
}

.cta-icon img {
    width: 100%;
    height: 100%;
}

.cta-section h2 {
    font-size: 2rem;
    color: var(--black-color);
    margin-bottom: 2rem;
}


/* Responsive */
@media (max-width: 992px) {

    .hero-content,
    .specialists-content,
    .video-container {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

/*============================================
       start  local specialist form page
 =========================================== */
.local-specailist-form {
    padding: 0 0 30px;
}

.header-images {
    display: flex;
    height: 150px;
    overflow: hidden;
}

.header-image {
    flex: 1;
    min-width: 0;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form Section */
.form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h1 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 1.5rem;
}

.form-header p {
    color: var(--para-color);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.required-note {
    color: #d93025;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Form Container */
.application-form {
    background: var(--white-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--sharp-box-shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--black-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.required {
    color: #d93025;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group textarea,
.form-group select {
    padding: 0.75rem 1rem;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: var(--font-family);
    color: var(--black-color);
    transition: border-color 0.3s;
    background: var(--white-color);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--main-color);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.phone-group {
    display: flex;
    gap: 0.5rem;
}

.country-code {
    width: 80px;
}

.phone-input {
    flex: 1;
}

.helper-text {
    font-size: 0.85rem;
    color: var(--para-color);
    margin-top: 0.25rem;
}

/* Radio Group */
.radio-group {
    margin-bottom: 1.5rem;
}

.radio-group label.main-label {
    font-size: 0.9rem;
    color: var(--black-color);
    margin-bottom: 0.75rem;
    display: block;
    font-weight: 400;
}

.radio-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    cursor: pointer;
    accent-color: var(--main-color);
}

.radio-item label {
    margin: 0;
    font-weight: 400;
    color: var(--para-color);
    cursor: pointer;
}

/* reCAPTCHA */
.recaptcha-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}


.submit-container {
    margin-top: 1rem;
    text-align: center;
}

.submit-btn {
    width: fit-content;
    min-width: 200px;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-family);
}

@media (max-width: 768px) {
    .header-images {
        height: 60px;
    }

    .form-wrapper {
        padding: 2rem 1rem;
    }

    .form-header h1 {
        font-size: 1.5rem;
    }

    .application-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}