* {
  padding: 0;
  margin: 0;
}
p {
  margin: 0;
}
:root {
  --innorax-primary: #ea8a7a;
  --innorax-secondary: #1e3756;
  --innorax-bg: #f7f7f7;
  --innorax-white: #ffffff;
  --innorax-black: #000000;
  --innorax-gray: #43474e;
  --innorax-light-gray: #e6e6e6;
}

.manrope {
  font-family: "Manrope", sans-serif;
}

.sticky-nav {
  top: 20px !important;
  z-index: 100;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #dcdcdc;
}
.login_btn_innorax {
  border: 1px solid #ea8a7a;
  color: #1e3756;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  padding: 8px 20px;
  letter-spacing: 0%;
}
.sign_btn_innorax {
  background-color: #ea8a7a;
  color: #1e3756;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  padding: 8px 20px;
  letter-spacing: 0%;
}
.innorax_logo {
  height: 30px;
}

.innorax_page {
  background-color: #f7f7f7;
  font-family: "Segoe UI", sans-serif;
}

.hero {
  width: 100%;
  background-image: url("./images/home_back.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  color: #1d3557;
  text-align: center;
}

.hero h1 span {
  color: #f08080;
}

.tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.tag {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.tag-red {
  background: #ffe5e5;
  color: #ff6b6b;
}

.tag-dark {
  background: #1d3557;
  color: #fff;
}

.card-wrapper {
  position: relative;
  height: 199px;
  margin: 35px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-img {
  position: absolute;
  width: 280px;
  border-radius: 12px;
  transition: 0.3s;
}

.img1 {
  left: 10%;
  /* transform: rotate(-10deg); */
  z-index: 1;
  /* border: 3px solid #ff6b6b; */
}

.img2 {
  left: 25%;
  transform: rotate(-5deg);
  z-index: 2;
}

.img3 {
  left: 45%;
  transform: rotate(5deg);
}

.img4 {
  left: 65%;
  transform: rotate(10deg);
  z-index: 4;
}

.hero-text {
  max-width: 600px;
  margin: 20px auto;
  color: #555;
  font-size: 14px;
  text-align: center;
}

.btn-custom {
  background: #ff6b6b;
  color: white;
  border-radius: 10px;
  padding: 3px 19px;
  border: none;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  font-size: 15px;
}

.btn-custom:hover {
  background: #ff4d4d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .card-wrapper {
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .card-img {
    position: static;
    transform: none;
    margin-bottom: 15px;
    width: 130px;
  }
}
@media (max-width: 527px) {
  .card-img {
    width: 80px;
  }
}

.human_ai_section {
  background-color: #ffffff;
}
.human_ai_section_container {
  width: 85%;
  margin: 0 auto;
}
.human_ai_img_container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 460px;
  background: #f4f2f2;
  position: relative;
}
.human_ai_title {
  font-size: 33px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--innorax-secondary);
}
.human_ai_desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  color: #43474e;
}
.human_ai_card {
  padding: 25px;
  position: absolute;
  bottom: 10px;
  right: -20px;
  background-color: #ffffff;
  border-radius: 10px;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.human_ai_card_title {
  font-size: 18px;
  font-weight: 600;
  color: var(--innorax-secondary);
}
.human_ai_card_desc {
  font-size: 14px;
  font-weight: 400;
  color: #43474e;
}
.human_ai_tick_text {
  font-size: 15px;
  font-weight: 600;
  color: var(--innorax-secondary);
}
@media (max-width: 768px) {
  .human_ai_section_container {
    width: 90%;
  }
  .human_ai_img_container {
    height: 300px;
    align-items: start;
  }
  .human_ai_title {
    font-size: 24px;
  }
  .human_ai_desc {
    font-size: 16px;
  }

  .human_ai_card {
    padding: 15px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: #ffffff;
    border-radius: 10px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
}

/* Engineered for Velocity */

.engineered_for_velocity_section {
  background-color: #e6e6e6;
}

.section_title {
  font-size: 33px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--innorax-secondary);
  text-align: center;
}
.section_desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  color: #43474e;
  text-align: center;
}

.engineered_card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  /* border: 1px solid #b4b4b4; */
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.engineered_card img {
  width: 35px;
  height: 35px;
}
.no_risk_text {
  color: var(--innorax-primary);
}
.engineered_card_heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--innorax-secondary);
}
.engineered_card_desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--innorax-gray);
}

