:root {
    --navy-dark: #0A1128;
    --navy-primary: #1C3879;
    --navy-light: #5173BC;
    --navy-accent: #607EAA;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --gray: #E0E0E0;
    --dark-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--navy-dark);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 24px;
}

.logo i {
    color: var(--navy-light);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--navy-light);
}

.cta-button {
    background-color: var(--navy-light);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--navy-accent);
}
@media (max-width: 768px) {
    .cta-button {
        width: auto;
        min-width: 120px;
        text-align: center;
        display: inline-block;
    }
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background-color: var(--white);
    transform: skewY(-3deg);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--navy-light);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons .cta-button.primary {
    background-color: var(--navy-light);
    padding: 15px 30px;
    font-size: 1.1rem;
}

.hero-buttons .cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--navy-light);
}

.hero-image {
    flex: 1;
    position: relative;
}

.resume-preview {
    width: 100%;
    max-width: 400px;
    height: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s;
}

.resume-preview:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--navy-primary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--navy-accent);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    background-color: var(--navy-primary);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--navy-dark);
}

/* Templates Section */
.templates {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.template-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.template-card:hover {
    transform: translateY(-10px);
}

.template-image {
    height: 300px;
    overflow: hidden;
}

.template-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.template-card:hover .template-image img {
    transform: scale(1.05);
}

.template-info {
    padding: 20px;
}

.template-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--navy-primary);
}

.template-info p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.template-info .use-template {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--navy-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.template-info .use-template:hover {
    background-color: var(--navy-light);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 0 40px;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 20px 20px 0;
    border-style: solid;
    border-color: var(--light-gray) transparent transparent;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--navy-light);
    opacity: 0.3;
    display: block;
    margin-bottom: 10px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid var(--navy-primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy-dark);
    margin-bottom: 5px;
}

.author-title {
    color: var(--navy-accent);
    font-size: 0.9rem;
}

.testimonial-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--gray);
    cursor: pointer;
    transition: background-color 0.3s;
}

.testimonial-nav button.active {
    background-color: var(--navy-primary);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--navy-light);
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -55px;
    background-color: var(--navy-light);
    color: var(--white);
    padding: 5px 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

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

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 5px;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--navy-accent);
}

.pricing-period {
    color: var(--navy-accent);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray);
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--navy-primary);
    margin-right: 10px;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background-color: var(--navy-primary);
    color: var(--white);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.pricing-cta:hover {
    background-color: var(--navy-light);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--navy-light);
}

.footer-about {
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--navy-light);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--navy-light);
}

.newsletter form {
    display: flex;
    margin-top: 20px;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.newsletter button {
    background-color: var(--navy-light);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter button:hover {
    background-color: var(--navy-accent);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .cta-buttons, .hero-buttons {
        width: auto;
        min-width: 20px;
        text-align: center;
        display: inline-block;
        padding: 12px 20px;
        border-radius: 8px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--navy-dark);
    z-index: 999;
    padding: 60px 20px;
    transition: right 0.3s;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    display: none;
}

.overlay.active {
    display: block;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}
    /* Dark Mode Styles */
body.dark-mode {
background-color: #121212;
color: #e0e0e0;
}

body.dark-mode header {
background-color: #000000;
}

body.dark-mode .hero {
background: linear-gradient(135deg, #000000 0%, #1C3879 100%);
}
body.dark-mode .hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background-color: #121212;
    transform: skewY(-3deg);
}


body.dark-mode .features {
background-color: #121212;
}

body.dark-mode .templates {
background-color: #1e1e1e;
}

body.dark-mode .pricing {
background-color: #1e1e1e;
}

body.dark-mode .section-header h2 {
color: #5173BC;
}

body.dark-mode .section-header p {
color: #e0e0e0;
}

body.dark-mode .feature-card {
background-color: #2a2a2a;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.dark-mode .template-card {
background-color: #2a2a2a;
}

body.dark-mode .template-info h3 {
color: #5173BC;
}

body.dark-mode .template-info p {
color: #e0e0e0;
}

body.dark-mode .pricing-card {
background-color: #2a2a2a;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.dark-mode .pricing-features li {
border-bottom: 1px solid #444;
}

body.dark-mode .pricing-name {
color: #5173BC;
}

body.dark-mode .pricing-price {
color: #e0e0e0;
}

body.dark-mode footer {
background-color: #000000;
}

/* Dark Mode Toggle */
.theme-switch-wrapper {
display: flex;
align-items: center;
margin-right: 15px;
}

.theme-switch {
display: inline-block;
height: 24px;
position: relative;
width: 48px;
}

.theme-switch input {
display: none;
}

.slider {
background-color: #ccc;
bottom: 0;
cursor: pointer;
left: 0;
position: absolute;
right: 0;
top: 0;
transition: .4s;
border-radius: 34px;
}

.slider:before {
background-color: white;
bottom: 4px;
content: "";
height: 16px;
left: 4px;
position: absolute;
transition: .4s;
width: 16px;
border-radius: 50%;
}

input:checked + .slider {
background-color: #5173BC;
}

input:checked + .slider:before {
transform: translateX(24px);
}

.theme-switch-wrapper .icon {
margin: 0 5px;
color: #ccc;
}

body.dark-mode .theme-switch-wrapper .icon {
color: #5173BC;
}

/* Resume Examples Section */
.examples {
padding: 100px 0;
background-color: var(--white);
}

body.dark-mode .examples {
background-color: #121212;
}

.examples-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.example-card {
background-color: var(--light-gray);
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}

body.dark-mode .example-card {
background-color: #2a2a2a;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.example-card:hover {
transform: translateY(-10px);
}

.example-image {
height: 400px;
overflow: hidden;
position: relative;
}

.example-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}

.example-card:hover .example-image img {
transform: scale(1.05);
}

.example-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
transition: opacity 0.3s;
}

