/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo h2 {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-menu {
  display: flex;
  justify-content: center; /* push links to the center */
  align-items: center;
  width: 100%;   /* make the menu span across the header */
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header {
  position: relative;   /* make header the reference box */
  height: 70px;         /* adjust as needed */
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.logo {
  position: relative;   /* stays on the left */
  z-index: 2;
}

.nav-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);  /* pushes it into the true middle */
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}




.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #0d8e84;
}

.subscribe-btn {
    background-color: #0d8e84; /* brighter than background */
    color: white;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #0d8e84; /* darker on hover */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #0d8e84;
    margin: 3px 0;
    transition: 0.3s;
}
/* ==========================
   Mobile menu
========================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;           /* show hamburger on small screens */
    position: absolute;
    top: 15px;
    right: 20px;             /* top-right corner */
    z-index: 1000;
  }

  .nav-menu {
    display: none;           /* hide menu until toggled */
    flex-direction: column;
    position: absolute;
    top: 60px;               /* below header */
    right: 20px;
    width: 220px;
    background-color: #fff;  /* or your preferred bg */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  }

  .nav-menu.active {
    display: flex;           /* show when hamburger clicked */
  }

  .nav-menu li,
  .nav-menu > .subscribe-btn {
    margin: 10px 0;
    text-align: center;
  }

  .subscribe-btn {
    width: 100%;
  }
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0d8e84 0%, #0d8e84 100%);
    color: #1f2937;
    padding: 120px 0 60px;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: white;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-primary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: #0d8e84;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: white;
    color: #0d8e84;
    padding: 14px 28px;
    border: 2px solid #0d8e84;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f3f4f6;
    color: #0d8e84;
    transform: translateY(-1px);
}

/* Stats Section */
/* Stats Section */
.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: flex;
    justify-content: center; /* center all items */
    align-items: stretch;
    gap: 2rem; /* space between cards */
}

.stat-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    width: 250px; /* fixed width so they align nicely */
}

.stat-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d8e84;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}


/* Services Section */
.services {
    padding: 80px 0;
    background-color: #ffffff;
}

.services h2 {
    color: #1f2937;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid .service-card .service-icon {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    padding: 0;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.services-grid {
    display: flex;                 /* use flex instead of grid */
    justify-content: space-between; /* space evenly between cards */
    gap: 2rem;                     /* spacing between cards */
    flex-wrap: nowrap;
}

.service-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #0d8e84;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(13, 142, 132, 0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    padding: 1rem;
    background-color: #0d8e84;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.service-card h3 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-btn {
    background-color: #ffffff; /* white background */
    color: #0d8e84;           /* teal text */
    padding: 12px 24px;
    border: 2px solid #0d8e84;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-btn:hover {
    background-color: #0d8e84; /* teal background */
    color: #ffffff;           /* white text */
}

/* Why Choose Section */
.why-choose {
    min-height: 100vh; /* make it full screen height */
    display: flex;
    justify-content: center; /* center horizontally */
    align-items: center;     /* center vertically */
    background-color: rgba(13, 142, 132, 0.05);
    padding: 0; /* remove top/bottom spacing so it stays centered */
}

.why-choose-content {
    display: flex; /* changed from grid to flex for centering */
    justify-content: center;
    align-items: center;
    width: 100%;
}

.why-choose-text h2 {
    color: #1f2937;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center; /* keep heading centered */
}

.why-choose-text > p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center; /* center subtext */
}

/* make the form wider */
.form-container {
    background: #fff;
    width: 90%;
    max-width: 700px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.feature-check {
    background-color: #0d8e84;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-content h4 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0;
}

.why-choose-image {
    position: relative;
    flex: 1;
    text-align: center;
    margin-top: 30px;
}

.why-choose-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.success-rate {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.success-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0d8e84;
    margin-bottom: 0.25rem;
}

.success-label {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f9fafb;
}

.testimonials h2 {
    color: #1f2937;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.testimonials-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #374151;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-title {
    color: #6b7280;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background-color: #0d8e84;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-white {
    background-color: white;
    color: #0d8e84;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-white:hover {
    background-color: #f9fafb;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}
/* Small screens */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; /* stack everything vertically */
        gap: 1.5rem;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0d8e84;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #0d8e84;
}

.newsletter {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #374151;
    border-radius: 6px;
    background-color: #374151;
    color: white;
    font-size: 0.9rem;
}

.newsletter input::placeholder {
    color: #9ca3af;
}

.newsletter input:focus {
    outline: none;
    border-color: #0d8e84;
}

.subscribe-footer-btn {
    background-color: #0d8e84;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-footer-btn:hover {
    background-color: #0d8e84;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 1 / -1;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .subscribe-btn {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter {
        flex-direction: column;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.25rem;
    }
    
    .services h2,
    .testimonials h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .why-choose-text h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #ffffff;
        padding: 1rem 2rem;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .subscribe-btn {
        display: none;
    }

    .subscribe-btn.active {
        display: block;
        margin-top: 1rem;
    }
}
.footer-subscribe {
    text-align: left;
    margin-top: 2rem;
}