/*=========================== hour_sprint_section  start ================= */
.hour_sprint_section {
  background-color: rgba(30, 55, 86, 1);
}
.section_title_white {
  font-size: 33px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--innorax-white);
  text-align: center;
}
.section_desc_white {
  text-align: center;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  color: #909dab;
}
.hour_sprint_card {
  background: linear-gradient(145deg, #5c6f85, #4a5d73);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.hour_sprint_number {
  background: #ff8a75;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--innorax-white);
}
.hour_sprint_title {
  font-size: 18px;
  font-weight: 600;
  color: var(--innorax-white);
}
.hour_sprint_desc {
  font-size: 16px;
  font-weight: 400;
  color: #d1d5db;
}
@media (max-width: 768px) {
  .hour_sprint_card {
    padding: 15px;
    border-radius: 10px;
  }
  .hour_sprint_number {
    width: 35px;
    height: 35px;
    font-size: 14px;
    border-radius: 5px;
  }
  .section_title_white {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .hour_sprint_card {
    padding: 15px;
    border-radius: 10px;
  }
  .hour_sprint_number {
    width: 35px;
    height: 35px;
    font-size: 14px;
    border-radius: 5px;
  }
  .section_title_white {
    font-size: 24px;
  }
  .section_desc_white {
    font-size: 14px;
  }
}

/*=========================== hour_sprint_section  end ================= */

/*=========================== precision_services_section  start ================= */
.precision_services_section {
  background-color: var(--innorax-light-gray);
}

.precision_services_card {
  background: var(--innorax-white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  height: 100%;
}
.precision_services_card_img {
  width: 25px;
  height: 25px;
}
.precision_services_card_heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--innorax-secondary);
}
.precision_services_card_desc {
  width: 51%;
  font-size: 16px;
  font-weight: 400;
  color: var(--innorax-gray);
}
.precision_services_bg_dark {
  background-color: #1e3756 !important;
}
.precision_services_card_heading_white {
  font-size: 18px;
  font-weight: 600;
  color: var(--innorax-white);
}
.precision_services_card_desc_white {
  font-size: 16px;
  font-weight: 400;
  color: #d1d5db;
}
.learn_more_btn {
  color: var(--innorax-gray);
  font-weight: 600;
  text-decoration: none;
}
.learn_more_btn img {
  width: 15px;
  height: 15px;
}
.learn_more_btn_white {
  color: var(--innorax-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.precision_services_card_second {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 10px;
}
.tick_cart {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
}
.precision_services_ticket_card_desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--innorax-gray);
}
.status-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.status-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #243b53;
  margin-bottom: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #28c76f;
  border-radius: 50%;
}

.skeleton {
  height: 12px;
  background: #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
}

.skeleton.small {
  width: 70%;
}

.ticket-text {
  margin-top: 15px;
  color: #ff8a75;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 768px) {
  .precision_services_card {
    padding: 15px;
    border-radius: 10px;
  }

  .precision_services_card_desc {
    width: 100%;
  }

  .learn_more_btn {
    font-size: 14px;
  }
  .learn_more_btn_white {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .precision_services_card {
    padding: 15px;
    border-radius: 10px;
  }
}

/*=========================== precision_services_section  end ================= */

/* ================== Expert Architects On Standby start ==================  */
.architects_title {
  font-size: 33px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--innorax-secondary);
}
.architects_desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;
  color: #43474e;
}
.architects_tick_text {
  font-size: 15px;
  font-weight: 600;
  color: var(--innorax-secondary);
}
@media (max-width: 768px) {
  .architects_title {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .architects_title {
    font-size: 24px;
  }
}

.architects_dashboard_card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eef2f6;
}
.arch_dash_header {
  background-color: #001a2e;
  border-bottom: 2px solid #00233d;
}
.arch_avatar img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}
.arch_name {
  color: white;
  font-size: 16px;
  font-weight: 600;
}
.online_dot {
  width: 8px;
  height: 8px;
  background-color: #00d084;
  border-radius: 50%;
  display: inline-block;
}
.online_status {
  font-size: 12px;
}
.arch_dash_body {
  min-height: 250px;
  background-color: #f8fafb;
}
.msg_bubble {
  max-width: 80%;
  padding: 12px 18px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 4px;
  display: inline-block;
}
.left_bubble {
  background-color: #eef2f6;
  color: #333;
  border-radius: 4px 18px 18px 18px;
}
.right_bubble {
  background-color: #001a2e;
  color: #fff;
  border-radius: 18px 4px 18px 18px;
}
.msg_time {
  display: block;
  font-size: 11px;
  color: #999;
}
.arch_dash_footer input {
  padding: 12px 18px;
  font-size: 14px;
  border-radius: 8px;
}
.send-icon-container {
  width: 60px;
  height: 40px;
  background-color: #001a2e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.send-icon {
  width: 19px;
  height: 16px;
}