.example-card:hover .example-overlay {
opacity: 1;
}

.view-example {
background-color: var(--navy-primary);
color: var(--white);
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
}

.example-info {
padding: 20px;
}

.example-info h3 {
font-size: 1.3rem;
margin-bottom: 10px;
color: var(--navy-primary);
}

body.dark-mode .example-info h3 {
color: #5173BC;
}

.example-info p {
margin-bottom: 15px;
color: var(--dark-gray);
}

body.dark-mode .example-info p {
color: #e0e0e0;
}

.example-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.example-tag {
padding: 5px 10px;
background-color: var(--navy-light);
color: var(--white);
border-radius: 20px;
font-size: 0.8rem;
}

/* Modal for Resume Preview */
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
background-color: var(--white);
margin: 5% auto;
padding: 20px;
border-radius: 10px;
max-width: 800px;
width: 90%;
position: relative;
}

body.dark-mode .modal-content {
background-color: #2a2a2a;
}

.close-modal {
position: absolute;
top: 10px;
right: 15px;
color: var(--dark-gray);
font-size: 28px;
font-weight: bold;
cursor: pointer;
}

body.dark-mode .close-modal {
color: #e0e0e0;
}

.modal-image {
width: 100%;
border-radius: 5px;
}

.modal-details {
margin-top: 20px;
}

.modal-title {
font-size: 1.5rem;
margin-bottom: 10px;
color: var(--navy-primary);
}

body.dark-mode .modal-title {
color: #5173BC;
}

.modal-description {
margin-bottom: 15px;
}

body.dark-mode .modal-description {
color: #e0e0e0;
}

.modal-actions {
display: flex;
gap: 15px;
}

.modal-button {
padding: 10px 20px;
background-color: var(--navy-primary);
color: var(--white);
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: 600;
transition: background-color 0.3s;
}

.modal-button:hover {
background-color: var(--navy-light);
}

@media (max-width: 768px) {
.examples-grid {
    grid-template-columns: 1fr;
}
}

/* Add this CSS to your index.css file */

/* Modal Styles (enhance existing modal styles) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s;
}

.modal-open {
    overflow: hidden;
}

@keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}

/* Sign Up Modal Specific Styles */
.signup-modal {
    background-color: #fff;
    margin: 5vh auto;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.4s;
}

@keyframes slideDown {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

.signup-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.signup-header i {
    font-size: 2rem;
    color: #4a6cf7;
    margin-bottom: 10px;
}

.signup-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.signup-body {
    padding: 20px;
}

.signup-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

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

.form-group input:focus {
    border-color: #4a6cf7;
    outline: none;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.8rem;
}

.signup-btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.signup-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.signup-divider:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 40%;
    height: 1px;
    background-color: #ddd;
}

.signup-divider:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 40%;
    height: 1px;
    background-color: #ddd;
}

.signup-divider span {
    background-color: #fff;
    padding: 0 15px;
    position: relative;
    z-index: 1;
    color: #666;
}

.social-signup {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.social-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.social-btn.google {
    color: #DB4437;
}

.social-btn.linkedin {
    color: #0077B5;
}

.social-btn:hover {
    background-color: #f5f5f5;
}

.login-text {
    text-align: center;
    margin: 0;
    color: #666;
}

.login-text a {
    color: #4a6cf7;
    text-decoration: none;
    font-weight: 600;
}

.login-text a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .signup-modal {
        margin: 10vh auto;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .signup-modal {
        margin: 5vh auto;
    }
    
    .signup-header h2 {
        font-size: 1.2rem;
    }
}