/* style.css */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  /* align-items: center; not required */
  justify-content: center;
}

h1 {
  color: #333;
}

.centered-white-bold {
  text-align: center;
  color: white;
  font-weight: bold;
}

.container {
  background: rgba(255, 255, 255, 0.85);
  padding: 10rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.dashboard-container {
  padding: 1rem;
}

input[type="email"],
input[type="password"] {
  width: auto;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}



.divider {
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #726f6f;
}

.alt-logins {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.error-message {
  color: red;
  margin-top: 10px;
  font-size: 0.9rem;
}

.register-link {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}

.register-link a {
  color: #0066cc;
  text-decoration: none;
}

.register-link a:hover {
  text-decoration: underline;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  padding: 10px;
  width: auto;
  margin: 10px 0;
  border-radius: 8px;
  cursor: pointer;
  border: none;
}

.google-button {
}

.apple-button {
}

.forgot-password {
  margin-top: 6px;
  font-size: 14px;
}

.forgot-password a {
  color: #0066cc;
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}

/* Dark overlay to improve text visibility */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Black overlay with 50% opacity */
  z-index: 1;
}

/* Login form styles */
.login-form {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  /* Light background for the form */
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
}

.login-form h2 {
  margin-bottom: 20px;
}

.login-form input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-form button {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

.login-form button:hover {
  background-color: #45a049;
}


header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  background: #f9fafb;
  color: #1e293b;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  height: 100px;
  z-index: 1000;
}

header div {
  margin-left: 20px;
  display: flex;

}

header h1 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: -0.025em;
  color: #0f172a;
}

header nav {
  margin-right: 20px;
}

header nav a {
  color: #4b5563;
  text-decoration: none;
  margin-right: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #1e293b;
}

main {
  margin-top: 100px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}


.burger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
  }

  .nav-links.active {
    display: flex;
  }
}

/* Styles for the <section> element */
.hero-section {
  position: relative;
  /* Corresponds to "relative" */
  padding-left: 1rem;
  /* Corresponds to "px-4" (assuming Tailwind's default spacing scale) */
  padding-right: 1rem;
  /* Corresponds to "px-4" */
  padding-top: 4rem;
  /* Corresponds to "py-20" (assuming Tailwind's default spacing scale) */
  padding-bottom: 4rem;
  /* Corresponds to "py-20" */
  background-size: cover;
  /* Corresponds to "bg-cover" */
  background-position: center;
  /* Corresponds to "bg-center" */
  background-repeat: no-repeat;
  /* Corresponds to "bg-no-repeat" */
  background-image: linear-gradient(to right, rgb(0, 58, 93), rgb(26, 143, 209)); /* Corresponds to the inline style */
}

@media (min-width: 768px) {

  /* Corresponds to "md:" breakpoint */
  .hero-section {
    padding-top: 8rem;
    /* Corresponds to "md:py-32" */
    padding-bottom: 8rem;
    /* Corresponds to "md:py-32" */
  }
}

/* Styles for the main container <div> */
.hero-container {
  /* Corresponds to "max-w-6xl" (assuming Tailwind's default screen sizes - this might need adjustment based on your exact Tailwind config) */
  margin-left: auto;
  /* Corresponds to "mx-auto" */
  margin-right: auto;
  /* Corresponds to "mx-auto" */
  text-align: center;
  /* Corresponds to "text-center" */
  color: white;
  /* Corresponds to "text-white" */
}

/* Styles for the <h1> heading */
.hero-title {
  font-size: 1rem;
  /* Corresponds to "text-3xl" (assuming Tailwind's default font sizes) */
  font-weight: bold;
  /* Corresponds to "font-bold" */
  margin-bottom: 1rem;
  /* Corresponds to "mb-4" (assuming Tailwind's default spacing scale) */
  color: white;
  /* Corresponds to "text-white" */
  line-height: 1;
}

@media (min-width: 768px) {

  /* Corresponds to "md:" breakpoint */
  .hero-title {
    font-size: 3rem;
    /* Corresponds to "md:text-5xl" */
  }
}

/* Styles for the first <p> element */
.hero-subtitle {
  font-size: 1.25rem;
  /* Corresponds to "text-xl" */
  margin-bottom: 2rem;
  /* Corresponds to "mb-8" */
  max-width: 480px;
  /* Corresponds to "max-w-3xl" */
  margin-left: auto;
  /* Corresponds to "mx-auto" */
  margin-right: auto;
  /* Corresponds to "mx-auto" */
  line-height: 1.2;
}

