/* Global Styles */
:root {
    --teal-blue: #1995AD;
    --light-blue: #A1D6E2;
    --light-gray: #ffffff;
    --black: #000000;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quattrocento', serif;
}

body {
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navigation Bar */
#navbar {
    background-color: var(--white);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Quattrocento', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--teal-blue);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--light-blue);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.login-btn {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.signup-btn {
    background-color: var(--teal-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.signup-btn:hover {
    background-color: #147a8f;
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    background-color: var(--white);
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--teal-blue);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.learn-more {
    text-decoration: underline;
    font-weight: 500;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Steps Section */
.steps {
    background-color: var(--light-blue);
    padding: 4rem 2rem;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.step {
    flex: 1;
    text-align: center;
}

.step img {
    width: 100%;
    max-width: 300px;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--teal-blue);
}

/* Project, Question, Level Up Sections */
.project, .question, .level-up, .recruiters {
    padding: 4rem 2rem;
}

.project-container, .question-container, .level-up-container, .recruiters-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.project-text, .question-text, .level-up-text, .recruiters-text {
    flex: 1;
}

.small-text {
    font-size: 0.9rem;
    color: var(--teal-blue);
    display: block;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--teal-blue);
}

.medium-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.level-up ul {
    margin-left: 1.5rem;
}

.level-up li {
    margin-bottom: 0.5rem;
}

.project-image, .question-image, .level-up-image {
    flex: 1;
}

.project-image img, .question-image img, .level-up-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Recruiters Section */
.recruiters {
    background-color: var(--light-gray);
    padding: 4rem 2rem;
    text-align: center;
}

.recruiters-container {
    max-width: 1200px;
    margin: 0 auto;
}

.recruiters h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--teal-blue);
}

.recruiters-text {
    font-size: 1.5rem;
    color: var(--teal-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.medium-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.recruiters-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.recruiters-images img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: var(--teal-blue);
    color: var(--white);
    padding: 3rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-logo .logo {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-blue);
}

.footer-social {
    text-align: right;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: flex-end;
}

.social-icons a {
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--light-blue);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-container, .project-container, .question-container, .level-up-container {
        flex-direction: column;
    }

    .hero-text, .project-text, .question-text, .level-up-text {
        text-align: center;
    }

    .steps-container {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
    .recruiters-images {
        gap: 1.5rem;
    }

    .recruiters-images img{
        max-width: 280px;

    }

}

@media (max-width: 576px){
    .recruiters-images {
        flex-direction: column;
        align-items: center;
    }

    .recruiters-images img{
        max-width: 100%;
    }
}







/* Pricing Section */
.pricing {
    background-color: var(--light-gray);
    padding: 6rem 2rem 4rem;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.plan-name {
    font-size: 1.8rem;
    color: var(--teal-blue);
    margin-bottom: 1.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
}

.dollar {
    font-size: 1.5rem;
    position: absolute;
    left: 37%;
    transform: translateX(-120%);
    top: 0.5rem;
}

.per-month {
    font-size: 1rem;
    font-weight: 400;
    position: absolute;
    right: 40%;
    transform: translateX(120%);
    bottom: 1.2rem;
}

.plan-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--teal-blue);
}

.plan-desc {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.divider {
    height: 1px;
    background-color: #ddd;
    margin: 1.5rem 0;
}

.plan-features h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--teal-blue);
}

.plan-features ul {
    text-align: left;
    margin-bottom: 1.5rem;
}

.plan-features li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.enterprise-features {
    padding: 1rem 0;
}

.contact-desc {
    font-style: italic;
    margin: 1.5rem 0;
    color: var(--teal-blue);
}

/* Pricing Buttons */
.pricing-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: 100%;
    margin: 1rem 0;
    text-align: center;
}

.explorer-btn {
    background-color: var(--teal-blue);
    color: var(--white);
}

.rising-star-btn {
    background-color: var(--teal-blue);
    color: var(--white);
}

.starter-recruiter-btn {
    background-color: var(--teal-blue);
    color: var(--white);
}

.pro-recruiter-btn {
    background-color: var(--teal-blue);
    color: var(--white);
}

.enterprise-btn {
    background-color: var(--teal-blue);
    color: var(--white);
}

/* CTA Section */
.pricing-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.pricing-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--teal-blue);
}

.cta-btn {
    background-color: var(--teal-blue);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #147a8f;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-row {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        max-width: 100%;
    }
}






