@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");

:root {
  --primary: #1e3a8a;
  --primary-dark: #1e40af;
  --primary-light: #dbeafe;
  --accent: #3b82f6;
  --accent-dark: #2563eb;
  --white: #ffffff;
  --black: #1d1d1d;
  --dark-1: #2d2d2d;
  --dark-2: #4d4d4d;
  --dark-3: #6d6d6d;
  --gray-4: #e0e0e0;
  --light-1: #efefef;
  --light-2: #f5f5f5;
  --light-3: #fafafa;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--black);
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

.btn {
  font-weight: bold;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

img {
  width: fit-content;
}

.primary-btn {
  background: var(--primary);
  color: var(--white);
}

.primary-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.text-primary {
  color: var(--primary) !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.primary-btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.navbar-area.navbar-nine {
  background: rgb(127, 170, 240);
  padding: 15px 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar-area.navbar-nine .navbar-brand {
  font-size: 24px;
  font-weight: 700;
  /* color: var(--white); */
}

.navbar-area.navbar-nine .navbar-nav .nav-item a {
  /* color: var(--white); */
  padding: 10px 16px;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.navbar-area.navbar-nine .navbar-nav .nav-item a:hover,
.navbar-area.navbar-nine .navbar-nav .nav-item a.active {
  opacity: 1;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  display: block;
  transition: all 0.3s ease;
}

.header-eight {
  padding: 180px 0 100px 0;
  background-color: var(--primary-dark) 100%;
  /* linear-gradient(
    135deg,
    var(--primary) 0%,
  ); */
  background-image: url("assets/images/header/business-innovation.avif");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

main {
  padding-top: 110px;
}

.row {
  /* background: #1d1d1d43; */
  /* gap: 1em */
}


.header-eight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  backdrop-filter: blur(5px);
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.header-content h1 {
  font-weight: 700;
  color: var(--white);
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.header-content p {
  color: var(--white);
  opacity: 0.9;
  font-size: 1.15rem;
  margin-bottom: 30px;
}

.header-content .button {
  margin-top: 30px;
}

#brand_logo {
  filter: brightness(0) invert(1);
}

.dropdown-menu {
  background-color: rgb(127,170,240);
}
.section-title-five {
  text-align: center;
  max-width: 650px;
  margin: auto;
  margin-bottom: 50px;
}

section {
  padding: 30px 0;
}

.section-title-five h6 {
  font-weight: 600;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 30px;
  padding: 8px 30px;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title-five h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-five {
  background-color: var(--light-3);
  padding: 100px 0;
}

.about-five-content .small-title {
  color: var(--primary);
  font-weight: 600;
  position: relative;
  padding-left: 30px;
}

.about-five-content .small-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  background-color: var(--primary);
  height: 2px;
  width: 20px;
  margin-top: -1px;
}

.about-five-content .main-title {
  margin-top: 20px;
  font-size: 2rem;
}

.about-five-content .stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
}

.stat-item p {
  color: var(--dark-3);
  margin-top: 10px;
}

/* .services-eight {
  padding: 100px 0;
} */

.single-services {
  padding: 40px 30px;
  border: 1px solid var(--light-1);
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.single-services:hover {
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
  transform: translateY(-5px);
}

.single-services:hover .service-icon {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.service-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin-bottom: 25px;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 40px;
  transition: all 0.3s ease;
}

.service-content h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.process-section {
  padding: 50px 0;
  background: var(--light-3);
}

.process-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  border: 1px solid var(--gray-4);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.process-card:hover {
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.latest-news-area {
  padding: 100px 0;
}

.single-news {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.single-news:hover {
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
  transform: translateY(-5px);
}

.single-news .image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.single-news .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.single-news:hover .image img {
  transform: scale(1.1);
}

.single-news .content-body {
  padding: 30px;
}

.single-news .tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.tech-badge {
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.tech-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-card i {
  font-size: 40px;
  transition: all 0.3s ease;
}

.tech-card span {
  font-weight: 600;
  font-size: 14px;
}

.tech-card:hover {
  color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-section {
  padding: 100px 0;
  background: var(--light-3);
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  height: 100%;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
  color: #fbbf24;
  margin-bottom: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.author-info {
  margin-left: 15px;
}

.author-info h5 {
  font-size: 16px;
  margin-bottom: 5px;
}

.author-info p {
  color: var(--dark-3);
  font-size: 14px;
  margin: 0;
}

.brand-area {
  padding: 80px 0;
}

.clients-logos .single-image {
  display: inline-block;
  margin: 13px 20px;
  background: var(--white);
  padding: 20px 35px;
  border-radius: 8px;
  border: 1px solid var(--gray-4);
  transition: all 0.3s ease;
}

.clients-logos .single-image:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.contact-section {
  padding: 100px 0;
  background: var(--light-3);
}

.contact-item {
  display: flex;
  border: 1px solid var(--gray-4);
  border-radius: 10px;
  background: var(--white);
  margin-bottom: 30px;
  padding: 25px 30px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  box-shadow: 0 5px 20px rgba(30, 58, 138, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact-content {
  margin-left: 20px;
}

.contact-content h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.footer-eleven {
  padding: 80px 0 30px;
  background: var(--primary);
  color: var(--white);
}

.footer-eleven h5 {
  color: var(--white);
  margin-bottom: 25px;
}

.footer-eleven p,
.footer-eleven a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-eleven a:hover {
  color: var(--white);
}

.footer-eleven .f-link li {
  margin-bottom: 12px;
}

.footer-widget img {
  margin-bottom: 1em;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--white);
  color: var(--primary);
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .header-content h1 {
    font-size: 2rem;
  }
  .navbar-area.navbar-nine .navbar-collapse {
    /* background: var(--primary); */
    padding: 20px;
    margin-top: 15px;
    border-radius: 5px;
  }
  .row > * {
    padding: 1em;
  }
}

/* Quote Questionnaire Styles */
.quote-wizard-card {
  border-color: var(--gray-4) !important;
  transition: all 0.3s ease;
}

.progress-bar {
  background-color: var(--primary);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-step {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.option-card {
  padding: 20px;
  border: 2px solid var(--gray-4);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.option-card:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.option-card.selected {
  border-color: var(--primary);
  background-color: var(--primary-light);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
}

.option-card.selected::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.option-card i {
  font-size: 24px;
  color: var(--primary);
}

.option-card span {
  font-weight: 500;
  font-size: 15px;
}

.quote-text-input {
  /* min-height: 150px; */
  border-radius: 12px;
  padding: 15px;
  border: 2px solid var(--gray-4);
  transition: border-color 0.3s ease;
}

.quote-text-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
  outline: none;
}

.quote-navigation .btn {
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.question-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}

.question-subtitle {
  color: var(--dark-3);
  margin-bottom: 30px;
}

#quote-steps-container {
  min-height: 300px;
}

.skip-container .btn-link {
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 10;
}

.skip-container .btn-link:hover {
  color: var(--primary) !important;
  transform: translateX(5px);
}

.skip-hint {
  font-size: 0.75rem;
  color: var(--dark-3);
  margin-top: 5px;
  font-style: italic;
}