@media (min-width: 768px) {

  /* Corresponds to "md:" breakpoint */
  .hero-subtitle {
    font-size: 1.5rem;
    /* Corresponds to "md:text-2xl" */
  }
}

/* Styles for the second <p> element */
.hero-description {
  font-size: 1rem;
  /* Corresponds to "text-lg" */
  margin-bottom: 2rem;
  /* Corresponds to "mb-8" */
  max-width: 1000px;
  /* Corresponds to "max-w-3xl" */
  margin-left: auto;
  /* Corresponds to "mx-auto" */
  margin-right: auto;
  /* Corresponds to "mx-auto" */
  line-height: 1.2;
}

/* Styles for the button container <div> */
.buttons {
  display: flex;
  /* Corresponds to "flex" */
  flex-direction: column;
  /* Corresponds to "flex-col" */
  align-items: center;
  /* Implied by "justify-center" on a single line, but explicitly set for clarity */
  gap: 1rem;
  /* Corresponds to "gap-4" (assuming Tailwind's default spacing scale) */
  text-decoration: none;
}

@media (min-width: 768px) {

  /* Corresponds to "sm:" breakpoint */
  .buttons {
    flex-direction: row;
    /* Corresponds to "sm:flex-row" */
    justify-content: center;
    /* Corresponds to "justify-center" */
  }
}

/* Styles for the "Explore Our Solutions" button (<a> element) */
.button-primary {
  padding-left: 1.5rem;
  /* Corresponds to "px-6" */
  padding-right: 1.5rem;
  /* Corresponds to "px-6" */
  padding-top: 0.5rem;
  /* Corresponds to "py-2" (Tailwind's py-2 might be slightly smaller, adjusted to 0.75rem for py-3) */
  padding-bottom: 0.5rem;
  /* Corresponds to "py-2" */
  border-radius: 0.25rem;
  /* Corresponds to "rounded-md" */
  font-weight: 500;
  /* Corresponds to "font-medium" */
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  /* Corresponds to "transition-colors" */
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  /* Default Tailwind transition */
  transition-duration: 150ms;
  /* Default Tailwind transition duration */
  text-align: center;
  /* Corresponds to "text-center" */
  display: inline-block;
  /* Corresponds to "inline-block" */
  background-color: #10b981;
  /* Corresponds to "bg-cbrand-green" (you might need to define this color) */
  color: white;
  /* Corresponds to "text-white" */
  text-decoration: none;

}

.button-primary:hover {
  background-color: #2563eb;
  /* Corresponds to "hover:bg-cbrand-blue" (you might need to define this color) */
}

/* Styles for the "Get in Touch" button (<a> element) */
.button-secondary {
  padding-left: 1.5rem;
  /* Corresponds to "px-6" */
  padding-right: 1.5rem;
  /* Corresponds to "px-6" */
  padding-top: 0.5rem;
  /* Corresponds to "py-2" (adjusted to 0.75rem for py-3) */
  padding-bottom: 0.5rem;
  /* Corresponds to "py-2" */
  border-radius: 0.25rem;
  /* Corresponds to "rounded-md" */
  font-weight: 500;
  /* Corresponds to "font-medium" */
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  /* Corresponds to "transition-colors" */
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  /* Default Tailwind transition */
  transition-duration: 150ms;
  /* Default Tailwind transition duration */
  text-align: center;
  /* Corresponds to "text-center" */
  display: inline-block;
  /* Corresponds to "inline-block" */
  background-color: white;
  /* Corresponds to "bg-white" */
  color: #0f172a;
  /* Corresponds to "text-cbrand-navy" (you might need to define this color) */
  border: 1px solid #0f172a;
  /* Corresponds to "border border-cbrand-navy" */
  text-decoration: none;

}

.button-secondary:hover {
  background-color: #f9f9f9;
  /* Corresponds to "hover:bg-gray-50" */
  color: #2563eb;
  /* Corresponds to "hover:text-cbrand-blue" */
}

/* Styles for the <section> element */
.cards-section {
  padding-top: 2rem;
  /* Corresponds to "py-16" (Tailwind's default scale) */
  padding-bottom: 2rem;
  /* Corresponds to "py-16" */
  margin-top: 2rem;
  /* Corresponds to "scroll-mt-24" (margin to account for fixed header on scroll) */
  background-color: #f9fafb;
  /* Corresponds to "bg-gray-50" */
}

