body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #f6f7fb;
    color: #222;
}

header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
}

.logo {
    font-size: 1.7rem;
    font-weight: bold;
    color: #2557a7;
}

nav a {
    margin-left: 24px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: #2557a7;
}

.hero {
    background: linear-gradient(90deg, #eaf1fb 60%, #fff 100%);
    padding: 60px 0 40px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #2557a7;
}

.search-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.search-form input {
    padding: 12px 16px;
    border: 1px solid #cfd8dc;
    border-radius: 4px;
    font-size: 1rem;
    width: 220px;
}

.search-form button {
    padding: 12px 28px;
    background: #2557a7;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.search-form button:hover {
    background: #17447b;
}

.jobs {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.jobs h2 {
    color: #2557a7;
    margin-bottom: 24px;
}

.job-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.job-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 24px;
    flex: 1 1 260px;
    min-width: 260px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.job-card h3 {
    margin: 0;
    color: #2557a7;
}

.job-card p {
    margin: 0;
    color: #555;
}

.job-card span {
    color: #888;
    font-size: 0.95rem;
}

.job-card button {
    margin-top: 12px;
    padding: 10px 0;
    background: #2557a7;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.job-card button:hover {
    background: #17447b;
}

footer {
    background: #fff;
    text-align: center;
    padding: 18px 0;
    color: #888;
    margin-top: 40px;
    font-size: 1rem;
    border-top: 1px solid #e0e0e0;
}
/* General styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background: #f5f7fa;
    color: #333;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover, nav a.active {
    color: #007BFF;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 0.8s ease forwards;
}

.logo {
    font-weight: bold;
    font-size: 1.8rem;
    color: #007BFF;
}

nav a {
    margin-left: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero section */
.hero, .about-hero {
    background: linear-gradient(135deg, #6b73ff 0%, #000dff 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    animation: fadeInUp 1s ease forwards;
}

.hero h1, .about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p, .about-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.search-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.search-form input {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    flex: 1;
    font-size: 1rem;
}

.search-form button {
    padding: 0.75rem 1.5rem;
    background-color: #ff6b6b;
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.search-form button:hover {
    background-color: #ff3b3b;
}

/* Job cards */
.jobs {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.jobs h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #007BFF;
}

.job-list {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.job-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-8px);
}

.job-card h3 {
    margin: 0;
    color: #333;
}

.job-card p {
    margin: 0;
    color: #666;
}

.job-card span {
    font-size: 0.9rem;
    color: #999;
}

.job-card button {
    margin-top: auto;
    padding: 0.75rem;
    border: none;
    background-color: #007BFF;
    color: white;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.job-card button:hover {
    background-color: #0056b3;
}

/* About page styles */
.about-hero img {
    margin-top: 2rem;
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    animation: fadeInUp 1.2s ease forwards;
}

.about-content {
    max-width: 900px;
    margin: 3rem auto 4rem;
    padding: 0 1rem;
    line-height: 1.6;
}

.about-content h2 {
    color: #007BFF;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.about-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: #555;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    background: #222;
    color: white;
    font-size: 0.9rem;
    animation: fadeInUp 1s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .job-list {
        flex-direction: column;
        align-items: center;
    }

    .search-form {
        flex-direction: column;
        gap: 1rem;
    }

    .search-form input, .search-form button {
        width: 100%;
    }
}
/* Reset and base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f4f8;
    color: #333;
    line-height: 1.6;
}

/* Links */
a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

a:hover,
nav a.active {
    color: #007BFF;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.6s ease forwards;
}

.logo {
    font-weight: 700;
    font-size: 1.9rem;
    color: #007BFF;
    letter-spacing: 1px;
}

nav a {
    margin-left: 2rem;
    font-weight: 600;
    font-size: 1rem;
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Sections */
.hero,
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 2rem;
    animation: fadeInUp 1s ease forwards;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.1);
}

.hero h1,
.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
}

.hero form.search-form,
.contact-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: #e2e8f0;
}

/* Search Form */
.search-form {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.search-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    transition: box-shadow 0.3s ease;
}

.search-form input:focus {
    outline: none;
    box-shadow: 0 0 8px #5a67d8;
}

.search-form button {
    background: #ff5a5f;
    border: none;
    padding: 0.95rem 1.8rem;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-form button:hover {
    background-color: #e34b50;
}

/* Jobs Section */
.jobs {
    padding: 4rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.jobs h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #007BFF;
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.job-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.job-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

.job-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.job-card p {
    color: #555;
    font-weight: 600;
}

.job-card span {
    color: #777;
    font-size: 0.9rem;
    font-style: italic;
}

.job-card button {
    margin-top: auto;
    padding: 0.85rem 0;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.job-card button:hover {
    background-color: #0056b3;
}

/* Contact Form Section */
.contact-form-section {
    max-width: 1000px;
    margin: 4rem auto 6rem;
    display: flex;
    gap: 4rem;
    padding: 0 2rem;
    animation: fadeInUp 1.2s ease forwards;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-form {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .input-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    padding: 0.9rem 1rem;
    border-radius: 8px;
    border: 1.5px solid #ccc;
    font-size: 1rem;
    resize: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007BFF;
    outline: none;
}

.btn-submit {
    padding: 1rem;
    border: none;
    background: #007BFF;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0056b3;
}

/* Contact Info */
.contact-info {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
    color: #333;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    color: #007BFF;
    font-weight: 700;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #007BFF;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.social-icon:hover {
    background-color: #0056b3;
}

.social-icon.fb {
    background-color: #3b5998;
}

.social-icon.fb:hover {
    background-color: #2d4373;
}

.social-icon.tw {
    background-color: #1da1f2;
}

.social-icon.tw:hover {
    background-color: #0d95e8;
}

.social-icon.ln {
    background-color: #0077b5;
}

.social-icon.ln:hover {
    background-color: #005983;
}

/* Footer */
footer {
    background-color: #222;
    color: #eee;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-form-section {
        flex-direction: column;
        padding: 0 1rem;
    }

    .contact-form,
    .contact-info {
        flex: unset;
        width: 100%;
    }
}

@media (max-width: 500px) {
    header {
        flex-direction: column;
        padding: 1rem 1.5rem;
    }

    nav a {
        margin: 0.7rem 0;
        font-size: 1.1rem;
    }

    .hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}
/* Login Page Styles */
.login-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 3rem 1rem;
  color: #fff;
  animation: fadeInUp 1s ease forwards;
}

.login-container {
  background: #fff;
  color: #333;
  border-radius: 16px;
  padding: 3rem 3.5rem;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.login-container h1 {
  margin-bottom: 1rem;
  font-size: 2.75rem;
  font-weight: 700;
  color: #007BFF;
  letter-spacing: 1.5px;
}

.login-container p {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  color: #555;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  text-align: left;
}

.input-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #444;
  display: block;
}

.input-group input {
  width: 100%;
  padding: 0.95rem 1.2rem;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 10px;
  transition: border-color 0.3s ease;
}

.input-group input:focus {
  border-color: #007BFF;
  outline: none;
  box-shadow: 0 0 8px #7aa7ffaa;
}

.btn-submit {
  background-color: #007BFF;
  border: none;
  padding: 1.1rem;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background-color: #0056b3;
}

.signup-text {
  margin-top: 1.8rem;
  font-size: 0.95rem;
  color: #666;
  text-align: center;
}

.signup-text a {
  color: #007BFF;
  font-weight: 600;
  transition: color 0.3s ease;
}

.signup-text a:hover {
  color: #0056b3;
}

/* Make login nav active */
nav a.active {
  color: #007BFF;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 480px) {
  .login-container {
    padding: 2rem 1.5rem;
  }

  .login-container h1 {
    font-size: 2rem;
  }
}
/* Register Page Styles */
.register-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 3rem 1rem;
  color: #fff;
  animation: fadeInUp 1s ease forwards;
}

.register-container {
  background: #fff;
  color: #333;
  border-radius: 16px;
  padding: 3rem 3.5rem;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.register-container h1 {
  margin-bottom: 1rem;
  font-size: 2.75rem;
  font-weight: 700;
  color: #007BFF;
  letter-spacing: 1.5px;
}

.register-container p {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  color: #555;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  text-align: left;
}

.register-form .input-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #444;
  display: block;
}

.register-form .input-group input {
  width: 100%;
  padding: 0.95rem 1.2rem;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 10px;
  transition: border-color 0.3s ease;
}

.register-form .input-group input:focus {
  border-color: #007BFF;
  outline: none;
  box-shadow: 0 0 8px #7aa7ffaa;
}

.btn-submit {
  background-color: #007BFF;
  border: none;
  padding: 1.1rem;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background-color: #0056b3;
}

.login-text {
  margin-top: 1.8rem;
  font-size: 0.95rem;
  color: #666;
  text-align: center;
}

.login-text a {
  color: #007BFF;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-text a:hover {
  color: #0056b3;
}

/* Make register nav active */
nav a.active {
  color: #007BFF;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 480px) {
  .register-container {
    padding: 2rem 1.5rem;
  }

  .register-container h1 {
    font-size: 2rem;
  }
}
/* Container and form keep previous styles */

/* New horizontal form rows */
.input-row {
  display: flex;
  gap: 1.8rem;
  justify-content: space-between;
}

/* Make each input-group take roughly half width */
.input-row .input-group {
  flex: 1;
}

/* On small screens, stack inputs vertically */
@media (max-width: 720px) {
  .input-row {
    flex-direction: column;
  }
}
/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f7f9fc;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #0a3d62;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeInDown 1s ease-in-out;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffda79;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #74b9ff, #a29bfe);
    padding: 80px 40px;
    text-align: center;
    color: white;
    animation: fadeIn 1.5s ease-in;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    animation: slideInDown 1s ease-out;
}

.search-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.search-form input {
    padding: 10px 15px;
    width: 200px;
    border: none;
    border-radius: 5px;
    outline: none;
}

.search-form button {
    padding: 10px 20px;
    background: #0984e3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-form button:hover {
    background: #74b9ff;
}

/* Job Listings */
.jobs {
    padding: 60px 40px;
    background-color: #fff;
    animation: fadeInUp 1.2s ease-in-out;
}

.jobs h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #2d3436;
}

.job-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.job-card {
    background-color: #f1f2f6;
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 1.5s ease;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.job-card h3 {
    margin-bottom: 10px;
    color: #0984e3;
}

.job-card p {
    margin-bottom: 5px;
    font-weight: 500;
}

.job-card span {
    display: block;
    margin-bottom: 15px;
    color: #636e72;
}

.job-card button {
    background: #00b894;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.job-card button:hover {
    background: #55efc4;
}

/* Footer */
footer {
    background-color: #0a3d62;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInDown {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
/* Header Styling */
header {
    background: linear-gradient(135deg, #1e3799, #4a69bd);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.8s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: bold;
    color: white;
    animation: fadeInLeft 1s ease;
}

.logo img {
    width: 40px;
    height: 40px;
    animation: rotateLogo 2s linear infinite;
}

.nav-links a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #feca57;
    left: 0;
    bottom: -5px;
    transition: width 0.4s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #feca57;
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotateLogo {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