.footer-subscribe p {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.footer-subscribe-form {
    display: flex;
    justify-content: left;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-subscribe-form input {
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #0d8e84;
    outline: none;
    font-size: 0.95rem;
    width: 220px;
    color: #9ca3af;

}

.footer-subscribe-form input::placeholder {
    color: #9ca3af;
}

.footer-subscribe-btn {
    background-color: #0d8e84;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.footer-subscribe-btn:hover {
    background-color: #0b776f;
}
.footer-stay-updated {
    font-family: inherit;
}

.footer-stay-updated h4 {
    font-weight: 600;      /* same as resources heading */
    color: #ffffff;        /* match resources heading color */
    margin-bottom: 1rem;
}

.footer-stay-updated ul {
    list-style: none;      /* remove bullet/dot */
    padding: 0;
    margin: 0 0 1rem 0;
}

.footer-stay-updated li {
    color: #9ca3af;        /* same as resources text */
    font-weight: 400;      /* normal weight */
    margin-bottom: 0.5rem;
}

.footer-stay-updated .subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-stay-updated input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #374151;
    border-radius: 6px;
    color: #9ca3af;        /* same as resources text */
    background-color: #1f2937; /* footer background */
    font-size: 0.9rem;
}

.footer-stay-updated input::placeholder {
    color: #9ca3af;        /* match text color */
}

.footer-stay-updated input:focus {
    outline: none;
    border-color: #0d8e84;
}

.footer-stay-updated button {
    background-color: #0d8e84; /* same as subscribe buttons */
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-stay-updated button:hover {
    background-color: #0b746e; /* slightly darker on hover */
}
.footer-bottom p {
  color: #ffffff;
    margin: 0;             /* remove default margin */
}

.footer-bottom a {
    color: #ffffff;          /* same gray color as text */
    margin: 0 0.5rem;        /* little space between links */
    text-decoration: none;   /* remove underline */
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #0d8e84;          /* teal color on hover */
}
/* Footer Fix: Ensure Subscribe section shows correctly */
.footer-subscribe {
    display: block; 
    margin-top: 0;  
}

/* Keep grid layout for large screens */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr; 
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Stack vertically on small screens */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; 
        gap: 1.5rem;
    }
    .footer-subscribe {
        margin-top: 0; 
    }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: #fff; /* card background */
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* shadow */
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-icon {
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #0d8e84;
}

.service-card p {
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.5;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.feature-check {
  background-color: #0d8e84;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
  flex-shrink: 0;
}
.subscribe-btn {
  background-color: #0d8e84; /* main color */
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.subscribe-btn:hover {
  background-color: #0b6f68; /* darker shade */
  transform: translateY(-2px);
}

.subscribe-btn:active {
  transform: translateY(0);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px auto 0; /* small top margin so it won’t clash with heading */
  max-width: 1200px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.author-name {
  font-weight: 600;
  color: #111827;
}

.author-title {
  font-size: 14px;
  color: #6b7280;
}

.author-result {
  font-size: 14px;
  color: #6b7280;
  margin-top: 10px;
}

.testimonial-card p {
  font-style: italic;
  color: #374151;
  margin: 0;
}
.form-container {
  background: #fff;
  width: 100%;
  max-width: 500px;
  padding: 30px;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}

.form-container h2 {
  margin-bottom: 10px;
  color: #222;
}

.form-container p {
  margin-bottom: 20px;
  color: #555;
  font-size: 14px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #00a37a;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: #00a37a;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background-color: #008b66;
}
.course-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.course-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.course-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #00b894;
  color: #fff;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
}

.course-content {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-content h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.course-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  flex-grow: 1;
}

.course-details {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

.course-details span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.apply-btn {
  background: #00b894;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
}

.apply-btn:hover {
  background: #019875;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  justify-content: center; 
  gap: 15px; /* reduced spacing */
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  width: 100%;          /* allow it to stretch within column */
  max-width: 360px;     /* optional: controls how wide each card gets */
  margin: 0 auto;       /* keeps them centered */
}


.service-card h3 {
  margin-top: 15px;
  font-size: 1.3rem;
  color: #1f2937;
}

.service-card p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-top: 10px;
}

.service-icon img {
  width: 60px;
  height: 60px;
}
/* Subscribe Section */
.subscribe-container {
    margin-top: 3rem;
    text-align: center;
}

.subscribe-container h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input[type="email"] {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
}

.subscribe-form button {
    padding: 0.8rem 1.5rem;
    background-color: #0d8e84;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #0b6f67;
}
/* Container */
.pricing-container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  justify-content: center;
  flex-wrap: wrap;
}

/* Plan box */
.plan {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px 20px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.plan:hover {
  transform: translateY(-5px);
}

/* Titles */
.plan h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Price */
.price {
  font-size: 28px;
  font-weight: bold;
  color: #009688;
  margin: 10px 0;
}

.price .small {
  font-size: 16px;
  font-weight: normal;
}

/* Description */
.plan p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* Features */
.features {
  text-align: left;
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.6;
  padding-left: 0;
}

.features li {
  margin-bottom: 10px;
  list-style: none;
  position: relative;
  padding-left: 25px;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #009688;
  font-weight: bold;
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 18px;
  background: #00b894;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #019875;
}

/* Highlight Popular Plan */
.popular {
  border: 2px solid #00b894;
  position: relative;
}

.popular::before {
  content: "Most Popular";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #00b894;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 20px;
}
.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #009688;
}
.stat {
  font-family: Arial, sans-serif;
  font-size: 24px;
  text-align: center;
  margin-top: 50px;
}

.stat-number {
  font-size: 40px;
  font-weight: bold;
  color: #2c3e50;
}

.stat-label {
  font-size: 18px;
  color: #555;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}
h2 {
  font-size: 28px;
  margin-bottom: 8px;
  text-align: center;
}

p {
  color: #555;
  margin-bottom: 30px;
  text-align: center;
}

table {
  width: 100%;            /* full width */
  margin: 0;              /* remove center margin */
  border-collapse: collapse;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

th {
  background-color: #f9f9f9;
  font-weight: bold;
}

tr:hover td {
  background-color: #fefefe;
}

.check {
  color: green;
  font-size: 18px;
  font-weight: bold;
}

.cross {
  color: red;
  font-size: 18px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  table {
    font-size: 14px;
  }
  th, td {
    padding: 10px;
  }
}
.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex: 1;                     /* makes each card take equal space */
  margin: 10px;
  text-align: center;
}

/* Container for cards */
.service-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;        /* makes all cards same height */
  width: 100%;
  min-height: 100vh;           /* makes them fill full screen height */
  padding: 20px;
  box-sizing: border-box;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .service-container {
    flex-direction: column;    /* stack cards on small screens */
  }
}
/* General */
body {
  font-family: Arial, sans-serif;
  background: #f7fdfc;
  margin: 0;
  padding: 20px;
  color: #333;
}

/* Hero */
.hero-container {
  text-align: center;
  margin-bottom: 30px;
}
.hero-content h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #00796b;
}
.hero-content p {
  margin-bottom: 30px;
  font-size: 20px;
  color: #555;
}

/* Search Bar */
.search-bar {
  display: flex;
  justify-content: center;
}
.search-bar input {
  padding: 10px;
  width: 350px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.search-bar button {
  margin-left: 10px;
  padding: 10px 20px;
  background: #00b894;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

/* Filters */
.filters {
  max-width: 600px;          /* allow it to stretch a bit wider */
  margin: 60px auto;         /* center horizontally + space top/bottom */
  text-align: center;        /* center the whole section */
  background: none;          /* remove card background */
  padding: 0;                /* no padding box */
  border-radius: 0;          /* remove rounded card look */
  border: none;              /* remove border */
}

.filters h3 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #00796b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;                  /* space between icon and text */
}

.filter-block {
  margin-bottom: 20px;
  text-align: center;        /* center labels + dropdowns */
}

.filter-block label {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

/* Style the dropdowns */
.filter-block select {
  padding: 10px;
  width: 100%;
  max-width: 300px;          /* dropdown doesn’t get too wide */
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: border 0.2s ease;
}

.filter-block select:hover {
  border-color: #00796b;
}

.jobs-found {
  font-size: 14px;
  color: #666;
  margin-top: 15px;
}


/* Premium Section */
.section-head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.section-title {
  font-size: 22px;
  margin-right: 10px;
  color: #00796b;
}
.badge.premium-required {
  background: #ff9800;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
}

/* Job Cards */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.job-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
}
.job-top {
  display: flex;
  align-items: center;
}
.job-title {
  margin: 0;
  margin-right: 10px;
}
.title-pills .pill {
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 5px;
  margin-right: 5px;
  color: white;
}
.pill.urgent { background: #e74c3c; }
.pill.premium { background: #00b894; }

.company-line {
  font-size: 14px;
  color: #555;
  margin: 8px 0;
}
.job-desc {
  margin: 8px 0;
  font-size: 14px;
}
.skill-tags .tag {
  display: inline-block;
  background: #eef3f7;
  padding: 5px 10px;
  margin-right: 5px;
  border-radius: 15px;
  font-size: 12px;
}
.upgrade-wrap {
  margin-top: 10px;
}
.upgrade-apply {
  background: none;
  border: 1px solid #ccc;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
}

/* Job Right */
.job-right {
  text-align: right;
}
.salary {
  font-weight: bold;
}
.posted {
  font-size: 12px;
  color: #888;
  margin: 5px 0;
}
.btn-view {
  padding: 6px 12px;
  border: none;
  background: #00b894;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}
.exclusive-section h1,
.exclusive-section p {
  color: #fff;
}
/* Reduce job card width */
.job-card {
  max-width: 900px;     /* adjust to your liking (800–1000px looks good) */
  margin: 20px auto;    /* center the cards */
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
}

/* Align Premium Jobs title and badge in one line */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between; /* push title left, badge right */
  max-width: 900px;              /* same width as job cards */
  margin: 0 auto 20px auto;      /* center and add bottom space */
}
/* Unlock Section */
.unlock-section {
  display: flex;
  justify-content: center;
  margin: 40px 20px;
}

.unlock-card {
  background: #f0fdf8;
  border: 1px solid #cce7e0;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  max-width: 700px;
  width: 100%;
}

.unlock-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.unlock-card h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.unlock-card p {
  color: #444;
  margin-bottom: 20px;
}

.unlock-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-primary {
  background: #06bfa6;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #04a38d;
}

.btn-secondary {
  background: white;
  color: #333;
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #f3f4f6;
}

/* Job Tips Section */
.tips-section {
  text-align: center;
  margin: 60px 20px;
}

.tips-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.tips-subtitle {
  color: #555;
  margin-bottom: 40px;
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tip-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  max-width: 300px;
  width: 100%;
  text-align: left;
}

.tip-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #111;
}

.tip-card ul {
  list-style: none;
}

.tip-card ul li {
  margin-bottom: 8px;
  color: #444;
  font-size: 14px;
}
/* Make unlock section wide */
.unlock-card {
  max-width: 1200px; /* increase width */
  width: 100%;
}

/* Make tips cards stretch wider */
.tip-card {
  max-width: 500px;  /* increase card width */
  flex: 1;           /* allows them to grow equally */
}
/* Keep both sections aligned with same width */
.unlock-card,
.tips-section {
  max-width: 1000px;
  margin: 0 auto;  /* centers them */
}
/* Only hero heading and paragraph in white */
.hero-content h1,
.hero-content p {
  color: #fff !important;
}


/* ===========================
   Search Box Styles
   =========================== */

/* Container */
.search-box {
  background-color: #038a77; /* darker teal than background */
  padding: 16px;
  border-radius: 12px;
  max-width: 700px; /* wider so input fits */
  margin: 40px auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Input Field */
.search-box input {
  flex: 1; /* makes input stretch fully to button */
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  background-color: #05b49d; /* lighter teal than rectangle box */
  color: #333; /* dark text */
  outline: none;
}

.search-box input::placeholder {
  color: #333; /* dark placeholder */
}

/* Search Button */
.search-box .search-btn {
  background-color: #ffffff; /* white */
  color: #04a38d; /* teal text */
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.search-box .search-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* Search Icon */
.search-btn .search-icon {
  font-size: 18px;
}
.whatsapp-btn {
  background: #25d366;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.chat-popup {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.chat-header {
  background: #25d366;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.chat-body {
  max-height: 250px;
  overflow-y: auto;
  padding: 10px;
}
.user-message {
  text-align: right;
  background: #dcf8c6;
  padding: 6px 10px;
  margin: 5px 0;
  border-radius: 8px;
  display: inline-block;
}
.bot-message {
  text-align: left;
  background: #f1f1f1;
  padding: 6px 10px;
  margin: 5px 0;
  border-radius: 8px;
  display: inline-block;
}

.chat-footer {
  display: flex;
  border-top: 1px solid #ddd;
}
#chat-input {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
}
#send-btn {
  background: #25d366;
  color: white;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
}
/* General */
body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
  color: #222;
}

/* Trending Bar */
.trending-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.trending-icon {
  color: #0d8e84;
  font-size: 16px;
}

.trending-label {
  font-weight: bold;
}

.trending-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  overflow-x: auto;
  white-space: normap;

}

.tag {
  background: #f1f5f9;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
}

/* Featured Article Section */
.featured-article {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
}

.featured-article h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Article Card */
.article-card {
  display: flex;
  background: #fff;
  border: 1.5px solid #0d8e84;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.article-image {
  position: relative;
  flex: 1;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0d8e84;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 5px;
}

.article-content {
  flex: 2;
  padding: 20px;
}

.article-content .category {
  display: inline-block;
  background: #f1f5f9;
  color: #333;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
  margin-bottom: 10px;
}

.article-content h3 {
  margin: 10px 0;
  font-size: 20px;
}

.article-content p {
  margin: 10px 0 20px;
  line-height: 1.5;
  color: #555;
}

.article-meta {
  font-size: 14px;
  color: #777;
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.read-btn {
  background: #0d8e84;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.read-btn:hover {
  background: #0b766e;
}

/* Filter Section */
.filter-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.filter-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-section label {
  font-size: 14px;
}

.filter-section select {
  padding: 6px 10px;
  font-size: 14px;
}

.article-count {
  font-size: 14px;
  color: #555;
}
/* Trending Buttons */
.tag-btn {
  background: #f1f5f9;
  border: 1px solid #ddd;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tag-btn:hover {
  background: #e2e8f0;
}

.tag-btn.active {
  background: #0d8e84;
  color: #fff;
  border-color: #0d8e84;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 2 columns */
  gap: 30px; /* spacing between cards */
  margin-top: 20px;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
/* Style only cards inside the grid */
.articles-grid .article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in-out;
}

/* Featured Article (independent styling) */
.featured-article .article-card {
  max-width: 1100px;   /* smaller width */
  margin: 0 auto;     /* center */
  display: flex;      /* optional: keep it flexible */
  flex-direction: row; /* you can switch to column if you want vertical */
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  border-radius: 12px;
  overflow: hidden;
}
.container {
  max-width: 1400px; /* increase width */
  margin: 0 auto;
  padding: 0 20px;
}
  /* Make each card stretch more */
.article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in-out;
  min-width: 380px;   /* ensures card doesn’t shrink too much */
}
* Responsive fallback */
@media (max-width: 992px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .articles-grid {
    grid-template-columns: 1fr; /* 1 per row on phones */
  }
}
.badge.premium-required {
  display: inline-block !important;
  background: red !important;
  color: white !important;
  padding: 4px 10px !important;
  font-size: 12px !important;
  font-weight: bold !important;
  border-radius: 5px !important;
  position: relative !important;
  z-index: 9999 !important;
  margin-left: 10px;
  vertical-align: middle;
}
/* Card wrapper */
.subscribe-card {
  background: #ffffff;       /* white background */
  border-radius: 10px;       /* rounded corners */
  padding: 20px 20px 10px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;          /* card width */
  margin: 20px auto;         /* center horizontally */
  text-align: center;
}

/* Form input */
.subscribe-form input[type="email"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;       /* space before button */
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

/* Button */
.subscribe-form button {
  width: 100%;
  padding: 12px;
  background: #0d8e84;   /* your button color */
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background: #0b6f68;   /* darker shade for hover */
}

/* Subtitle */
.testimonials-subtitle {
  margin-top: 12px;
  font-size: 13px;
  color: #666;
}
.subscribe-form {
  display: flex;
  flex-direction: column; /* stack items vertically */
  gap: 12px; /* space between email and button */
}
.nav-menu a.active {
  border-bottom: 2px solid #0d8e84; /* underline in your app color */
  color: #0d8e84; /* change text color */
  font-weight: bold;
}
.nav-menu a.active {
  color: #0d8e84;   /* your app color */
  border-bottom: 2px solid #0d8e84; /* underline effect */
  font-weight: bold;
}
.footer h2 {
  color: #fff;       /* Make sure it's visible */
  font-size: 24px;   /* Adjust as needed */
  margin: 0;
}
/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
}

/* Label */
.form-group label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

/* Select Box */
.form-group select {
  padding: 15px 20px;
  font-size: 16px;
  border: 1.5px solid #ccc;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
  background-color: #fff;
  width: 100%;
}

/* Focus State */
.form-group select:focus {
  border-color: #0056b3;   /* Professional blue */
  box-shadow: 0 0 5px rgba(0, 86, 179, 0.3);
}
/* Our Office Section */
.our-office {
  padding: 60px 20px;
  background: #f9f9f9;
}

.our-office .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Card Layout */
.card-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Cards */
.info-card {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Card Heading */
.info-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

/* Contact Items */
/* Each contact row */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

/* Icon column */
.contact-icon {
  font-size: 20px;
  color: #0056b3;
  margin-right: 10px;
  min-width: 30px;
  text-align: center;
}

/* Text column */
.contact-details {
  flex: 1;
}

/* Labels and paragraphs will align perfectly */
.contact-details label,
.contact-details p {
  margin: 0;
  font-size: 15px;
  color: #333;
  display: block;
  text-align: left;
}
/* Light red card background */
/* Emergency Card */
.emergency-card {
  background-color: #f8d7da;   /* light red background */
  border: 1px solid #f5c2c7;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.emergency-card .support-details {
  text-align: left;
  flex: 1;
}
.emergency-card .support-details p {
  margin: 5px 0;
  text-align: left;
  display: block;
}


/* Emergency Button */
.emergency-card .support-btn {
  background-color: #dc3545;   /* pure red */
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  display: block;
  width: fit-content;
  margin-top: 10px;
  text-align: center;
}

.emergency-card .support-btn:hover {
  background-color: #b02a37; /* darker red on hover */
}


/* Premium Support Card */
.premium-card {
  background-color: #e6f0ff; /* light blue background */
  border-left: 5px solid #007bff; /* professional blue accent */
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.premium-card .support-icon {
  font-size: 20px; /* smaller icon size */
  margin-top: 4px;
}

.premium-card .support-details {
  flex: 1;
  text-align: left; /* ensures everything aligns left */
}

.premium-card .support-details h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: bold;
}

.premium-card .support-details p {
  margin: 5px 0 12px 0;
  text-align: left;
  display: block;
}

.premium-card .support-btn {
  background-color: #007bff; /* professional blue */
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  display: inline-block;   /* keeps button tight */
  text-align: left;        /* text inside button aligned left */
}

.premium-card .support-btn:hover {
  background-color: #0056b3; /* darker blue on hover */
}
.tips-section {
  width: 100%;
  text-align: center;
}
.tips-section h1 {
  font-size: 32px;   /* makes "Our Office" big */
  font-weight: bold;
  margin-bottom: 10px;
}

.tips-section .testimonials-subtitle {
  font-size: 20px;   /* makes subtitle bigger */
  color: #555;       /* softer professional color */
  margin: 0;
  display: inline-block;
}
/* Privacy Policy Section Styling */
.privacy-policy-section {
  text-align: left;   /* force all text left */
  width: 100%;
  padding: 20px;
}

.privacy-policy-section h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #222;
  text-align: left;
}

.privacy-policy-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
  text-align: left;
}
/* Center only the Privacy Policy heading */
.privacy-policy-section h3 {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}
.header-logo {
  position: absolute;
  top: 15px;
  left: 20px;
  display: flex;
  align-items: center;
}