@media (min-width: 768px) {

  /* Corresponds to "md:" breakpoint */
  .cards-section {
    padding-top: 2rem;
    /* Corresponds to "md:py-24" */
    padding-bottom: 2rem;
    /* Corresponds to "md:py-24" */
  }
}

/* Styles for the container <div> */
.cards-container {
  max-width: 80rem;
  /* Corresponds to "max-w-7xl" (Tailwind's default screen sizes) */
  margin-left: auto;
  /* Corresponds to "mx-auto" */
  margin-right: auto;
  /* Corresponds to "mx-auto" */
  padding-left: 1rem;
  /* Corresponds to "px-4" */
  padding-right: 1rem;
  /* Corresponds to "px-4" */
}

@media (min-width: 640px) {

  /* Corresponds to "sm:" breakpoint */
  .cards-container {
    padding-left: 1.5rem;
    /* Corresponds to "sm:px-6" */
    padding-right: 1.5rem;
    /* Corresponds to "sm:px-6" */
  }
}

@media (min-width: 1024px) {

  /* Corresponds to "lg:" breakpoint */
  .cards-container {
    padding-left: 2rem;
    /* Corresponds to "lg:px-8" */
    padding-right: 2rem;
    /* Corresponds to "lg:px-8" */
  }
}

/* Styles for the <h2> heading */
.cards-title-h2 {
  font-size: 2rem;
  /* Corresponds to "text-2xl" */
  font-weight: bold;
  /* Corresponds to "font-bold" */
  margin-bottom: 1rem;
  /* Corresponds to "mb-4" */
  color: #0f172a;
  /* Corresponds to "text-cbrand-navy" (replace with your actual color value) */
}

@media (min-width: 768px) {

  /* Corresponds to "md:" breakpoint */
  .cards-title-h2 {
    font-size: 2rem;
    /* Corresponds to "md:text-3xl" */
  }
}


/* Styles for the grid container */
.cards-grid {
  display: grid;
  /* Corresponds to "grid" */
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  /* Adjust min-width as needed */
  /* Corresponds to "grid-cols-1" */
  gap: 2rem;
  /* Corresponds to "gap-6" (Tailwind's default scale) */
}

@media (min-width: 768px) {

  /* Corresponds to "md:" breakpoint */
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* Force exactly 2 columns on medium screens and up */
    /* Corresponds to "md:grid-cols-3" */
    gap: 2rem;

  }
}

/* Styles for each service card */
.cards-card {
  background-color: white;
  /* Corresponds to "bg-white" */
  padding: 1.5rem;
  /* Corresponds to "p-6" */
  border-radius: 0.5rem;
  /* Corresponds to "rounded-lg" */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  /* Corresponds to "shadow-sm" */
  border: 1px solid #e5e7eb;
  /* Corresponds to "border border-gray-200" */
  transition-property: box-shadow;
  /* Corresponds to "transition-shadow" */
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  /* Default Tailwind transition */
  transition-duration: 150ms;
  /* Default Tailwind transition duration */
}

.cards-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  /* Corresponds to "hover:shadow-md" */
}

/* Styles for the icon container */
.cards-icon-container {
  width: 3rem;
  /* Corresponds to "w-12" */
  height: 3rem;
  /* Corresponds to "h-12" */
  background-color: rgba(16, 185, 129, 0.1);
  /* Corresponds to "bg-cbrand-green/10" (replace with your actual color value) */
  border-radius: 9999px;
  /* Corresponds to "rounded-full" */
  display: flex;
  /* Corresponds to "flex" */
  align-items: center;
  /* Corresponds to "items-center" */
  justify-content: center;
  /* Corresponds to "justify-center" */
  margin-bottom: 1rem;
  /* Corresponds to "mb-4" */
}

/* Styles for the SVG icon */
.cards-icon {
  width: 1.5rem;
  /* Corresponds to "w-6" */
  height: 1.5rem;
  /* Corresponds to "h-6" */
  fill: none;
  /* Corresponds to "fill-none" */
  stroke: currentColor;
  /* Corresponds to "stroke-currentColor" */
  stroke-width: 2px;
  /* Corresponds to "stroke-width-2" */
  stroke-linecap: round;
  /* Corresponds to "stroke-linecap-round" */
  stroke-linejoin: round;
  /* Corresponds to "stroke-linejoin-round" */
  color: #10b981;
  /* Corresponds to "text-cbrand-green" (replace with your actual color value) */
}