.floating_ticket_tag {
  background-color: #ff8a75;
  color: white;
  border-radius: 8px;
  position: absolute;
  bottom: -10px;
  right: -20px;
  box-shadow: 0 10px 30px rgba(255, 138, 117, 0.3);
  z-index: 10;
}
.ticket_icon_box {
  background-color: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ticket_icon_box img {
  width: 22px;
  height: 22px;
}
.ticket_id {
  font-size: 12px;
  color: rgba(120, 49, 38, 1);
  font-weight: 600;
}
.ticket_status {
  font-size: 10px;
  color: rgba(120, 49, 38, 1);
}

@media (max-width: 768px) {
  .floating_ticket_tag {
    position: static;
    margin-top: 20px;
    bottom: initial;
    right: initial;
  }
}
/* ================== Frequently Asked Questions Start ================== */
.faq_section {
  background-color: #f7f7f7;
}

.faq_title {
  font-size: 36px;
  font-weight: 700;
  color: #1e3756;
}

.faq_subtitle {
  font-size: 16px;
  color: #43474e;
}

.faq_team_img {
  border-radius: 12px;
  width: 100%;
}

.faq_item {
  background-color: white;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: 0.3s;
}

.faq_item:hover {
  border-color: #ea8a7a;
}

.faq_question {
  font-size: 18px;
  font-weight: 500;
  color: #1e3756;
}
.faq_plus_icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(30, 55, 86, 1);
}
.faq_plus_icon img {
  width: 14px;
  height: 14px;
}

/* ================== CTA Section Start ================== */
.cta_card {
  background-color: #1e3756;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  /* Simple wavy pattern mock-up using CSS radial-gradient */
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 40%
    );
  width: 85%;
  margin: 0 auto;
}

.cta_title {
  font-size: 40px;
  font-weight: 700;
}

.cta_desc {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.btn_get_started {
  background-color: #ea8a7a;
  font-weight: 600;
  border-radius: 8px;
  color: rgba(30, 55, 86, 1);
  transition: 0.3s;
}

.btn_get_started:hover {
  background-color: #d17869;
  color: rgba(30, 55, 86, 1);
}

.btn_book_consultation {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
}

.btn_book_consultation:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

@media (max-width: 768px) {
  .cta_title {
    font-size: 28px;
  }
  .cta_desc {
    font-size: 14px;
  }
  .cta_card {
    width: 100%;
  }
}

@media (max-width: 476px) {
  .btn_get_started {
    font-size: 14px;
  }
  .btn_book_consultation {
    font-size: 14px;
  }
}
/* ================== Footer Section Start ================== */
footer {
  background-color: white;
  border-top: 1px solid #eef2f6;
}

.footer_head {
  font-size: 18px;
  color: #1e3756;
}

.footer_desc {
  font-size: 15px;
  max-width: 320px;
  color: rgba(117, 117, 117, 1);
  line-height: 1.6;
}

.footer_links li a {
  text-decoration: none;
  font-size: 15px;
  color: rgba(0, 0, 0, 1);
  opacity: 0.8;
  transition: 0.3s;
}

.footer_links li a:hover {
  opacity: 1;
  color: #ea8a7a;
}

.footer_social_icon {
  width: 32px;
  height: 32px;
}
.footer_divider {
  height: 1px;
  background-color: #1e3756;
  opacity: 0.2;
}

.footer_copyright {
  font-size: 14px;
  color: #43474e;
}

@media (max-width: 768px) {
  .footer_head {
    margin-bottom: 1rem !important;
  }
  .footer_links {
    margin-bottom: 2rem !important;
  }
}
/* ================== Footer Section End ================== */