.header-logo img {
  margin-right: 8px;
  height: 30px;         /* keep size consistent */
  display: block;
  position: relative;
  top: -7px;            /* move it UP, adjust number if needed */
}

.request-demo-btn {
  position: absolute;
  transform: translateY(-50%);
  margin: 0;
  padding: 10px 18px;
  display: inline-block;
  cursor: pointer;
  right: 20px;   /* distance from the right edge of the page */
  top: 50%;     /* adjust if you want it lower or higher */
}
/* Prevent any hover from moving the button */
.request-demo-btn:hover {
  transform: translateY(-50%); /* keep exactly the same */
  margin: 0;
}
header {
min-height: 70px;
padding: 10px 15px;
display: flex;
align-items: center;
}
/* Modal background */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* full viewport height */
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
  z-index: 999;
  overflow-y: auto;        /* allow scrolling if modal is taller than screen */
}

.modal {
  background: #fff;
  padding: 30px;
  max-width: 950px;
  width: 90%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
  margin: 0 auto;          /* remove any default top margin */
}
.form-row input {
  flex: 1 1 30%; /* allow 3 inputs per row */
}

.form-row .about-input {
  flex: 2; /* make About You take more space than headline */
}
.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1; /* each takes equal width */
}

.form-group h4 {
  margin-bottom: 8px; /* reduce space between heading and input */
  font-size: 1rem;
}