/* Styles for the <h3> heading */
.cards-title {
  font-weight: bold;
  /* Corresponds to "font-bold" */
  font-size: 1rem;
  /* Corresponds to "text-lg" */
  margin-bottom: 0.5rem;
  /* Corresponds to "mb-2" */
}

/* Styles for the <p> description */
.cards-description {
  margin-bottom: 1rem;
  /* Corresponds to "mb-4" */
}

/* Styles for the "Learn More" link (<a> element) */
.cards-link {
  border-radius: 0.25rem;
  /* Corresponds to "rounded-md" */
  font-weight: 500;
  /* Corresponds to "font-medium" */
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  /* Corresponds to "transition-colors" */
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  /* Default Tailwind transition */
  transition-duration: 150ms;
  /* Default Tailwind transition duration */
  text-align: center;
  /* Corresponds to "text-center" */
  display: inline-block;
  /* Corresponds to "inline-block" */
  text-decoration: underline;
  /* Corresponds to "underline" */
  color: #10b981;
  /* Corresponds to "text-cbrand-green" (replace with your actual color value) */
  background-color: transparent;
  /* Corresponds to "bg-transparent" */
  padding: 0;
  /* Corresponds to "p-0" */
}

.cards-link:hover {
  color: #2563eb;
  /* Corresponds to "hover:text-cbrand-blue" (replace with your actual color value) */
}


/* Styles for the "View All Solutions" container */
.view-all-solutions {
  margin-top: 2rem;
  /* Corresponds to "mt-8" */
  text-align: center;
  /* Corresponds to "text-center" */
}

/* Styles for the <section> element */
.list-section {
  padding-top: 1rem;
  /* Corresponds to "py-16" */
  padding-bottom: 1rem;
  /* Corresponds to "py-16" */
  margin-top: 1rem;
  /* Corresponds to "scroll-mt-24" */
  background-color: white;
  /* Corresponds to "bg-white" */
  border-top: 1px solid #e5e7eb;
  /* Corresponds to "border-t border-gray-200" */
}

@media (min-width: 768px) {

  /* Corresponds to "md:" breakpoint */
  .list-section {
    padding-top: 1rem;
    /* Corresponds to "md:py-24" */
    padding-bottom: 1rem;
    /* Corresponds to "md:py-24" */
  }
}

/* Styles for the container <div> */
.list-container {
  max-width: none;
  /* Corresponds to "max-w-7xl" */
  margin-left: auto;
  /* Corresponds to "mx-auto" */
  margin-right: auto;
  /* Corresponds to "mx-auto" */
  padding-left: 1rem;
  /* Corresponds to "px-4" */
  padding-right: 1rem;
  /* Corresponds to "px-4" */
}

@media (min-width: 640px) {

  /* Corresponds to "sm:" breakpoint */
  .list-container {
    padding-left: 1.5rem;
    /* Corresponds to "sm:px-6" */
    padding-right: 1.5rem;
    /* Corresponds to "sm:px-6" */
  }
}

@media (min-width: 1024px) {

  /* Corresponds to "lg:" breakpoint */
  .list-container {
    padding-left: 2rem;
    /* Corresponds to "lg:px-8" */
    padding-right: 2rem;
    /* Corresponds to "lg:px-8" */
  }
}

/* Styles for the <h2> heading */
.list-title {
  font-size: 1.5rem;
  /* Corresponds to "text-2xl" */
  font-weight: bold;
  /* Corresponds to "font-bold" */
  margin-bottom: 1rem;
  /* Corresponds to "mb-4" */
  color: #0f172a;
  /* Corresponds to "text-cbrand-navy" (replace with your actual color value) */
}

@media (min-width: 768px) {

  /* Corresponds to "md:" breakpoint */
  .list-title {
    font-size: 1.875rem;
    /* Corresponds to "md:text-3xl" */
  }
}

/* Styles for the prose content */
.list-content {
  /* Corresponds to "prose max-w-none" - prose has default typography styles */
  max-width: none;
  /* Overrides default max-width of prose */
       padding-bottom: 1rem;

}

/* Styles for the <p> elements within prose */
.list-paragraph {
  font-size: 1rem;
  /* Corresponds to "text-lg" */
  margin-bottom: 1rem;
  /* Corresponds to "mb-6" */
     line-height: 1.2;
}

/* Styles for the <h2> subheading */
.list-subtitle {
  font-size: 1rem;
  /* Corresponds to "text-2xl" */
  font-weight: bold;
  /* Corresponds to "font-bold" */
  margin-bottom: 1rem;
  /* Corresponds to "mb-4" */
  color: #0f172a;
  /* Corresponds to "text-cbrand-navy" (replace with your actual color value) */
}