/* Contact Section */
.contact {
    padding: 6rem 2rem 4rem;
    background-color: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: var(--teal-blue);
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: #555;
}

.contact-content {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.contact-form {
    flex: 1;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--teal-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-blue);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: var(--teal-blue);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #147a8f;
}

/* Contact Info */
.contact-info {
    flex: 1;
    max-width: 400px;
}

.info-card {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card i {
    font-size: 2rem;
    color: var(--teal-blue);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--teal-blue);
}

.info-card a, .info-card p {
    color: #555;
    font-size: 1rem;
}

.info-card a:hover {
    color: var(--teal-blue);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        max-width: 100%;
    }
}

/* CAPTCHA Note */
.captcha-note {
    font-size: 0.8rem;
    color: #777;
    margin-top: 1rem;
    text-align: center;
}

.captcha-note a {
    color: var(--teal-blue);
    text-decoration: underline;
}












/* About Us Page Styles */
.about-hero {
    padding: 6rem 2rem 3rem;
    text-align: center;
}

.about-hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.4;
    color: var(--teal-blue);
    margin-bottom: 3rem;
}

.about-hero-image {
    margin: 0 auto;
    max-width: 1000px;
    padding: 0 2rem;
}

.about-hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Goal Section */
.about-goal {
    padding: 4rem 2rem;
    background-color: var(--light-gray);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-goal h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--teal-blue);
    margin-bottom: 2rem;
}

.goal-paragraphs {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.goal-paragraphs p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* What is Pingly / What Do We Change Sections */
.about-pingly, .about-change {
    padding: 4rem 2rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--teal-blue);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Section (modified) */
.about-cta {
    padding: 4rem 2rem;
    text-align: center;
}

.about-cta h3 {
    font-size: 1.8rem;
    color: var(--teal-blue);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.cta-signup-btn {
    background-color: var(--teal-blue);
    color: var(--white);
    padding: 0.8rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.cta-signup-btn:hover {
    background-color: #147a8f;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-hero-text h1 {
        font-size: 1.8rem;
    }
    
    .about-cta h3 {
        font-size: 1.5rem;
    }
}







/* Login Page Specific Styles */
:root {
    --teal-blue: #1995AD;
    --light-gray: #f1f1f2;
}

body {
    margin: 0;
    font-family: 'Quattrocento', serif;
    background: #fff;
}

.auth-container {
    position: relative;
    min-width: 100vw;
    min-height: 100vh;
    display: flex;
    overflow: hidden;
}

.panel {
    position: absolute;
    top: 0;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    will-change: transform;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    box-sizing: border-box;
}

.white-panel {
    width: 70%;
    background: white;
    left: 0;
    z-index: 2;
}

.teal-panel {
    width: 30%;
    background: var(--teal-blue);
    color: white;
    left: 70%;
    z-index: 1;
}

.auth-container.swap .white-panel {
    transform: translateX(30%);
    z-index: 1;
} 

.auth-container.swap .teal-panel {
    transform: translateX(-240%);
    z-index: 2;
}

.form-content {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.form-content h2 {
    color: var(--teal-blue);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}

.welcome-content h2 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}

.welcome-content p {
    color: white;
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.6;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background: var(--teal-blue);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.auth-switch-btn {
    border: 2px solid white;
    background: transparent;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.auth-switch-btn:hover {
    background: rgba(255,255,255,0.1);
}

.button-container {
    margin-top: 2.5rem;
}

.forgot-password {
    display: block;
    text-align: right;
    color: #777;
    margin: -0.5rem 0 1.5rem;
    font-size: 0.9rem;
}

.g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.social-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #777;
    font-size: 0.9rem;
}

.social-divider::before,
.social-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ddd;
    margin: 0 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: var(--teal-blue);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--light-gray);
}

.form-content {
    display: none;
}

.form-content.active {
    display: block;
}

.welcome-content {
    display: none;
}

.welcome-content.active {
    display: block;
}

@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
    }

    .panel {
        width: 100% !important;
        height: 60%;
        position: relative;
        left: 0 !important;
        transform: none !important;
        padding: 2rem 10%;
    }

    .teal-panel {
        height: 40%;
    }

    .auth-container.swap .white-panel,
    .auth-container.swap .teal-panel {
        transform: none !important;
    }

    .form-content {
        max-width: 100%;
    }
}