/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Form inputs */
.modal form input,
.modal form select,
.modal form button {
  margin-bottom: 0;
  padding: 8px 10px;
  font-size: 14px;
}

/* Submit button */
.modal form button {
  background-color: #0d8e84;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
.form-row {
  display: flex;
  gap: 15px; /* space between the inputs */
  margin-bottom: 6px; /* space below the row */
}

.form-row input {
  flex: 1; /* make both inputs take equal width */
  padding: 15px 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}
/* Features container */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* responsive columns */
  gap: 10px; /* smaller gap between cards */
  justify-items: center;
  margin-bottom: 1rem; /* reduces space below the features section */
}

/* Individual feature card */
.feature-card {
  width: 100%;
  max-width: 200px;
  padding: 12px;
  border: 2px solid #0d8e0d;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: white;
}

/* Hover effect */
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  background-color: #0d8e84;
  color: #fff;
}

/* Active / clicked state */
.feature-card.active {
  background-color: #0d8e84;
  color: #fff;
  border-color: #0d8e84;
}
.nav-menu a.active {
  text-decoration: underline; /* underline active page */
  color: #0d8e84; /* optional: change color too */
}
.testimonial-cards-container {
  display: flex;
  justify-content: space-between; /* space between cards */
  gap: 20px; /* optional extra spacing */
  flex-wrap: wrap; /* makes cards stack on small screens */
  margin: 30px 0; /* space above/below container */
}