@media (min-width: 768px) {

  /* Corresponds to "md:" breakpoint */
  .list-subtitle {
    font-size: 1.875rem;
    /* Corresponds to "md:text-3xl" */
  }
}

/* Styles for the button container */
.list-button-container {
  margin-top: 2rem;
  /* Corresponds to "mt-8" */
}


/* Styles for the button container */
.why-choose-button-container {
  margin-top: 2rem;
  /* Corresponds to "mt-8" */
  text-align: center;
  /* Corresponds to "text-center" */
}


/* Styles for the main footer */
.main-footer {
  background-color: #0f172a;
  /* Corresponds to "bg-cbrand-navy" (replace with your actual color value) */
  color: white;
  /* Corresponds to "text-white" */
  padding-top: 3rem;
  /* Corresponds to "py-12" */
  padding-bottom: 3rem;
  /* Corresponds to "py-12" */
}

.footer-container {
  max-width: 80rem;
  /* Corresponds to "max-w-7xl" */
  margin-left: auto;
  /* Corresponds to "mx-auto" */
  margin-right: auto;
  /* Corresponds to "mx-auto" */
  padding-left: 1rem;
  /* Corresponds to "px-4" */
  padding-right: 1rem;
  /* Corresponds to "px-4" */
}

@media (min-width: 640px) {

  /* Corresponds to "sm:" breakpoint */
  .footer-container {
    padding-left: 1.5rem;
    /* Corresponds to "sm:px-6" */
    padding-right: 1.5rem;
    /* Corresponds to "sm:px-6" */
  }
}

@media (min-width: 1024px) {

  /* Corresponds to "lg:" breakpoint */
  .footer-container {
    padding-left: 2rem;
    /* Corresponds to "lg:px-8" */
    padding-right: 2rem;
    /* Corresponds to "lg:px-8" */
  }
}

/* Styles for the grid layout */
.footer-grid {
  display: grid;
  /* Corresponds to "grid" */
  grid-template-columns: repeat(1, minmax(0, 1fr));
  /* Corresponds to "grid-cols-1" */
  gap: 2rem;
  /* Corresponds to "gap-8" */
}

@media (min-width: 768px) {

  /* Corresponds to "md:" breakpoint */
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    /* Corresponds to "md:grid-cols-4" */
  }
}

/* Styles for the company info section */
.footer-company-info {
  grid-column: 1 / span 1;
  /* Corresponds to "col-span-1" */
}

@media (min-width: 768px) {

  /* Corresponds to "md:" breakpoint */
  .footer-company-info {
    grid-column: 1 / span 2;
    /* Corresponds to "md:col-span-2" */
  }
}

.footer-logo {
  height: 9rem;
  /* Corresponds to "h-36" */
  width: auto;
  /* Corresponds to "w-auto" */
  margin-bottom: 1rem;
  /* Corresponds to "mb-4" */
  background-color: white;
  /* Corresponds to "bg-white" */
  padding: 0.5rem;
  /* Corresponds to "p-2" */
  border-radius: 0.25rem;
  /* Corresponds to "rounded" */
}

.footer-company-description {
  color: #d1d5db;
  /* Corresponds to "text-gray-300" */
  margin-top: 0.5rem;
  /* Corresponds to "mt-2" */
  font-size: 1rem;
  /* No direct Tailwind class, using default */
}

/* Styles for the quick links and contact sections */
.footer-heading {
  font-size: 1.125rem;
  /* Corresponds to "text-lg" */
  font-weight: 600;
  /* Corresponds to "font-semibold" */
  margin-bottom: 1rem;
  /* Corresponds to "mb-4" */
}

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

.footer-list li {
  margin-bottom: 0.5rem;
  /* Corresponds to "space-y-2" on the ul */
}

.footer-link {
  color: #d1d5db;
  /* Corresponds to "text-gray-300" */
  transition-property: color;
  /* Corresponds to "transition-colors" */
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  /* Default Tailwind transition */
  transition-duration: 150ms;
  /* Default Tailwind transition duration */
}

.footer-link:hover {
  color: #86efac;
  /* Corresponds to "hover:text-cbrand-green" (replace with your actual color value) */
}

