/* Tharare Global Solutions - Static HTML Styles */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: #dc2626;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
/* .overlay { */
  /* backdrop-filter: blur(4px); */
/* } */
/* .overlay { */
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%; */
  /* height: 100%; */
  /* background: rgba(0,0,0,0.35); /* lighter overlay */ */
}

.nav-desktop a {
  color: #4b5563;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: #dc2626;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  color: #4b5563;
}

.mobile-menu {
  display: none;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 1rem;
}

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

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

.mobile-menu li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-menu a {
  color: #4b5563;
  font-weight: 500;
  display: block;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: #dc2626;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }
  .mobile-menu-btn {
    display: none;
  }
}

/* Hero Section */
/* .hero { */
  /* background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%); */
  /* color: #ffffff; */
  /* padding: 4rem 1rem; */
  /* text-align: center; */
/* } */
.hero {
  position: relative;
  height: 100vh;
  background-image: url("./images/it-recruitment.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0; /* remove extra padding */
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: #ffffff;
  color: #dc2626;
}

.btn-primary:hover {
  background-color: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-green {
  background-color: #16a34a;
  color: #ffffff;
}

.btn-green:hover {
  background-color: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats {
  padding: 3rem 1rem;
  background-color: #f9fafb;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #dc2626;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Section Styles */
.section {
  padding: 4rem 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  color: #111827;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border: 1px solid #e5e7eb;
}

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

.card-icon {
  width: 48px;
  height: 48px;
  background-color: #fee2e2;
  color: #dc2626;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #111827;
}

.card-text {
  color: #6b7280;
  line-height: 1.6;
}

/* Job Listings */
.job-list {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.job-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.job-card:hover {
  border-color: #dc2626;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.job-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.job-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.job-description {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #fee2e2;
  color: #991b1b;
}

.badge-green {
  background-color: #dcfce7;
  color: #166534;
}

/* Forms */
.form-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact Info */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.contact-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: #fee2e2;
  color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111827;
}

.contact-text {
  color: #6b7280;
}

/* Footer */
footer {
  background-color: #111827;
  color: #ffffff;
  padding: 3rem 1rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #dc2626;
}

.footer-section p,
.footer-section a {
  color: #9ca3af;
  line-height: 1.8;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Responsive */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

/* Success Message */
.success-message {
  background-color: #dcfce7;
  border: 1px solid #16a34a;
  color: #166534;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  display: none;
}

.success-message.show {
  display: block;
}

.error-message {
  background-color: #fee2e2;
  border: 1px solid #dc2626;
  color: #991b1b;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  display: none;
}

.error-message.show {
  display: block;
}

/* About Page Styles */
.page-hero {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
  padding: 4rem 1rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.content-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111827;
}

.content-text p {
  margin-bottom: 1rem;
  color: #6b7280;
  line-height: 1.8;
}

.content-text strong {
  color: #111827;
}

.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-logo {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.stats-grid-small {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-list li {
  color: #6b7280;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.leadership-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .leadership-card {
    grid-template-columns: 200px 1fr;
  }
}

.leadership-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  padding: 2rem;
}

.leadership-content {
  padding: 2rem;
}

.leadership-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}

.leadership-title {
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 1rem;
}

.leadership-content p {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.company-info {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.company-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.company-info .subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.company-info a {
  color: #dc2626;
  text-decoration: underline;
}

.company-info a:hover {
  color: #991b1b;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.section-header p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-alt {
  background-color: #f9fafb;
}

.nav-desktop a.active {
  color: #dc2626;
  font-weight: 600;
}

.mobile-menu a.active {
  color: #dc2626;
  font-weight: 600;
}

/* Services Page Styles */
.service-section {
  margin-bottom: 3rem;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-icon {
  font-size: 3rem;
}

.service-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.service-description {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-item {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 0.5rem;
}

.checkmark {
  color: #16a34a;
  font-weight: bold;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.service-item span:last-child {
  color: #4b5563;
  line-height: 1.6;
}

.cta-box {
  text-align: center;
  padding: 3rem 1rem;
}

.cta-box h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.cta-box p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.cta-box .hero-buttons {
  justify-content: center;
}

/* Careers Page Styles */
.job-listings {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .job-listings {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .job-listings {
    grid-template-columns: repeat(3, 1fr);
  }
}

.job-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.3s ease;
}

.job-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.job-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  flex: 1;
}

.job-badge {
  background: #16a34a;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-badge {
  background: #f3f4f6;
  color: #4b5563;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
  text-align: center;
}

.form-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.btn-large {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
}

.success-message {
  background-color: #d1fae5;
  border: 1px solid #16a34a;
  color: #065f46;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  display: none;
  text-align: center;
}

.success-message.show {
  display: block;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 2rem;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #111827;
}

.contact-item p {
  color: #6b7280;
  margin: 0.25rem 0;
}

.contact-item a {
  color: #dc2626;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.business-hours {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  font-weight: 600;
  color: #374151;
}

.hours-row span:last-child {
  color: #6b7280;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
}

.map-placeholder {
  background: white;
  border: 2px dashed #d1d5db;
  border-radius: 0.5rem;
  padding: 4rem 2rem;
  text-align: center;
  color: #111827;
  font-size: 1.125rem;
}
/* .overlay { */
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%; */
  /* height: 100%; */
  /* background: rgba(0,0,0,0.45); */
/* } */

.hero-content {
  position: relative;
  max-width: 800px;
  padding: 20px;
  z-index: 2;
}

.tag {
  background: #d72626;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

p {
  font-size: 1.25rem;
  margin-bottom: 24px;
}

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

.btn {
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}

.btn.primary {
  background: #e63232;
  color: #fff;
}

.btn.outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn:hover {
  opacity: .85;
}
.hero-title {
  font-size: 64px;       /* Big and bold like screenshot */
  font-weight: 700;       /* Heavy bold */
  color: #ffffff;         /* Pure white */
  line-height: 1.15;
}

.badge {
  background: #d9374f;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: 4rem;        /* Bigger like sample */
  font-weight: 800;       /* Thick bold */
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 40px;
}

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

.btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

.btn.primary {
  background: #e63939;     /* Bright red like sample */
  color: #fff;
}

.btn.primary:hover {
  background: #cc2f2f;
}

.btn.outline {
  border: 2px solid #ffffff;
  color: #fff;
  background: transparent;
}

.btn.outline:hover {
  background: #ffffff;
  color: #222;
}

.tag {
  background: #e63939;
  padding: 6px 16px;
  font-size: 14px;
  color: #fff;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}

.hero-content h1,
.hero-content p {
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.35);
}

/* ===== FINAL HERO OVERRIDES – MATCH SAMPLE EXACTLY ===== */

.hero-content h1 {
  font-size: 4.5rem !important;
  font-weight: 800 !important;
  letter-spacing: -1px;
  margin-bottom: 18px !important;
  text-shadow: none !important;
}

.hero-content p {
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  max-width: 800px;
  margin: 0 auto 48px !important;
  color: #ffffff !important;
  text-shadow: none !important;
}

/* BADGE */
.tag {
  background: #e63947 !important;
  padding: 8px 20px !important;
  font-size: 15px !important;
  border-radius: 9999px !important;
  font-weight: 600 !important;
  margin-bottom: 24px !important;
}

/* BUTTONS */
.buttons {
  display: flex;
  justify-content: center;
  gap: 28px !important;
}

.btn {
  padding: 16px 36px !important;
  border-radius: 10px !important;
  font-size: 18px !important;
  letter-spacing: 0.3px;
  font-weight: 600 !important;
}

/* Solid Red Button */
.btn.primary {
  background: #e63947 !important;
  color: #ffffff !important;
  border: none !important;
}
.btn.primary:hover {
  background: #cc2f3c !important;
}

/* Outline Button */
.btn.outline {
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
  background: transparent !important;
}
.btn.outline:hover {
  background: #ffffff !important;
  color: #222 !important;
}
/* --- BUTTON COLOR MATCH TUNING --- */

.btn.primary {
  background: #e3342f !important;   /* exact sample red */
  color: #ffffff !important;
  border: none !important;
}

.btn.primary:hover {
  background: #cc2926 !important;   /* darker hover red */
}

/* Outline */
.btn.outline {
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
  background: transparent !important;
}

.btn.outline:hover {
  background: #ffffff !important;
  color: #222222 !important;
}
/* ========= BUTTON FIX - MATCH REAL CLASSES ========= */

/* RED BUTTON */
.btn-primary,
.btn.primary,
button.primary {
  background: #e3342f !important;
  color: #ffffff !important;
  border: none !important;
}

.btn-primary:hover,
.btn.primary:hover,
button.primary:hover {
  background: #cc2926 !important;
}

/* OUTLINE BUTTON */
.btn-secondary,
.btn.outline,
button.outline {
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
  background: transparent !important;
}

.btn-secondary:hover,
.btn.outline:hover,
button.outline:hover {
  background: #ffffff !important;
  color: #222222 !important;
  border-color: #ffffff !important;
}
/* ==== MATCH BADGE RED WITH BUTTON RED ==== */

.tag,
.badge,
.trusted-badge {
  background: #e3342f !important;   /* same red as button */
  color: #ffffff !important;
  padding: 8px 20px !important;
  border-radius: 9999px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
}

.tag:hover,
.badge:hover,
.trusted-badge:hover {
  background: #cc2926 !important;   /* hover shade (optional) */
}
/* .hero h1 { */
  /* font-size: 4.5rem !important; */
  /* font-weight: 800 !important; */
  /* line-height: 1.1 !important; */
  /* margin-bottom: 1.2rem !important; */
/* } */

/* .hero p { */
  /* font-size: 1.35rem !important; */
  /* font-weight: 400 !important; */
  /* max-width: 900px !important; */
  /* margin: 0 auto !important; */
  /* color: #fff !important; */
/* } */
.hero .subtitle-text {
  font-size: 1.5rem;    /* bigger */
  font-weight: 400;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.3;
}
/* .hero-subtitle { */
  /* color: #ffffff !important;   /* Pure white */ */
  /* font-size: 1.5rem;           /* Same size as sample */ */
  /* font-weight: 400; */
  /* line-height: 1.35; */
  /* max-width: 900px; */
  /* margin: 0 auto; */
/* } */

.hero-subtitle {
  color: #ffffff !important;
  font-size: 1.5rem;
  font-weight: 700 !important;   /* BOLD */
  line-height: 1.35;
  max-width: 900px;
  margin: 0 auto;
  font-style: italic !important; /* Italic */
  
}
.hero-content .hero-subtitle {
  font-weight: 700 !important;
  color: #fff !important;

}
.hero-subtitle em {
  font-style: italic;
  color: #ffffff !important;
}
.hero-subtitle strong {
  font-weight: 700 !important;  /* Bold */
  font-style: italic !important; /* Italic */
  color: #ffffff !important;     /* White */
  line-height: 1.35;
  display: inline-block;
  text-align: center;
}