.testimonial-card {
  flex: 1 1 30%; /* each card takes ~30% width, adjusts on smaller screens */
  min-width: 300px; /* prevents cards from being too small */
  min-height: 200px;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* Container for all tip cards */
.tips-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0;
}

/* Each individual tip card */
.tip-card-new {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  box-sizing: border-box;
  text-align: left;
}

/* Headings with small icon on left */
.tip-card-new h2 {
  display: flex;
  align-items: left;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}

/* Icon before heading text */
.tip-card-new h2::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-image: url('PATH_TO_YOUR_ICON'); /* replace with your icon path */
  background-size: cover;
  background-position: center;
}

/* List items with dots, left-aligned */
.tip-card-new ul {
  padding-left: 20px;
  margin: 0;
  list-style: disc;
}

.tip-card-new ul li {
  margin-bottom: 8px;
}
.events-section {
  text-align: center;
  padding: 40px 20px;
}

.events-subtitle {
  color: #555;
  margin-bottom: 30px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row */
  gap: 20px;
  margin-top: 20px;
}

.event-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  height: 100%;
}

.event-header {
  display: flex;
  justify-content: space-between; /* ✅ title left, attendees right */
  align-items: center;
  margin-bottom: 10px;
}
.event-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.attendees {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
}

.attendee-icon {
  font-size: 16px; /* small icon */
  margin-right: 5px;
}

.event-footer {
  display: flex;
  justify-content: space-between; /* ✅ date left, button right */
  align-items: center;
  margin-top: auto;
}

.event-date {
  font-size: 14px;
  color: #444;
  margin: 0;
}

.register-btn {
  background: #0d8e84;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.register-btn:hover {
  background: #0b756c;
}
.event-card p {
  text-align: left;   /* ✅ force left alignment */
  margin: 10px 0;      /* small spacing */
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}
.job-desc {
  text-align: left;       /* force text to align left */
  margin: 0;              /* remove browser default spacing */
  padding-left: 0;        /* make sure no extra indent */
  text-indent: 0;         /* prevents first-line indent */
  font-size: 1.1rem;
  line-height: 1.6;
}
.why-choose-image img {
  margin-left: 30px !important; /* adjust px until it looks right */
}
/* === FORCE LARGER TEXT SITE-WIDE (override other rules) === */
:root { font-size: 18px; } /* base size — adjust to taste (18px, 19px, 20px) */

/* Paragraphs — make these noticeably bigger */
p {
  font-size: 18px !important;     /* change 22px to 20/24 if you prefer */
  line-height: 1.6 !important;
  margin: 0 0 1em !important;
  letter-spacing: 0.2px !important;
}

/* Ensure common text form elements are readable too */
input, textarea, select, button, label, a {
  font-size: 16px !important;
}

/* Optional: larger headings to keep balance */
h1 { font-size: 2rem !important; }
h2 { font-size: 1.5rem !important; }
h3 { font-size: 1.5rem !important; }

/* If your site uses CSS variables for sizing, override them too (common with frameworks) */
:root {
  --font-size-base: 18px !important;
  --body-font-size: 18px !important;
  --bs-body-font-size: 18px !important; /* bootstrap variable override */
}
/* ---------- Force paragraph size only (place at end of main CSS) ---------- */
/* Pick the size you want (20px shown). This does NOT change alignment or spacing. */
:root { --site-p-font-size: 20px; }

html body p,
body p,
.container p,
.content p,
article p,
.job-desc,
.tip-card-new p,
.event-card p,
.service-card p {
  font-size: var(--site-p-font-size) !important;
  /* no line-height/margin changes here to avoid layout shifts */
}
/* Force <p> text centered and center the block horizontally */
p,
header p,
main p,
section p,
footer p,
article p {
  display: table;           /* shrink-to-fit so margin:auto can center it */
  margin: 0 auto !important;/* horizontally center the block */
  text-align: center !important; /* center the text inside */
  max-width: 100%;
}
/* Reset paragraphs inside service cards */
.service-card p,
.service-card .feature-item p {
  text-align: left !important;
  margin: 0 !important;       /* remove auto-centering margins */
  display: block !important;  /* back to normal block flow */
}
#unique-center {
  text-align: center !important;
}
.only-left {
  text-align: left !important;
}
.job-form-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.job-form-modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px; /* Single card width */
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
/* Align labels in Job Posting Form to the left */
#jobPostForm label {
  text-align: left;
  display: block;
}
.form-container .form-intro {
  display: block !important;
  text-align: left;
  color: #000 !important;
}
/* Wrapper */
.my-dashboard-stats {
  padding: 20px 0;
  background: #f8f8f8;
}

.my-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px; /* controls spacing between cards */
}

/* Individual cards */
.my-stat-card {
  position: relative;
  height: 200px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
}

/* Number button (top-left) */
.my-stat-number {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  align-self: flex-start; /* top-left */
  font-weight: bold;
}