/* Styles for the contact button */
.footer-contact-button {
  background-color: #10b981;
  /* Corresponds to "bg-cbrand-green" (replace with your actual color value) */
  color: white;
  /* Corresponds to "text-white" */
  padding-left: 1rem;
  /* Corresponds to "px-4" */
  padding-right: 1rem;
  /* Corresponds to "px-4" */
  padding-top: 0.5rem;
  /* Corresponds to "py-2" */
  padding-bottom: 0.5rem;
  /* Corresponds to "py-2" */
  border-radius: 0.25rem;
  /* Corresponds to "rounded-md" */
  font-weight: 500;
  /* Corresponds to "font-medium" */
  display: inline-block;
  /* Corresponds to "inline-block" */
  margin-top: 0.5rem;
  /* Corresponds to "mt-2" */
  transition-property: background-color;
  /* Corresponds to "transition-colors" */
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  /* Default Tailwind transition */
  transition-duration: 150ms;
  /* Default Tailwind transition duration */
}

.footer-contact-button:hover {
  background-color: #2563eb;
  /* Corresponds to "hover:bg-cbrand-blue" (replace with your actual color value) */
}

/* Styles for the footer bottom section */
.footer-bottom {
  border-top: 1px solid #4a5568;
  /* Corresponds to "border-t border-gray-700" */
  margin-top: 2rem;
  /* Corresponds to "mt-8" */
  padding-top: 2rem;
  /* Corresponds to */
}

/* Styles for the main container (if needed for overall layout) */
.competencies-container {
  /* Add any container-level styling here */
}

/* Styles for the background card */
.competencies-card {
  background-image: linear-gradient(to right, #10b981, #2563eb); /* Converted from bg-gradient-to-r from-cbrand-green to-cbrand-blue */
  padding: 2rem; /* Converted from p-8 */
  color: white; /* Converted from text-white */
  border-radius: 0.5rem; /* Converted from rounded-lg */
}

/* Styles for the heading */
.competencies-title {
  font-weight: bold; /* Converted from font-bold */
  font-size: 1.25rem; /* Converted from text-xl */
  margin-bottom: 1rem; /* Converted from mb-4 */
}

/* Styles for the unordered list */
.competencies-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* Converted from space-y-3 */
}

/* Styles for each list item */
.competencies-list-item {
  display: flex; /* Converted from flex */
  align-items: flex-start; /* Converted from items-start */
}

/* Styles for the checkmark container */
.competencies-checkmark {
  height: 1.5rem; /* Converted from h-6 */
  width: 1.5rem; /* Converted from w-6 */
  border-radius: 9999px; /* Converted from rounded-full */
  background-color: white; /* Converted from bg-white */
  color: #2563eb; /* Converted from text-cbrand-blue */
  font-weight: bold; /* Converted from font-bold */
  display: flex; /* Converted from flex */
  align-items: center; /* Converted from items-center */
  justify-content: center; /* Converted from justify-center */
  margin-right: 0.75rem; /* Converted from mr-3 */
  flex-shrink: 0; /* Converted from flex-shrink-0 */
}

/* Styles for the text within the list item */
.competencies-list-item span {
  /* Add any specific styling for the text if needed */
}

/* Standardized Button Styles */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.3rem;
    margin-right: 5px; /* Added for spacing */
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.btn-primary {
    color: #fff;
    background-color: #4A90E2;
    border-color: #4A90E2;
}

.btn-primary:hover {
    color: #fff;
    background-color: #357ABD;
    border-color: #357ABD;
}

.btn-secondary {
    color: #fff;
    background-color: #BDBDBD;
    border-color: #BDBDBD;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #A9A9A9;
    border-color: #A9A9A9;
}

.btn-success {
    color: #fff;
    background-color: #7ED321;
    border-color: #7ED321;
}

.btn-success:hover {
    color: #fff;
    background-color: #6EBF1B;
    border-color: #6EBF1B;
}

.btn-danger {
    color: #fff;
    background-color: #E57373;
    border-color: #E57373;
}

.btn-danger:hover {
    color: #fff;
    background-color: #EF5350;
    border-color: #EF5350;
}

.btn-warning {
    color: #fff;
    background-color: #F5A623;
    border-color: #F5A623;
}

.btn-warning:hover {
    color: #fff;
    background-color: #D48F1E;
    border-color: #D48F1E;
}

.btn-info {
    color: #fff;
    background-color: #4A90E2;
    border-color: #4A90E2;
}

.btn-info:hover {
    color: #fff;
    background-color: #357ABD;
    border-color: #357ABD;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}
