/* 🎨 Color Palette */
:root {
  --primary-blue: #2F3A9F;
  --teal-accent: #1BA39C;
  --light-bg: #F9F9F9;
  --white: #ffffff;
  --light-teal: #E6FAF9;
  --text-color: #333333;
}

/* 🔤 Typography */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-color);
  background-color: var(--light-bg);
  margin: 0;
  padding: 0;
}

.light-bg {
  background-color: var(--light-bg);
}

h1,
.feature-heading,
.why-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 0.5em;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5em;
}

p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* 🧩 Buttons */
.button,
.btn-primary {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  text-transform: capitalize;
  background-color: var(--teal-accent);
  color: var(--white);
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
  margin-top: 30px;
}

.button:hover,
.btn-primary:hover {
  background-color: #16837C;
}

/* 🏷️ Badges */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  background-color: var(--primary-blue);
}

.badge.outlined {
  background-color: transparent;
  border: 1px solid var(--teal-accent);
  color: var(--teal-accent);
}

/* 🗂️ Cards */
.card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin: 20px 0;
}

/* 🎯 Icons */
.icon {
  fill: var(--primary-blue);
  width: 24px;
  height: 24px;
}

.icon.teal {
  fill: var(--teal-accent);
}

.logo-top {
  max-height: 50px;
}

/* 🧭 Navbar Styles for Bootstrap 5 */
.custom-navbar {
  background-color: var(--light-bg);
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 16px;
  padding: 0.5rem 1rem;
}

.custom-navbar .navbar-brand {
  color: var(--teal-accent);
  font-weight: bold;
  font-size: 16px;
}

.custom-navbar .nav-link {
  color: var(--text-color);
  font-weight: bold;
  font-size: 16px;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.custom-navbar .nav-link.active,
.custom-navbar .nav-link:focus,
.custom-navbar .nav-link:hover {
  color: var(--primary-blue);
  background-color: transparent;
}

/* Center navbar menu */
@media (min-width: 992px) {
  .navbar-nav {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Hamburger Button */
.navbar-toggler {
  border: none;
  outline: none;
}

/* Sections */
.emp-text {
  font-size: 36px;
  font-weight: bold;
}

.secondary-text {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
}

.anchor-text {
  margin-top: 20px;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 18px;
  color: var(--primary-blue);
  font-style: italic;
}

.introduction-section {
  margin-bottom: 40px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

/* Features */
.icon-circle {
  margin-left:0;
  width: 60px;
  height: 60px;
  background-color: var(--teal-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-top: 0px;
}

.icon-circle i {
  color: #ffffff;
}

.feature-box {
  padding: 40px 20px 20px;
  text-align: center;
  background-color: var(--light-teal);
  min-height: 250px;
  
}

.feature-box h5 {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--primary-blue);
  font-weight: bold;
  margin-top: 50px;
}

.feature-box p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

.feature-heading,
.why-heading {
  color: var(--text-color);
  text-align: center;
  margin-bottom: 70px;
}

.why-heading {
  margin-top: 40px;
  color: var(--primary-blue);
}

.feature-section,
.why-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.why-points {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  margin: 10px 0;
  color: var(--text-color);
  font-weight: 500;
  text-align: left;
}

.separator {
  width: 100%;
  height: 1px;
  background-color: var(--light-bg);
  position: relative;
}

.separator::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  background: transparent;
}

/* About Page */
.about-heading {
  color: var(--text-color);
}

.about-container section {
  margin: 40px 0;
}

.quote {
  color: var(--teal-accent);
  font-weight: bold;
}

.about-logo {
  width: 100%;
  text-align: center;
  float: inline-end;
  margin-bottom: 20px;
}

.about-logo-img {
  max-height: 80px;
}

/* Company Cards */
.company-card {
  background-color: var(--light-teal);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
}

.logo-section {
  width: 20%;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-section {
  width: 80%;
  padding-left: 20px;
}

.company-logo {
  width: 70px;
  height: 70px;
  background-color: var(--teal-accent);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.claim-link {
  font-style: italic;
  font-size: 14px;
  text-align: right;
}

@media (max-width: 768px) {
  .logo-section,
  .content-section {
    width: 100%;
    padding-left: 0;
  }

  .claim-link {
    text-align: left;
    margin-top: 10px;
  }
}

.company-name {
  text-transform: uppercase;
  font-size: 22px;
  color: var(--primary-blue);
  font-weight: bold;
}

.company-summary,
.company-industry {
  font-size: 17px;
  margin: 10px 0;
}

.company-score {
  font-size: 24px;
  margin: 10px 0;
}

.company-name-raaido {
  color: var(--primary-blue);
  font-weight: bold;
}

/* Forms */
.form-slide {
  display: block;
  margin-bottom: 30px;
}

.image-half {
  background-size: cover;
  background-position: center;
  height: 100%;
}

.question-half {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--white);
  border-radius: 2px;
}

#feedbackForm h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.question-half h5 {
  text-align: left;
  margin-bottom: 20px;
}

.form-check {
  text-align: center;
  margin: 10px 0;
}

.form-check-input {
  display: none;
}

.form-check-label {
  display: inline-block;
  background-color: #e0e0e0;
  color: #000;
  padding: 10px 25px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 500;
  width: 100%;
  text-align: left;
}

.form-check-input:checked + .form-check-label {
  background-color: var(--primary-blue);
  color: white;
}

.qna-img {
  max-width: 80%;
  height: auto;
}

.company-fields-label {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  color: var(--primary-blue);
  margin-top: 20px;
  font-weight: lighter;
}

.company-fields-input {
  font-size: 18px;
  border: 1px solid var(--primary-blue);
  background-color: var(--light-bg);
  border-radius: 4px;
  color: var(--text-color);
  appearance: none;
}

.company-fields-input:focus {
  border-color: var(--teal-accent);
  box-shadow: none;
  outline: none;
}

.fa-check-circle {
  color: var(--teal-accent);
}
a,a:hover,a:active,a:visited
{
  text-decoration: none;

}
.claim-link a
{
  color: var(--primary-blue);
}