/* Text button (bottom-right) */
.my-stat-text {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  align-self: flex-end; /* bottom-right */
  font-weight: bold;
}
/* Only affects the Plans hero */
.plans-hero {
  padding: 60px 0; /* smaller space just for Plans */
}
/* Reduce only the bottom padding */
.plans-hero {
  padding-bottom: 0px; /* smaller bottom space */
}
/* reset default margins */
.tips-title,
.tips-subtitle {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.15; /* control vertical spacing inside the elements */
}

/* if you want a small gap (6px) between them instead of zero */
.tips-title + .tips-subtitle {
  margin-top: 6px !important;
}
.free-starter {
  text-align: center;
  padding: 50px 20px;
  background: #f9f9f9;
}

.plan-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000;
}

.plan-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #000;
}

.card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 8px 15px;
  background: #0b756c;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.btn:hover {
  background: #333;
}
.subscribe-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 400px;
  margin: 30px auto;
  text-align: center;
}

.subscribe-box h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
  color: #000;
}

.subscribe-box p {
  margin-bottom: 15px;
  color: #666;
  font-size: 0.95rem;
}

.subscribe-form {
  display: flex;
  gap: 10px;
}

.subscribe-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
}

.subscribe-form button {
  padding: 10px 20px;
  background: #0b756c;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

.subscribe-form button:hover {
  background: #333;
}
.card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 per row */
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #fff;
  padding: 30px; /* make them look wider and spacious */
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; /* space between cards */
  margin-top: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}
/* Modal Background */
.tracker-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
}

/* Modal Box */
.tracker-modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
}

/* Close Button */
.tracker-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

/* Form styling */
#trackerForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#trackerForm input, #trackerForm select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.submit-btn {
  background: #0b756c;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
}

.submit-btn:hover {
  background: #0b756c;
}
.tracker-btn {
  background-color: #0b756c;
}
@media (max-width: 768px) {
  .request-demo-btn {
    position: absolute;
    top: 15px;       /* stays aligned near the top */
    right: 60px;     /* push it left from the hamburger */
    z-index: 1100;
    padding: 8px 16px;
    width: auto;
    max-width: fit-content;
    margin-top: 15px;
    border: 2px solid transparent;
  line-height: 1.2;        /* fix line height */
    box-sizing: border-box;  /* keep sizing stable */
  }

  .request-demo-btn:hover {
    border-color: #0b756c;
    background-color: #0b756c;
    color: #fff;
  }
}
.btn-primary,
.btn-primary:link,
.btn-primary:visited {
  text-decoration: none; /* removes underline */
  display: inline-block; /* makes it behave like a button */
}
.cv-optimization {
  padding: 60px 20px;
  text-align: center;
  font-family: "Inter", sans-serif;
}

/* Section Header */
.section-header .tag {
  background: #eef4ff;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 8px 0;
}

.section-header h2 .highlight {
  color: #0b756c;
}

.section-header p {
  color: #555;
  font-size: 16px;
  margin-bottom: 50px;
}

/* Steps Layout */
.steps {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.step-card {
  flex: 1 1 300px;
  max-width: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  background: #fff;
  text-align: left;
}

/* Step Backgrounds */
.step-card.green { 
  align-items: center;
  background: #ecfdf5; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
}

.step-card.blue { background: #eff6ff; }
.step-card.purple { background: #faf5ff; }

/* Top window block (CV-John Doe card) */
.window {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);

  width: 85%;           
  max-width: 240px;     
  margin: 20px auto 0;  
  padding: 6px 10px;   
  justify-content: center; 
  text-align: left;
  position: relative;
  top: 0px;   /* move it down slightly */
}
.upload-icon img {
  width: 40px;   /* adjust size */
  height: auto;
  display: block;
}

/* File Upload */
.file-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.upload-icon {
  font-size: 24px;   
  color: #059669;
}

.file-name {
  font-weight: 600;
  font-size: 13px;   
}

.file-size {
  font-size: 11px;   
  color: #6b7280;
  line-height: 1.2;
}

/* AI Score */
.score-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.score-icon {
  font-size: 34px;
}
.score-value {
  font-size: 28px;
  font-weight: 700;
  color: #2563eb;
}
.score-value span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #374151;
}

/* Recommendations */
.recommend-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.recommend-box li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #374151;
}
.recommend-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Step Content */
.step-content {
  padding: 20px 24px 30px;
}
.step-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.step-content .num {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  font-size: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  margin-right: 8px;
  font-weight: 600;
}
.step-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Upload CV inner card */
.step-card.green .window {
  background: #fff;              
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 20px auto 0;   /* default (mobile/tablet) */
  padding: 20px;
  border: none;                  
}

/* ✅ Desktop fix */
@media (min-width: 1024px) {
  .step-card.green .window {
    margin-top: 10px;   /* move it closer on big screens */
  }
}

/* Profile picture inside first card */
.step-card.green .profile-picture {
  width: 100%;
  display: flex;
  justify-content: center;  /* center the image */
  margin-bottom: 20px;      /* spacing between picture and next box */
}

.step-card.green .profile-picture img {
  width: 110px;              /* make it smaller */
  height: 110px;
  border-radius: 50%;       /* round circle */
  object-fit: cover;        /* crop nicely */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border: 3px solid #fff;   /* white border around */
  margin-top: 10px;
}


/* Step 1 card - Upload CV content */
.step-card.green .step-content {
  background: #fff;
  border-radius: 0 0 12px 12px; 
  padding: 16px 20px;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.08); 
  margin-top: auto;          
  text-align: left;          
  width: 100%;               
}

/* Step 1 number circle */
.step-card.green .step-content .num {
  background: #059669;   
  color: #fff;
  font-size: 18px;       
  width: 32px;           
  height: 32px;
  line-height: 32px;
  position: relative;
  top: -4px;             
}
/* Step 2 card - AI Analysis inner box */
.step-card.blue .window {
  background: #fff;              
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 20px;                  /* spacing inside the blue card */
  padding: 14px;
  border: none;                  
  width: 85%;
  max-width: 240px;
  text-align: center;
  height: auto;
  min-height: 80px;
}
/* Adjust score value text */
.step-card.blue .score-value {
  font-size: 24px;   /* a bit smaller */
  font-weight: 700;
  color: #2563eb;
}

.step-card.blue .score-value span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #374151;
}

.step-card.blue .profile-picture {
  text-align: center;
  margin-bottom: 10px;
}

.step-card.blue .profile-picture img {
  width: 80px;   /* adjust size */
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

/* Step 2 content area */
.step-card.blue .step-content {
  background: #fff;
  border-radius: 0 0 12px 12px;
  padding: 16px 20px;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.08);
  margin-top: auto;
  text-align: left;   /* make text left-aligned */
  width: 100%;
}

/* Step 2 number circle */
.step-card.blue .step-content .num {
  background: #2563eb;   /* blue circle */
  color: #fff;
  font-size: 18px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  position: relative;
  top: -4px;
}
.step-card.blue .profile-picture img {
  width: 110px;   /* bigger */
  height: 110px;  /* bigger */
  border-radius: 50%;
  object-fit: cover;
  margin-top: 20px;  /* move down */
}
/* Progress bar container */
.progress-bar {
  width: 100%;
  height: 12px;
  background: #e5e7eb;   /* light gray background */
  border-radius: 8px;
  margin-top: 12px;
  overflow: hidden;
}

/* Progress bar fill */
.progress-fill {
  height: 100%;
  background: #2563eb;   /* blue fill */
  border-radius: 8px 0 0 8px;
  transition: width 0.6s ease; /* smooth animation */
}
/* Step 3 picture styling */
.step-card.purple .profile-picture {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.step-card.purple .profile-picture img {
  width: 110px;    /* adjust size */
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border: 3px solid #fff;
  margin-top: 10px;
}

/* Inner card (window) for step 3 */
.step-card.purple .window {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 20px auto 0;
  padding: 20px;
  border: none;
  text-align: center; /* center recommendations text */
}

/* Recommendation text */
.recommend-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.recommend-box li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #374151;
}
/* Step 3 bottom content box */
.step-card.purple .step-content {
  background: #fff;
  border-radius: 0 0 12px 12px; /* only bottom rounded */
  padding: 16px 20px;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.08); /* subtle shadow at the top */
  margin-top: auto;
  text-align: left;
  width: 100%;
}

/* Number circle for Step 3 */
.step-card.purple .step-content .num {
  background: #9333ea;   /* purple background */
  color: #fff;
  font-size: 18px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  margin-right: 8px;
  position: relative;
  top: -4px;
}
/* Make all step-cards flex columns */
.step-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes content apart */
}

/* Step content always at the bottom */
.step-card .step-content {
  margin-top: auto;
}
/* Move Step 3's window up a little */
.step-card.purple .window {
  position: relative;
  top: -10px;   /* adjust number until it looks right */
}

/* Heading */
.cv-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Subtitle */
.cv-section .subtitle {
  font-size: 18px;
  color: #d1d5db;
  margin-bottom: 30px;
}

/* Green CTA button */
.btn-green {
  background: #fff;
  color: black;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}
.btn-green:hover {
  background: #16a34a;
}

/* Note under button */
.cv-section .note {
  font-size: 14px;
  color: #9ca3af;
  margin-top: 12px;
  margin-bottom: 50px;
}

/* Purple outlined box */
.cv-box {
  background: rgba(31, 41, 55, 0.7);
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 30px 20px;
  max-width: 700px;
  margin: 0 auto;
}

/* Box title */
.cv-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Box text */
.cv-box p {
  font-size: 15px;
  color: #d1d5db;
  margin-bottom: 20px;
}

/* Purple button */
.btn-purple {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}
.btn-purple:hover {
  background: #0b756c;
  color: #fff;
}
/* Hero Section */
.cv-hero-content .highlight {
  color: #22c55e; /* green highlight */
}

.btn-green:hover {
  background: #16a34a;
}

.center-wrapper {
  text-align: center;          /* center text */
  display: flex;              
  flex-direction: column;      /* stack items vertically */
  justify-content: center;     /* vertical center */
  align-items: center;         /* horizontal center */
}
/* Modal background */
.cv-modal {
  display: none; 
  position: fixed;
  z-index: 2000; /* higher so it shows above everything */
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

/* Modal box */
.cv-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease-in-out;
}

/* Close button */
.cv-close-btn {
  float: right;
  font-size: 22px;
  cursor: pointer;
}

/* Plan card */
.plan-card {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-top: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
/* Learn More Section */
.learn-more {
  padding: 80px 20px;
  background: #f9fafb;
  font-family: "Inter", sans-serif;
}

.learn-more .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.learn-more h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
}

.learn-more p {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Steps Layout */
.learn-more .steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}


.learn-more .step {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.learn-more .step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.learn-more .step h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: black; /* main highlight */
}

.learn-more .step p {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

/* Call To Action */
.learn-more .cta {
  text-align: center;
}

.learn-more .btn-primary {
  background: #fff;
  color: black;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.learn-more .btn-primary:hover {
  background: #0b756c;;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .learn-more .steps {
    grid-template-columns: 1fr;
  }

  .learn-more h1 {
    font-size: 28px;
  }
}
/* Make Hero Text Bigger */
.hero-content h1 {
    font-size: 2rem !important;   /* Main headline */
}

.hero-content h2 {
    font-size: 3rem !important;   /* Subheadline */
}

.hero-content p {
    font-size: 1.5rem !important; /* Paragraph text */
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    font-size: 1.25rem !important;  /* Make buttons bigger */
    padding: 16px 32px !important;
}
.feature-item {
    display: flex;
    align-items: flex-start; /* align tick to the top of the content */
    gap: 12px; /* space between tick and content */
}

.feature-check {
    font-size: 22px;  /* adjust tick size */
    line-height: 1;    /* prevent extra spacing */
    margin-top: 4px;   /* fine-tune vertical alignment with <h4> */
}

.feature-content h4 {
    margin: 0; /* remove default margin */
}

.feature-content p {
    margin: 4px 0 0 0; /* optional: small gap below heading */
}
.job-ready-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.job-ready-content {
  flex: 1 1 500px;
  max-width: 600px;
  color: #fff; /* keep your color */
}

.job-ready-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.job-ready-content h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.job-ready-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.job-ready-image {
  flex: 1 1 400px;
  text-align: right;
}

.job-ready-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .job-ready-container {
    flex-direction: column;
    text-align: center;
  }

  .job-ready-image {
    text-align: center;
  }

  .job-ready-content h1 {
    font-size: 2rem;
  }
}
.nav-menu a.active {
  color: #fff !important;
  border-bottom: 3px solid #fff !important;
  padding-bottom: 4px !important;
}
/* Responsive Design for Mobile */
@media (max-width: 768px) {
  /* General layout adjustments */
  body {
    padding: 10px;
  }

  .hero-container,
  .job-ready-container,
  .job-card,
  .section,
  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  h1, h2, h3, p {
    width: 100%;
  }

  .hero-content {
    padding: 15px;
  }

  /* Adjust buttons */
  .btn-primary, .btn-secondary {
    width: 100%;
    margin-bottom: 10px;
  }

  /* Job cards */
  .job-card {
    width: 100%;
    margin: 10px 0;
  }

  /* Navigation */
  .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
/* 🔧 Improved Mobile Responsive Design */
@media (max-width: 768px) {
  /* Make the whole site fit nicely */
  html, body {
    width: 100%;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
  }

  /* Stack hero and job sections vertically */
  .hero-container,
  .job-ready-container,
  .section,
  .job-card,
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Make text shrink slightly */
  h1 {
    font-size: 22px !important;
  }
  h2 {
    font-size: 18px !important;
  }
  h3 {
    font-size: 16px !important;
  }
  p {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  /* Make images fit perfectly */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Adjust buttons */
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 320px;
    margin: 8px 0;
  }

  /* Navigation adjustments */
  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  /* Reduce spacing inside sections */
  section {
    padding: 20px 10px;
  }

  /* Fix job cards overflow */
  .job-card {
    width: 100%;
    margin: 10px 0;
    padding: 15px;
    box-sizing: border-box;
  }
}
@media (max-width: 767px) {
  /* Hamburger always visible on mobile */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1000;
  }

  .hamburger span {
    display: block;
    height: 3px;
    background-color: #000;
    border-radius: 2px;
    transition: 0.3s;
  }

  /* Mobile menu hidden by default */
  .nav-menu {
    display: none;        /* hidden on mobile */
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 80%;           /* optional: reasonable width */
    margin: 0 auto;       /* center horizontally */
    background: #fff;     /* optional */
    border-radius: 8px;   /* optional */
    padding: 20px;
  }

  /* Show menu when open */
  .nav-menu.open {
    display: flex !important;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .nav-menu li a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
  }
}

/* Desktop: keep original layout untouched */
@media (min-width: 768px) {
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    margin: 0;          /* reset any mobile margin */
    padding: 0;         /* reset any mobile padding */
    width: auto;        /* default desktop width */
    text-align: left;
    background: none;
    border-radius: 0;
  }

  .hamburger {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .services {
    padding: 40px 15px;
    text-align: center;
  }

  .services h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .services-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: black;
  }

  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .service-card {
    width: 100%;
    max-width: 360px;
    padding: 25px 18px;
    border: 1.5px solid black;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background: #fff;
  }

  .service-icon {
    margin-bottom: 15px;
  }

  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: black;
  }

  .service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: black;
  }

  .service-btn {
    font-size: 0.9rem;
    padding: 9px 18px;
    border: none;
    border-radius: 6px;
    background-color: #0b756c;
    color: #fff;
    font-weight: 600;
  }

  .service-btn:hover {
    background-color: black;
  }
}
@media (max-width: 768px) {
  .testimonials {
    padding: 50px 15px;
    text-align: center;
  }

  .testimonials h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .testimonials-subtitle {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .testimonial-card {
    background: #fff;
    border: 1.5px solid #0b756c;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    max-width: 360px;
    text-align: left;
  }

  .testimonial-card .stars {
    color: #0b756c;
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: left;
  }

  .testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .testimonial-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0b756c;
  }

  .author-info {
    text-align: left;
  }

  .author-name {
    font-weight: 600;
    color: #111;
    font-size: 0.95rem;
  }

  .author-title {
    font-size: 0.85rem;
    color: #555;
  }
}
@media (max-width: 768px) {
  .why-choose {
    padding: 50px 15px;
    text-align: center;
  }

  .why-choose-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }

  .why-choose-text h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .why-choose-text p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
  }

  .features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    background: #fff; /* tick area background white */
    border: 1.5px solid #0b756c;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .feature-check {
    color: #fbbf24; /* yellow tick color */
    background: #fff; /* white background behind tick */
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 4px;
  }

  .feature-content h4 {
    font-size: 1rem;
    color: #111;
    margin-bottom: 4px;
  }

  .feature-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
  }

  .why-choose-image {
    position: relative;
    text-align: center;
  }

  .why-choose-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
  }

  .success-rate {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff; /* changed to white background */
    border: 2px solid #0b756c; /* green border */
    color: #0b756c; /* green text */
    padding: 8px 14px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
  }

  .success-number {
    font-size: 1.3rem;
    font-weight: bold;
  }

  .success-label {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .logo.header-logo h2[style] {
    font-size: 15px !important;
  }
}
@media (max-width: 768px) {
  .stats-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 12px; /* Increased space between cards */
    padding: 0 10px; /* Optional: adds breathing room on sides */
  }

  .stat-card {
    flex: 1;
    max-width: 200px; /* slightly wider cards */
    padding: 15px 8px; /* increased card length (height) */
    border-radius: 14px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  }

  .stat-icon svg {
    width: 22px;
    height: 22px;
    margin-bottom: 5px;
  }

  .stat-number {
    font-size: 1.05rem;
    color: #22c55e;
    font-weight: 700;
    margin-bottom: 3px;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}
/* ---------- MOBILE: force image to shrink and sit to the right ---------- */
@media (max-width: 768px) {
  /* keep row layout but tighter */
  .job-ready-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  /* allow the text area to shrink below inline min-width */
  .job-ready-content {
    flex: 1 1 65% !important;   /* text takes most of the row */
    max-width: 65% !important;
    min-width: 0 !important;    /* IMPORTANT: overrides inline min-width:300px */
  }

  /* make image container a fixed smaller portion of the row */
  /* ---------- Force image taller on mobile ---------- */
.job-ready-image {
  flex: 0 0 30% !important;
  max-width: 30% !important;
  text-align: right;
  height: 220px !important; /* Increase this to make it taller */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible !important; /* make sure it's not cropped */
}

.job-ready-image img {
  width: 100% !important;
  height: 100% !important; /* fills the 220px container */
  object-fit: cover !important; /* fills more vertically */
  display: block !important;
}

  /* reduce text sizes so it fits comfortably */
  .job-ready-content h1 { font-size: 0.95rem; line-height: 1.1; margin-bottom:6px; }
  .job-ready-content h2 { font-size: 0.85rem; margin-bottom:4px; }
  .job-ready-content p  { font-size: 0.75rem; line-height:1.3; }

  /* compact buttons */
  .hero-buttons { display:flex; flex-direction:column; gap:6px; margin-top:6px; }
  .hero-buttons button { padding:6px 10px; font-size:0.78rem; }
}

/* ---------- Tweak for very small phones (<=420px) ---------- */
@media (max-width: 420px) {
  .job-ready-content { flex: 1 1 68% !important; max-width: 68% !important; }
  .job-ready-image   { flex: 0 0 28% !important; max-width: 28% !important; }
  .job-ready-content h1 { font-size: 0.9rem; }
  .job-ready-content h2 { font-size: 0.8rem; }
}
