/* @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap"); */
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
@supports (-webkit-touch-callout: none) {
  * {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

:root {
/* Updated Brand Colors */
  --primary-color: #000000;
  --accent-color: #FFD700;

  /* Text Colors */
  --text-medium: #0A0A0A;
  --text-medium: #0A0A0A;
  --text-gray: #636363;
  --text-light: #FFFFFF;

  /* Background Colors */
  --bg-white: #FCFCFC;
  --bg-light: #F8F9FB;
  --bg-blue-light: #F2F2F2;
  --bg-soft-blue: #F2F2F2;
  --bg-dark: #000000;
  --btn-bg-dark: #021346;
  --btn-light-blue: #162960;
  --text-light-cancle-btn: #777777;
  --denger-color: #dc3545;

  /* Borders */
  --border-light: #E2E4E8;
  --border-gray: #E8E8E8;
  --border-color: #D9D9D9;
  --blue-border-light: #E8E8E8;
  --border-radius: 4px;
  --cancle-btn: #939292;
  --primary-btn-color: #0d6efd;
  --sucsses-btn-color: #198754;

  /* font family  */
  --font-family-Playfair-Display: 'Playfair Display';
  --font-family-Inter: Inter, sans-serif;
  /* Others */
  --shadow-soft: 0px 4px 16px rgba(0, 0, 0, 0.06);
} 
html {
    scrollbar-gutter: stable;
}
b,
strong{
  color: var(--text-medium);
}
body{
  /* font-family: var(--font-family-Playfair-Display);
  font-family: 'Playfair Display';
 */
  background-color: var(--bg-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* ============================================
   ONLY CSS - Animated Squares + Grid Background
   No HTML needed - Pure CSS Solution
   ============================================ */

body {
  background: var(--bg-white) !important;
  position: relative;
  overflow-x: hidden;
}

/* Grid Pattern Background - Gray Color */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(128, 128, 128, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 128, 128, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -1;
  pointer-events: none;
}

/* Animated Square Box 1 */
/* body::after {
  content: '';
  position: fixed;
  width: 80px;
  height: 80px;
  border: 1px solid var(--bg-soft-blue);
  left: 10%;
  bottom: -150px;
  animation: floatSquare1 25s linear infinite;
  z-index: -1;
  pointer-events: none;
} */

/* @keyframes floatSquare1 {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-1100px) rotate(720deg);
    opacity: 0;
  }
} */

/* Additional Squares using existing elements */
/* header::before {
  content: '';
  position: fixed;
  width: 60px;
  height: 60px;
  border: 1px solid var(--bg-soft-blue);
  left: 30%;
  bottom: -150px;
  animation: floatSquare2 22s linear infinite;
  animation-delay: 3s;
  z-index: -1;
  pointer-events: none;
} */

/* @keyframes floatSquare2 {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-1100px) rotate(-720deg);
    opacity: 0;
  }
} */

/* main::before {
  content: '';
  position: fixed;
  width: 70px;
  height: 70px;
  border: 1px solid var(--bg-soft-blue);
  left: 50%;
  bottom: -150px;
  animation: floatSquare3 20s linear infinite;
  animation-delay: 1s;
  z-index: 1;
  pointer-events: none;
} */

/* @keyframes floatSquare3 {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-1100px) rotate(540deg);
    opacity: 0;
  }
} */

/* section::before {
  content: '';
  position: fixed;
  width: 55px;
  height: 55px;
  border: 1px solid var(--bg-soft-blue);
  left: 70%;
  bottom: -150px;
  animation: floatSquare4 24s linear infinite;
  animation-delay: 5s;
  z-index: -1;
  pointer-events: none;
} */

/* @keyframes floatSquare4 {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-1100px) rotate(-540deg);
    opacity: 0;
  }
} */

footer::before {
  content: '';
  position: fixed;
  width: 90px;
  height: 90px;
/* background: var(--bg-soft-blue); */
  border: 1px solid var(--bg-soft-blue);
  left: 85%;
  bottom: -150px;
  animation: floatSquare5 26s linear infinite;
  animation-delay: 7s;
  z-index: -1;
  pointer-events: none;
}

@keyframes floatSquare5 {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-1100px) rotate(900deg);
    opacity: 0;
  }
}

/* Ensure content stays visible */
main,
section {
  position: relative;
  z-index: 0;
}
section{
  padding: 20px 0;
}
.page-content,
main,
section {
  overflow-x: clip;
  /* IMPORTANT: hidden nahi */
}
p{
  color: var(--text-gray);
  font-size: 16px;
}
p,
input,
button.btn,
.plan_list_item,
.blog_content,
.btn,
.blog_header span {
  font-family: var(--font-family-Inter);
  font-family: 'Inter';

}
* {
    /* touch-action: pan-y; */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
span{
  font-family: var(--font-family-Inter);  
  font-family: 'Inter';

}
.btn, .primary_btn{
  font-family: var(--font-family-Inter);
  font-family: 'Inter';

  /* background-color: var(--btn-bg-dark); */
  /* border-color: var(--btn-bg-dark) !important; */
}
.item_info_content label{
  color: var(--text-medium);
}
.payment_history_table_col_wrapper{
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.btn:hover{
  border-color: var(--btn-bg-dark) !important;
  /* background-color: var(--btn-bg-dark) !important; */
  background-color: transparent !important;
  color: var(--text-light) !important;
}
.payment_history_table_col_wrapper .btn-primary:hover{
  background-color: var(--primary-btn-color) !important;
  border-color: var(--primary-btn-color) !important;
}
.payment_history_table_col_wrapper .btn-success:hover{
background-color: var(--sucsses-btn-color) !important;
  border-color: var(--sucsses-btn-color) !important;
}
/* SVG ko by default white rakhne ke liye */
.attach_file #experienceBtn.btn svg path {
  fill: var(--text-light) !important;
}
.swal2-confirm.btn.btn-danger:hover{
  background-color: var(--denger-color) !important;
  border-color: var(--denger-color) !important;
}
/* Hover par SVG ko black karne ke liye */
.attach_file #experienceBtn.btn:hover svg path {
  fill: var(--text-medium);
}
 /* h1, h2, h3, h4, h5, h6, span, p, .process_info_icon{
  color: var(--text-medium);
} */
 h1, h2, h3, h4, h5, h6{
  font-family: var(--font-family-Playfair-Display);
  font-family: 'Playfair Display';

  color: var(--btn-bg-dark);
 }
 h1{
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
 }
 h2{
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
 }
 h3{
  font-size: 22px;
  /* line-height: 36px; */
 }
 h4{
  font-size: 20px;
 }
 h5{
  font-size: 18px;
 }
 @font-face {
   font-family: 'Playfair Display';
    src: url('/assets/fonts/Playfair-Display-bold.woff2') format('woff2');
   font-weight: 700;
   font-style: normal;
   font-display: swap;
 }

 @font-face {
   font-family: 'Playfair Display';
   src: url('/assets/fonts/Playfair-Display-extra-bold.woff2') format('woff2');
   font-weight: 800;
   font-style: normal;
   font-display: swap;
 }

 @font-face {
   font-family: 'Inter';
   /* src: url('{{ asset(' fonts/inter-normal.woff2') }}') format('woff2'); */
  src: url('/assets/fonts/inter-normal.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
   font-weight: 400;
   font-style: normal;
   font-display: swap;
 }

.page-content {
  background: url("../image/page_bg.png");
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  flex: 1;
  position: relative;
  z-index: 999;
  margin-top: 95px;
}

.auth-content {
  background: url("../image/page_bg.png");
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  margin-top: 95px;
  flex: 1;
}
.primary_btn, .btn.option_btn,.start_new_analysis.start_new_analysis_head_inr {
  padding: 10px 22px;
  font-weight: 700;
  font-size: 18px;
  background-color: var(--btn-bg-dark) !important;
  color: var(--text-light);
  transition: all 0.9s ease-in-out;
  border-color: var(--border-color);
}
/* .start_new_analysis.start_new_analysis_head_inr{
  background-color: var(--btn-bg-dark) !important;
} */
.btn.primary_btn:hover,
.btn.paginate_btn:hover, .btn.option_btn:hover {
  background-color: var(--btn-bg-dark) !important;
  box-shadow: var(--shadow-soft);
}
.paginate_btn span{
  /* color: var(--text-medium); */
    color: var(--text-light);
}
.paginate_btn svg path {
  /* color: var(--text-medium); */
  fill: var(--text-light) !important;
}
.btn.paginate_btn{
  background-color: var(--btn-bg-dark) !important;
  opacity: 1;

}
.btn.option_btn svg path{
  fill: var(--text-light);
}
.remember_wrap label{
  color: var(--text-medium);
}
.remember_wrap label{
  margin-bottom: 0 !important;
}
/* .page_sec {
  padding: 20px 0;
} */
/* .case-study-main.page_sec {
  background-image: url("https://html.themehour.net/atek/demo/assets/img/bg/price_bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
} */
/* header */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--bg-white);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  max-width: 100%;
}

.header .navbar {
  background-color: transparent !important;
  padding: 0;
}
.navbar-brand:focus-visible, .navbar-brand:focus{
  outline: none;
}
.header .navbar .navbar-nav {
  gap: 20px;
}

.header .navbar .navbar-nav .nav-link {
  color: var(--text-medium);
  font-size: 18px;
  line-height: 15px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  overflow: hidden;
  font-family: var(--font-family-Inter);
  font-family: 'Inter';

}
 .footer_link .nav-link{
  font-family: var(--font-family-Inter);
  font-family: 'Inter';

 }
.header .navbar .navbar-nav .nav-link:hover{
  color: var(--btn-bg-dark);
}
.header .navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  /* background-color: var(--text-medium); */
  background-color: var(--btn-bg-dark); 
  transition: left 0.3s ease-in-out;
}

.header .navbar .navbar-nav .nav-link:hover::after,
.header .navbar .navbar-nav .nav-link.active::after {
  left: 0;
}

.custom-toggler {
  padding: 0;
  border: none;
  background: transparent;
  width: 35px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.custom-toggler .bar {
  height: 3px;
  width: 100%;
  background-color: var(--text-medium);
  transition: all 0.4s ease;
}

.custom-toggler:focus {
  box-shadow: none;
}

/* Transform into X */
.custom-toggler.active .top {
  transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler.active .middle {
  opacity: 0;
}

.custom-toggler.active .bottom {
  transform: rotate(-45deg) translate(6px, -6px);
}

.header_inr .profile{
  display: none;
}

/* hero banner */

.hero_banner {
  /* padding: 40px 0 20px; */
  text-align: center;
}

.hero_content p {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  color: var(--text-gray);
}

.hero_info_box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* margin-top: 40px; */
  padding: 10px;
  border-radius: var(--border-radius);
  color: var(--text-medium);
  background: var(--bg-soft-blue);
  border: 1px solid var(--border-light);
}
.hero_info_box:hover{
  border-color: var(--btn-bg-dark);
}
.hero_info_box span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-medium);
}
.company_info.page_sec.home_card_wrapper .company_info_list .company_info_list_item:hover h3{
  color: var(--text-light);
}
/* free trail */

.trial_content {
  padding: 20px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
}

.trial_content .row {
  gap: 20px;
}

.trial_content .form-group label {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-medium);
}

.form-group .form-control {
  padding: 10px;
  border-radius: var(--border-radius);
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1;
  background: var(--bg-soft-blue);
}
.form-group .form-control:focus,
.form-group .form-control:hover {
  border: 1px solid var(--btn-bg-dark);
  box-shadow: none;
}

.form-group .form-control::placeholder {
  color: var(--text-gray);
}
/* .attach_file {
  padding: 12px;
  background: var(--bg-soft-blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--border-light);
} */
.attach_file label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  flex-wrap: wrap;
  /* color: var(--text-medium); */
  /* color: var(--text-light); */
  font-family: var(--font-family-Inter);
  font-family: 'Inter';


}
.attach_file input[type="file"] {
  display: none;
}

.btn.option_btn {
  /* padding: 0;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  background-color: transparent; */
  padding: 8px 10px;
}
/* .btn.option_btn:hover{
  color: var(--text-medium);
  background-color: transparent !important;
} */

.up_arrow_btn{
  position: relative;
}

.up_arrow_btn span {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
}

.up_arrow_btn span svg{
  width: 22px;
  fill: var(--secondary-color);
}

/* More option */

/* #optionsSection {
  display: none;
  transition: all 0.5s ease;
} */

#optionsSection {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.9s ease; /* Smooth open/close */
}

#optionsSection.active {
  max-height: 300px;
  opacity: 1;
  padding-top: 20px;
}

.option_list ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.option_list ul li {
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  padding: 10px;
  border-radius: var(--border-radius);
}
.option_list ul li:hover{
  border-color: var(--btn-bg-dark);
  transition: all 0.9s ease-in-out;
}
/* .option_list ul li p,
.plan_title_content p,
.plan_info_point ul li p,
.plan_free_trail_btn p,
.sec_title_content p {
  font-size: 16px;
  margin: 0;
} */
.swal2-popup .swal2-icon.swal2-error, .swal2-icon.swal2-success .swal2-success-ring{
    /* border-color: var(--btn-bg-dark) !important; */
    color: var(--btn-bg-dark) !important;
}
.swal2-confirm.btn.btn-primary:hover, .swal2-confirm.btn.btn-primary{
  background-color: var(--btn-bg-dark) !important;
  border-color: var(--btn-bg-dark) !important;
}
.swal2-confirm.swal2-styled.swal2-default-outline, .swal2-confirm.swal2-styled.swal2-default-outline{
  background-color: var(--btn-bg-dark) !important;
  box-shadow: none !important;
  border: 1px solid var(--text-gray) !important;
  color: var(--text-light);
}



.swal2-confirm.swal2-styled.swal2-default-outline:hover,
.swal2-confirm.swal2-styled.swal2-default-outline:hover{
  background-color: var(--btn-bg-dark) !important;
  transition: all 0.9s ease-in-out !important;
  color: var(--text-light) !important;
}
.swal2-cancel,.btn.cancle_btn{
  border: 1px solid var(--cancle-btn) !important;
  background-color: var(--cancle-btn) !important;
  color: var(--text-light) !important;

}
 .swal2-cancel:hover{
  background-color: var(--cancle-btn) !important;
  background-image: none !important;
  color: var(--text-light) !important;
  transition: all 0.9s ease-in-out !important;
}
/* company team info */

.company_info_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.synthesis_section .synthesis_section_iner_wrap{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.company_info_list_item,
.plan_list_item,
.case_study_item_header,
.veriqo_advantage_list_item,
.shadow_board_list_item,.how_it_works_section_wrapper .dimension_item {
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
  background-color: var(--bg-white);
  transition: all 0.9s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
/* .company_info_list_item{
  padding: 10px;
} */
.company_info_list_item:hover h5{
  color: var(--text-light);
}
.case_study_item_header{
  border: 0;
  margin: 20px 20px 0px 20px;
}
.case_study_item:hover{
  border-color: var(--btn-bg-dark);
}
.company_info_list_item, .plan_price_info, .trust_excutives_info_list_item, .analysis_info_item, .template_list_item, .how_it_works_section_wrapper .dimension_item {
  position: relative;
  z-index: 1;
  transition: all 0.9s ease-in-out;
}
.company_info_list_item::after, .trust_excutives_info_list_item::after, .analysis_info_item::after, .template_list_item::after,.how_it_works_section_wrapper .dimension_item::after {
  position: absolute;
  content: "";
  inset: 0;
  background: var(--btn-bg-dark);
  z-index: -1;
  border-radius: var(--border-radius);
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  transition: clip-path 0.5s ease-in-out;
}

.company_info_list_item:hover::after, .trust_excutives_info_list_item:hover:after, .analysis_info_item:hover::after, .template_list_item:hover::after,.how_it_works_section_wrapper .dimension_item:hover::after {
  clip-path: polygon(0 0,
      100% 0,
      100% 100%,
      0 100%);
}
.company_info_list_item:hover .item_info_content h3, .company_info_list_item:hover .item_info_content span,
 .trust_excutives_info_list_item:hover h3, .trust_excutives_info_list_item:hover p, 
 .company_info_list_item:hover h3, .company_info_list_item:hover p, .analysis_info_item:hover h3, 
.analysis_info_item:hover p, .template_list_item:hover h3, .template_list_item:hover p, .template_list_item:hover span{
  color: var(--text-light);
}
.company_info_list_item:hover svg path {
  fill: var(--bg-white);
  stroke: var(--bg-white);
}
.company_info_list_item:hover::before, .trust_excutives_info_list_item:hover::before, .analysis_info_item:hover::before, .template_list_item:hover::before,.how_it_works_section_wrapper .dimension_item:hover::before {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  background: var(--btn-bg-dark);
  border-radius: var(--border-radius);
}
.company_info_list_item:hover svg.company_info_2_svg1{
  display: none;
}
.company_info_list_item::before, .trust_excutives_info_list_item::before, .analysis_info_item::before, .template_list_item::before, .how_it_works_section_wrapper .dimension_item::before {
  background: var(--bg-soft-blue);
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  content: "";
  z-index: -1;
  border-radius: 4px 0 80px 0;
  transition: all 0.9s ease-in-out;
}
.how_it_works_section_wrapper .dimension_item:hover p,.how_it_works_section_wrapper .dimension_item:hover h4{
  color: var(--text-light);
}
/* .plan_price_info::before{
  background-color: var(--btn-bg-dark);
} */
.shadow_board_list_item:hover,
.plan_list_item:hover,
.veriqo_advantage_list_item:hover {
  border: 1px solid var(--btn-bg-dark);
  box-shadow: var(--shadow-soft);
  /* transform: translateY(10px); */
  transition: all 0.9s ease-in-out;
}

.company_info_list_item .item_info_content h3,
.shadow_board_list_item .item_info_content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.company_info_list_item .item_info_content span,
.shadow_board_list_item .item_info_content span {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  color: var(--text-gray);
}
.company_info_list_item:hover h3, .company_info_list_item:hover label{
  color: var(--text-light);
}
.company_info_list_item svg.company_info_2_svg1{
  display: block;
}
.company_info_list_item:hover svg.company_info_2_svg1 {
  display: block;
}
/* veriqo consult */
/* .consult {
  padding: 20px 0 40px;
} */
.consult .consult_info.home_consult_info_wrapper{
  padding: 0;
}
.consult .consult_info {
  padding: 20px;
  background-color: var(--blue-color);
  border-radius: var(--border-radius);
  text-align: center;
}

.consult_info_content h3 {
  /* font-size: 24px; */
  /* font-weight: 500; */
  line-height: 40px;
  color: var(--text-medium);
  margin: 0;
  text-align: center;
}
.quote_message.page_sec .home_consult_info_wrapper {
  margin-top: 20px;
}

/* footer */

.footer {
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
  position: relative;
}

.footer_content,
.veriqo_advantage_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.footer_content p,
.case_study_item_header p,
.analysis_info_item_content p,
.template_content span {
  /* font-size: 16px; */
  /* font-weight: 400; */
  margin: 0;
}
.template_content span{
  color: var(--text-medium);
}
.footer_info p{
  font-size: 22px;
  line-height: 36px;
  font-weight: 600;
  /* margin-bottom: 20px; */
  text-align: center;
  color: var(--btn-bg-dark);
}

.footer_copyright{
  text-align: right;
}

.footer_link {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer_link a {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  color: var(--text-medium);
}

.footer_link a::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: var(--text-medium);
  top: 0;
  right: -10px;
}

.footer_link a:last-child:before {
  display: none;
}
.footer_link .nav-link, .price_contact_info_deatail .nav-link, .about_us_info_list_item .nav-link, .subscription_sec .nav-link{
  color: var(--text-medium);
  text-decoration: underline;
  font-family: var(--font-family-Inter);
  font-family: 'Inter';

}
.price_contact_info_deatail  .nav-link{
  position: relative;
}
.footer_link .nav-link:hover, .price_contact_info_deatail .nav-link:hover, .about_us_info_list_item .nav-link:hover, .subscription_sec .nav-link:hover{
  color: var(--btn-bg-dark);
}
.subscription_sec{
  border: 1px solid var(--border-color);
}
/* .subscription_sec_wrapper .card-body{
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
} */
 /* .price_contact_info_deatail .nav-link{
  text-decoration: underline;
 } */
/* sign in */
/* 
.auth_sec {
  padding: 30px;
} */

.auth_info_box {
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
  padding: 20px;
}

/* .auth_info_box h2 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 0;
} */

.continue_btn {
  background: var(--btn-bg-dark);
  border: 1px solid var(--border-color);
  padding: 10px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  color: var(--text-light) !important;
  font-weight: 400;
  font-size: 18px;
}

.continue_btn:hover {
  border: 1px solid var(--border-color);
  color: var(--text-light) !important;
}

.auth_info_box .or {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin: 0 auto;
  width: 60%;
}

.auth_info_box .or .bar {
  flex: auto;
  border: none;
  height: 1px;
  background: #aaa;
}

.auth_info_box .or span {
  color: #727272;
  padding: 0 0.8rem;
}
.auth_inr .form-group, .auth_info_box .form-group {
  margin-bottom: 20px;
}
/* .auth_inr {
  display: flex;
  flex-direction: column;
  gap: 20px;
} */

.auth_inr p,
.reset_pass_title p {
  /* font-size: 18px; */
  /* margin: 0; */
  text-align: center;
}

.auth_inr a {
  /* font-size: 18px; */
  font-weight: 700;
  margin: 0;
  /* text-decoration: none; */
  color: var(--text-medium);
  position: relative;
}
.auth_inr .form-group a:hover{
  color: var(--btn-bg-dark);
}
/* .auth_inr a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1.5px;
  bottom: -3px;
  left: 0;
  background: var(--text-medium);
} */

/* reset password */
/* .reset_pass_title h2 {
  margin-bottom: 10px;
} */

.auth_message {
  color: #00ff83;
}

/* how it work */

/* .page_banner {
  padding: 20px 0;
} */
/* .founder_message_content {
  display: flex;
  flex-direction: column;
  gap: 40px;
} */

.leader_img.about_img img{
  /* border-radius: var(--border-radius); */
  border-radius: 10px;
}
.about_us_info_list_item ul li{
  list-style: none;
}
.about_us_info_list_item, .subscription_sec_wrapper .card-body {
  background: var(--text-light);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  transition: all 0.9s ease-in-out;
  cursor: pointer;
}
.about_us_info_list_item:hover,.subscription_sec_wrapper .card-body:hover {
  border-color: var(--primary-color);
  /* box-shadow: 0px 0px 12px 0px #0066e14d; */
}
.analysis_info_list,
.template_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* enterprises */

/* .info_point {
  padding: 0 0 20px;
} */

.info_point_list,
.use_caps_info_list,
.shadow_board_list,
.summary_list, .board_analysis_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info_point_list_item, .board_analysis_item{
  padding: 20px;
  background: var(--bg-soft-blue);
  border-top: 2px solid var(--btn-bg-dark);
  box-shadow: 0px 0px 4px 0px #ffffff1a;
  border-radius: var(--border-radius);
  transition: all 0.9s ease-in-out;
  cursor: pointer;
  border: 1px solid var(--border-color);
}
.plan_best_point.pricing_enterprising_solution_list_wrapper {
  padding-top: 10px;
}

.info_point_list_item:hover, .board_analysis_item:hover{
  /* transform: translateX(5px); */
  border-color: var(--btn-bg-dark);
}

.info_point_list_item h3, .board_analysis_item h3 {
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 20px;
  text-align: center;
}

.info_point_list_item ul, .board_analysis_item ul{
  margin: 0;
  padding-left: 20px;
  text-align: center;
}
.board_analysis_list .board_analysis_item .board_analysis_header span{
  color: var(--text-gray);
  text-align: center;
  display: block;
}
/* .info_point_list_item ul li p,
.summary_list_item ul li p,.board_analysis_content p,.board_analysis_content h3,.key_factor_item ul li p {
  font-size: 18px;
  font-weight: 400;
  line-height: 40px;
  margin: 0;
} */

/* .use_caps {
  padding: 30px 0;
  background: var(--secondary-color);
} */

.use_caps_info_list .company_info_list_item {
  text-align: left;
}

.use_caps_info_list .item_info_content h2 {
  font-size: 24px;
}
.use_caps_info_list .item_info_content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}

.process_info_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process_info_item {
  display: flex;
  gap: 20px;
}

.process_info_item .process_info_icon {
  padding: 20px;
  background-color: var(--bg-soft-blue);
  border: 8px solid var(--border-color);
  font-family: Inter;
  font-weight: 700;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 113px;
  height: 105px;
  border-radius: 50%;
}
/* 
.security {
  padding: 0 0 40px;
} */

.security_info {
  /* padding: 30px; */
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
}

.security_info_content p {
  /* font-size: 18px;
  line-height: 40px; */
  margin: 0;
}

/* privacy policy */

/* .policy_point {
  padding: 0 0 40px;
} */

.policy_update_info h4 {
  /* font-size: 18px; */
  /* font-weight: 400; */
  font-style: Italic;
  margin-bottom: 30px;
}

.policy_point_info_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy_point_info_list_item,
.founder_message_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy_point_info_list_item h3 {
  font-weight: 500;
  margin: 0;
}

.policy_point_info_list_item ul {
  margin: 0;
  padding-left: 25px;
}
.policy_point_info_list_item span{
  color: var(--text-medium);
}
.policy_point_info_list_item ul li p,
.policy_info_list_item_inr p,
.monthly_info ul li p,
.plan_best_point ul li p,
.plan_enhance_point_list_item ul li p,
.veriqo_advantage_list_item ul li p,
.dicision_reality p,
.ai_shadow_board p,
.founder_message_content p,
.template_content p,
.summary_title p {
  font-weight: 400;
  /* font-size: 18px; */
  /* line-height: 30px; */
  margin: 0;
}

.policy_point_info_list_item ul li p span,
.policy_info_list_item_inr p span {
  font-weight: 600;
}

/* pricing */

.plan_title_highlight {
  background: var(--text-light);
  border: 1px solid var(--border-color);
  padding: 10px 5px;
  display: inline-block;
  border-radius: 32px;
  margin-bottom: 20px;
}

.plan_title_highlight span {
  padding: 8px 20px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-medium);
}
.plan_title_highlight span.light {
  background-color: var(--bg-soft-blue);
  border-radius: 30px;
  color: var(--text-medium);
}

/* .plan_title_content h2,
.plan_capare_info h2,
.trust_excutives_info h2,
.decision_maker_info h2,
.plan_enhance_info h2,
.faq_info h2 {
  font-weight: 500;
  font-size: 40px;
  margin-bottom: 0px;
  text-align: center;
} */

/* .plan_title_content h2 {
  margin-bottom: 10px;
} */
 /* .model_sec_title{
  padding-bottom: 16px;
} */

.plans_list,
.plan_enhance_point_list,
.trust_excutives_info_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  /* padding: 20px 0; */
}

.plan_list_item {
  text-align: left;
  align-items: flex-start;
}

.plan_list_item label.free_trial,
.plan_list_item label.popular, .plan_price_info label.popular, .plan_list_item label.save{
  background-color: #01081d;
  color: var(--text-medium);
  font-weight: 400;
  font-size: 16px;
  border-radius: 20px;
  padding: 6px 15px;
}
.plan_price_info.plan_price_info_sub_header .free_trial, .monthly_info ul li label.save{
  color: var(--text-light);
} 
.plan_price_info.plan_price_info_sub_header{
  background-color: var(--btn-bg-dark);
}
.plan_list_item label.popular {
  background-color: #f5c800;
  border: none;
}

.plan_list_item label.save {
  border-radius: var(--border-radius);
  margin: 5px 0;
}

.plan_price_info,
.plan_info_point ul, .plan_best_point ul.pricing_enterprising_solution_list_wrapper, .case_study_item ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: var(--border-radius);
}
 .plan_best_point ul.pricing_enterprising_solution_list_wrapper{
  background-color: var(--bg-white);
 }
.plan_info_point .pricing_enterprising_solution_list_wrapper, .pricing_enterprising_solution_list_wrapper, .case_study_item ul{
  background-color: var(--bg-white);
}
/* .plan_info_point .pricing_enterprising_solution_list_wrapper li p{
  margin: 0;
} */
/* .plan_price_info.plan_price_info_sub_header{
  min-height: 200px;
} */
.plan_price_info h3, label, span{
color: var(--text-light);
}
.plan_price_info > span,
.plan_price_info > label {
  font-size: 30px;
  font-weight: 600;
  /* line-height: 30px; */
  text-transform: uppercase;
  font-family: var(--font-family-Playfair-Display);
  font-family: 'Playfair Display';

}
.plan_price_info:hover label{
  /* color: var(--text-light); */
  transition: all 0.9s ease-in-out;
}

.plan_price_info label {
  text-transform: none;
  font-family: var(--font-family-Inter);
  font-family: 'Inter';

  /* color: var(--text-medium); */
}

.plan_price_info h3 {
  font-weight: 700;
  line-height: 40px;
  margin: 0;
  display: flex;
  gap: 2px;
  align-items: end;
  font-size: 50px;
}
.plan_price_info h3 span {
  font-weight: 500;
  font-size: 24px;
}

.plans_list .plan_list_item:nth-of-type(2) .monthly_info ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.monthly_info ul,
.plan_info_point ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan_info_point ul li, .case_study_content ul li, .policy_point_info_list_item ul li, .about_us_info_list_item ul li, .pricing_enterprising_solution_list_wrapper ul li, .pricing_enterprising_solution_list_wrapper li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pricing_enterprising_solution_list_wrapper ul{
  padding-left: 0 !important;
}
/* SVG size forcefully equal */
.case_study_item li svg,
.plan_info_point li svg, .pricing_enterprising_solution_list_wrapper li svg, .about_us_info_list_item li svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  /* Added min-height */
  flex-shrink: 0;
  margin-top: 2px;
  /* Fine-tune alignment with first line */
}

.plan_best_point h3 {
  font-weight: 400;
  line-height: 20px;
  /* margin: 0; */
}

.plan_best_point ul,
.plan_enhance_point_list_item ul,.board_analysis_content ul, .veriqo_advantage_list_item ul, .info_point_list_item ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.plan_enhance_point_list_item ul li p{
  text-align: center;
}
.plan_capare_info_content .table {
  margin-top: 20px;
}

.plan_capare_info_content .table,
.plan_capare_info_content .table th,
.plan_capare_info_content .table td,
.payment_history_content .table,
.payment_history_content .table th,
.payment_history_content .table td {
  background-color: var(--bg-soft-blue);
  border-color: rgba(255, 255, 255, 10%);
  color: var(--text-medium);
  font-size: 18px;
  border: 1px solid var(--border-color);
}
.plan_capare_info_content .table th,
.plan_capare_info_content .table td {
  padding: 6px 20px;
  font-family: var(--font-family-Inter);
  font-family: 'Inter';

}

.plan_enhance_point_list_item, .veriqo_advantage_list_item {
  background: var(--bg-soft-blue);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.3s ease-in-out;
}

.plan_enhance_point_list_item:hover, .trust_excutives_info_list_item:hover, .veriqo_advantage_list_item:hover{
  /* transform: translateY(-5px); */
  border-color: var(--btn-bg-dark);
}

.plan_enhance_point_list_item h3,
.case_study_item_header h3,
.about_content_box h3 {
  font-weight: 600;
  line-height: 26px;
  margin: 0;
  text-align: center;
}

/* Ensure paragraph starts at correct position */
.plan_info_point ul li p,
.pricing_enterprising_solution_list_wrapper li p,
.plan_best_point ul li p, .case_study_item li p {
  margin: 0;
  /* line-height: 1.5; */
  /* Consistent line height */
}

/* FAQ Section */
/* .faq-section,
.trust_excutives,.veriqo_consulting,.decision_maker {
  padding: 20px 0;
} */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price_contact_info_deatail.bottm_detail p{
  margin-bottom: 0;
}
.accordion-item {
  border: none;
  /* border-bottom: 1px solid var(--border-color) !important; */
  border-radius: 0;
  overflow: hidden;
  background-color: var(--bg-soft-blue) !important;
  border-radius: var(--border-radius);
  padding: 16px;
}

.accordion-button {
  color: var(--text-medium);
  background-color: transparent;
  box-shadow: none;
  padding: 0px;
  font-weight: 500;
  font-size: 22px;
  line-height: normal;
  justify-content: space-between;
}

.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none;
  padding: 5px 0;
  justify-content: space-between;
  color: var(--primary-color);
}

.accordion-button:not(.collapsed) .right_icon svg:nth-of-type(2) {
  display: none;
}

.accordion-button.collapsed .right_icon svg:nth-of-type(1) {
  display: none;
}

.accordion-button::after {
  display: none;
}

.accordion-button:focus {
  box-shadow: none;
}
.accordion-button svg{
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-body {
  padding: 5px 0 10px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  font-family: var(--font-family-Inter);
  font-family: 'Inter';

  /* color: var(--primary-color); */
}

.trust_excutives_info_list_item {
  background: var(--text-light);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.9s ease-in-out;
  cursor: pointer;
}

.trust_excutives_info_list_item:hover{
  transform: translateY(-10px);
}
.trust_excutives_info_list_item:hover svg.check_svg path{
  fill: var(--bg-light);
}
.trust_item_content h3 {
  font-weight: 600;
  margin-bottom: 10px;
}

.trust_item_content p,
.about_content_box p {
  /* font-size: 18px; */
  /* line-height: 30px; */
  font-weight: 400;
  margin: 0;
  text-align: center;
}
.company_info_list_item.light_box_card::before, .company_info_list_item.light_box_card::after{
  content: none;
}
.company_info_list_item.light_box_card{
  background-color: var(--bg-soft-blue);
}
.company_info_list_item.light_box_card:hover p{
  color: var(--text-gray);
}
.company_info_list_item.light_box_card:hover h3{
  color: var(--btn-bg-dark);
}
.decision_maker_info_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* margin-top: 30px; */
}

.decision_maker_info_list_item {
  border: 1px solid var(--border-color);
  background-color: var(--text-light);
  padding: 20px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.decision_maker_info_list_item:hover,.subscription_sec:hover{
  border-color: var(--btn-bg-dark);
  transition: all 0.9s ease-in-out;
}
.decision_maker_info_list_item p {
  /* font-size: 18px; */
  font-style: italic;
  line-height: 25px;
  margin: 0;
}

.decision_maker_info_list_item h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  margin: 0;
}

/* .price_contact{
  padding: 20px 0 30px;
} */

/* .price_contact_info_deatail p,
.price_contact_info_deatail p a,
.price_contact_info_deatail ul li a,
.case_study_content ul li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
  text-decoration: none;
  color: var(--text-gray);
} */

.price_contact_info_deatail ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 15px;
}

.price_contact_info_deatail ul li a::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: var(--text-medium);
  right: -15px;
  top: 0;
}

.price_contact_info_deatail ul li:last-child a:after {
  display: none;
}

/* case study */
.case_study {
  padding: 0 0 20px;
}

.case_study_list, .about_custom_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case_study_item {
  /* background: var(--bg-soft-blue); */
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: all 0.9s ease-in-out;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
/* .case_study_item:hover{
  transform: translateY(10px);
} */

.case_study_item_header {
  /* gap: 10px;
  border-radius: 8px;
  border-bottom: 2px solid var(--btn-bg-dark); */
  background-color: var(--btn-bg-dark);
}
.case_study_item_header h3, .case_study_item_header p{
  color: var(--text-light);
}
.case_study_content {
  padding: 20px;
  background: var(--bg-white);
  /* border-radius: 0 0 8px 8px;
  height: 100%; */
}

.case_study_content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* .case_study_content ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
  transition: all 0.3s ease;
} */
/* .case_study_content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--btn-bg-dark);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
} */
.veriqo_advantage,
.founder_message,
.template {
  /* padding: 20px 0 40px; */
}
.veriqo_advantage_info_inr {
  padding: 0px 100px;
  background-color: var(--secondary-color);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: var(--border-radius);
}
.veriqo_advantage_list_item {
  text-align: left;
  align-items: flex-start;
  gap: 10px;
}

.veriqo_advantage_list_item h3 {
  font-weight: 600;
  margin: 0;
  text-align: center;
}
.veriqo_advantage_list_item {
  text-align: center;
  align-items: center;
  justify-content: center;
}
/* shadow board */
.shadow_board {
  padding: 0 0 40px;
}

.shadow_board_info .row {
  row-gap: 25px;
}

.shadow_board_list_item {
  padding: 40px 20px;
  height: 100%;
}

/* about */

/* .leader_info_content h2,
.ai_shadow_board h3,
.about_us_info_list_item h3,
.our_drives_title h2,
.summary_title h3,
.caution h3 {
  font-weight: 600;
  margin-bottom: 10px;
} */
.about_us_info_list_item p,
.about_us_info_list_item h3 {
  margin: 0;
  /* line-height: 30px; */
}
/* .leader_info_content p,
.about_us_info_list_item p,
.about_us_info_list_item p a {
  font-size: 18px;
  line-height: 30px;
  margin: 0;
  color: var(--text-medium);
  text-decoration: none;
} */
.about_page_wrapper .leader_info_list .leader_info_content p{
  /* line-height: 30px; */
  margin: 0;
}
.leader_info_list .row {
  row-gap: 20px;
}
.analysis {
  padding: 0 0 20px;
}
/* .executive_decision_info .row,
.our_drive_info_content .row {
  row-gap: 30px;
} */

/* .sec_title_content h2,
.recent_analysis_info h2,
.template_info h2 {
  font-weight: 500;
  margin-bottom: 10px;
} */

.about_content_box {
  background-color: var(--bg-soft-blue);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  height: 100%;
  transition: all 0.9s ease-in-out;
  cursor: pointer;
}

.about_content_box:hover{
  /* transform: translateY(-10px); */
  border-color: var(--btn-bg-dark);
}

.executive_decision_inr,
.multi_model_inr {
  display: flex;
  flex-direction: column;
}
.executive_decision_inr{
  gap: 20px;
}
.about_us_info_list > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about_us_info_list_item ul {
  margin: 0;
  padding-left: 20px;
  /* list-style: disc; */
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.mark_ul {
  list-style: none !important;
  padding: 0 !important;
}

.founder_message_info {
  background: var(--bg-soft-blue);
  /* border-left: 2px solid var(--blue-color); */
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}
.founder_message_info:hover{
  border-color: var(--btn-bg-dark);
  transition: all 0.9s ease-in-out;
}
/* .founder_message_info h2 {
  font-weight: 600;
  margin: 0;
} */

/* dashboard */

.start_new_analysis {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  text-decoration: none;
  width: 100%;
}
.start_new_analysis.start_new_analysis_head_inr{
  background-color: var(--bg-white);
  padding: 20px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  margin: 0;
}
.start_new_analysis.start_new_analysis_head_inr:hover {
  border-color: var(--btn-bg-dark);
  transition: all 0.9s ease-in-out;
}
/* .start_new_analysis:hover {
  opacity: 0.9;
} */
.start_new_analysis.start_new_analysis_head_inr svg path{
  fill: var(--text-light);
}
.start_new_analysis.start_new_analysis_head_inr h3{
  margin-bottom: 6px;
}
.start_new_analysis_inr,
.analysis_content_right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.analysis_inr_star {
  width: 50px;
  height: 50px;
  background-color: #3379ff;
  border-radius: 50%;
  /* padding: 5px; */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 15%);
}

.start_new_analysis_content h3 {
  font-weight: 600;
  margin: 0;
}

.start_new_analysis_content p {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.analysis_info_item {
  background-color: var(--text-light);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: all 0.9s ease-in-out;
  cursor: pointer;
}

.analysis_info_item:hover{
  /* transform: translateY(-10px); */
  border-color: var(--btn-bg-dark);
}

.analysis_info_item_icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.analysis_info_item_icon label {
  padding: 4px 6px;
  background-color: #192b28;
  color: #10b981;
  border-radius: var(--border-radius);
  font-size: 16px;
  margin: 0;
}

.analysis_info_item_content h3,
.template_content h3,
.summary_list_item h3{
  font-weight: 700;
  margin-bottom: 10px;
}

.recent_analysis_info_inr {
  background-color: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.recent_analysis_info .recent_analysis_info_inr .recent_analysis_info_short .info_short_list .info_short_list_item span{
  text-align: left;
}
.analysis_content_left h3 {
  font-weight: 500;
  /* margin: 0; */
  display: flex;
  align-items: center;
  gap: 50px;
}
.analysis_content_left.dashboard_analysis_content_left h3{
  font-weight: 500;
  /* margin: 0; */

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;

  width: 100%;
  max-width: 100%;
}
.recent_analysis_info_content:has(.analysis_content_left.dashboard_analysis_content_left) {
  padding: 0;
}
.recent_analysis_info_inr:has(.analysis_content_left.dashboard_analysis_content_left) .info_short_list_item span {
  color: var(--text-medium);
  padding-top: 10px;
}
.dashboard-wrapper .recent_analysis_info .recent_analysis_info_inr {
  margin-bottom: 20px;
}
.dashboard-wrapper .recent_analysis_info .recent_analysis_info_inr:last-child {
  margin-bottom: 0;
}
.analysis_content_left h3 span {
  background-color: var(--btn-bg-dark);
  padding: 5px 15px;
  /* font-size: 24px; */
  border-radius: 20px;
  color: var(--text-light);
}

.analysis_content_left ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.analysis_content_left ul li label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  line-height: 24px;
  font-weight: 400;
}
.analysis_content_left ul li label svg {
  width: 25px;
  fill: var(--text-medium);
}

.analysis_content_left,
.analysis_content_right_inr,
.info_short_list_item,
.template_info {
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
}

.analysis_content_right ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.recent_analysis_info_content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.analysis_content_right_inr h3 {
  font-weight: 500;
  /* margin: 0; */
}
.analysis_content_right_inr label {
  font-size: 24px;
  line-height: 24px;
  font-weight: 400;
  margin: 0;
}
.recent_analysis_info_content label{
  color: var(--text-medium);
}
.analysis_content_right_inr label span {
  font-weight: 600;
  color: var(--blue-color);
}

.info_short_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.list_item_line {
  height: 5px;
  border-radius: var(--border-radius);
}

.info_yellow {
  background-color: #f59e0b;
}

.info_green {
  background-color: #10b981;
}

.info_orange {
  background-color: #f97316;
}

.info_short_list_item span {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

.template_list_item,
.summary_list_item {
  padding: 20px;
  background-color: var(--text-light);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: var(--border-radius);
  transition: all 0.9s ease-in-out;
}

.template_list_item:hover{
  /* transform: translateX(-5px); */
  /* border-color: var(--btn-bg-dark); */
}

.template_content h3,
.summary_list_item h3 {
  margin: 0;
}

.template_content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* payment history */
/* .payment_history {
  padding: 40px 0;
} */
.payment_history_content {
  padding: 20px;
  border-radius: var(--border-radius);
  background-color: var(--secondary-color);
  border: 1px solid var(--border-color);
}
.payment_history_content .table th {
  padding: 20px;
  width: 20%;
}
/* .payment_history_content .table td {
  padding: 10px 15px;
  vertical-align: middle;
  width: 20%;
} */

.payment_history_content .table td .primary_btn {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.table_pagination {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 20px;
  gap: 20px;
}

.paginate_btn {
  background-color: var(--primary-color);
  padding: 6px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--text-medium);
  transition: 0.5s all ease-in-out;
}

.table_pagination ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.payment_history_content .success {
  color: #0ead69;
}

.payment_history_content .pending {
  color: #3f9aff;
}

.payment_history_content .reject {
  color: #ff3d40;
}

.table_pagination ul li a {
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-medium);
  text-decoration: none;
}
.table_pagination ul li a.active {
  background-color: var(--primary-color);
}

/* .analysis detail */
/* .summary {
  padding: 0 0 20px;
}

.summary_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.caution h3 {
  color: #f59e0b;
}

.caution label {
  background-color: rgb(0 87 255 / 10%);
  padding: 10px 20px;
  color: var(--blue-color);
  border-radius: 20px;
  font-size: 24px;
  line-height: 24px;
}

.summary_list {
  gap: 30px;
}

.board_analysis_info h2 {
  font-weight: 500;
  margin-bottom: 30px;
}

.board_analysis_list{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 20px;
  row-gap: 30px;
}

.board_analysis_header {
  background-color: var(--btn-bg-dark);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.board_analysis_item {
  background-color: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.board_analysis_header h3 {
  font-weight: 600;
  line-height: 26px;
  margin: 0;
}

.board_analysis_header span {
  background-color: #192b28;
  color: #10b981;
  font-size: 18px;
  font-weight: 500;
  padding: 5px 15px;
  border-radius: 20px;
}

.board_analysis_header span.yellow_point{
  background-color: #F59E0B1A;
  color: #F59E0B;
}

.board_analysis_header span.danger_point{
  background-color: #E539351A;
  color: #E53935;
}

.board_analysis_content {
  padding: 20px;
  background-color: var(--text-light);
  border-radius: 0 0 4px 4px;
} */

/* .key_factor{
  padding: 20px 0 40px;
} */

/* .key_factor_inr{
  background-color: var(--secondary-color);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
} */
/* .detial_lable {
  background: var(--bg-soft-blue);
  padding: 10px 20px;
  border-radius: 20px;
  color: var(--btn-bg-dark);
  border: 1px solid var(--border-color);
} */
.analysis_detail_secrion_wrapper .sucess_point_score {
  background: linear-gradient(135deg, #008000 0%, #008000 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.analysis_detail_secrion_wrapper .sucess_point_score::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.analysis_detail_secrion_wrapper .sucess_point_score:hover::after {
  left: 100%;
}

.analysis_detail_secrion_wrapper .yellow_point_score {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 8px 20px;
  padding-left: 25px;
  border-radius: 25px;
  font-weight: 700;
  /* font-size: 16px; */
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.analysis_detail_secrion_wrapper .yellow_point_score::before {
  content: '⚠';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.8;
}

.analysis_detail_secrion_wrapper .yellow_point_score::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.analysis_detail_secrion_wrapper .yellow_point_score:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
  border-color: rgba(255, 255, 255, 0.4);
}

.analysis_detail_secrion_wrapper .yellow_point_score:hover::after {
  left: 100%;
}

.analysis_detail_secrion_wrapper .danger_point_score {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.35);
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.analysis_detail_secrion_wrapper .danger_point_score::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.analysis_detail_secrion_wrapper .danger_point_score:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.45);
  border-color: rgba(255, 255, 255, 0.4);
}

.analysis_detail_secrion_wrapper .danger_point_score:hover::after {
  left: 100%;
}

.analysis_detail_secrion_wrapper .detial_lable {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #1f2937;
  font-weight: 500;
}
.case_study_info .case_study_list .case_study_item .sucess_point, .case_study_info .case_study_list .case_study_item .yellow_point{
  background: #008000;
  padding: 4px 16px;
  border-radius: 20px;
  color: var(--text-light);
}
.analysis_detail_proceed_wrapper ul {
  text-align: left;
}
.analysis_detail_proceed_wrapper ul {
  list-style: none;
  /* default bullet remove */
  padding-left: 0;
}

.analysis_detail_proceed_wrapper ul li {
  position: relative;
  padding-left: 18px;
  /* bullet ke liye space */
}

.analysis_detail_proceed_wrapper ul li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  /* text ke center ke liye adjust */
  width: 8px;
  height: 8px;
  background-color: var(--btn-bg-dark);
  /* ya jo color chahiye */
  border-radius: 50%;
  /* round bullet */
}
.case_study_info .case_study_list .case_study_item .yellow_point{
  background-color: #f5c800;
}
.case_study_item_header.analysis_detail_header{
  flex-direction: row;
  justify-content: space-between;
}
/* .key_factor_list{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
} */

/* .key_factor_item h3{
  font-weight: 500;
  margin-bottom: 10px;
}

.key_factor_inr > h3{
  margin-bottom: 20px;
} */

/* .export_btn .primary_btn{
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
} */

.profile{
  position: relative;
  cursor: pointer;
}

.primary_btn:disabled{
  color: var(--text-light);
}
.profile_dropdown {
  position: absolute;
  right: 0;
  top: 50px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  display: none;
  width: 230px;
  overflow: hidden;
  z-index: 100;
  padding: 15px;
}
.profile_dropdown.open{
  display: block !important;
  transition: all 3s ease-in-out;
}

.profile_dropdown ul{
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 10px !important;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Menu items */
.profile_dropdown ul li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
}

.profile_dropdown ul li a span{
  color: var(--text-medium);
  font-size: 16px;
  font-weight: 500;
  transition: padding 0.3s ease-in-out;
}

.profile_dropdown ul li a:hover span{
  padding-left: 5px;
}

.header .navbar .container > .profile{
  display: block;
}

/* set new password */
/* Success Modal */
.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-out;
}

.success-modal[style*="display: flex"],
.success-modal.show {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: var(--bg-dark);
  border-radius: var(--border-radius);
  padding: 32px; /* 2rem -> 32px */
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  animation: slideIn 0.4s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: #cccccc;
  font-size: 24px; 
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  color: var(--text-medium);
  background-color: rgba(255, 255, 255, 0.1);
}

.modal-close:active {
  transform: scale(0.95);
}

.modal-icon {
  font-size: 48px; 
  color: var(--primary-color);
  margin-bottom: 16px; 
}

.modal-title {
  color: var(--text-medium);
  font-size: 24px; 
  font-weight: 600;
  margin-bottom: 16px; 
}

.modal-message {
  color: #cccccc;
  margin-bottom: 24px; 
  line-height: 1.5;
}

.payment_history {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.payment_history.animate-on-scroll {
  opacity: 1;
  transform: translateX(0);
}

.auth_info_box, .contact_form_wrapper {
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}
.auth_info_box.profile:hover, .auth_info_box:hover, .contact_form_wrapper:hover{
  border-color: var(--btn-bg-dark);
  transition: all 0.9s ease-in-out;
}
.auth_info_box.profile-_view_wrapper{
  background: var(--bg-soft-blue);
}
.auth_inr {
  width: 100%;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
}

.profile-table tbody tr td:first-child {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-weight: 600;
  width: 40%;
  color: var(--text-medium);
}

.profile-table tbody tr td:last-child {
  padding: 10px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-medium);
}

.profile-table tbody tr:last-child td {
  border-bottom: none;
}

#activePlanContainer {
  line-height: 1.8;
}

#companyRow {
  display: none;
}
.signin_wrapper #rememberMe:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-medium);
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}
.signin_wrapper #rememberMe:checked {
  background-color: var(--bg-soft-blue);
  border-color: #021346;
}
.signin_wrapper #rememberMe {
  width: 18px !important;
  height: 18px !important;
  margin-right: 10px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  border: 2px solid var(--btn-bg-dark);
  border-radius: var(--border-radius);
  position: relative;
  transition: all 0.3s ease;
}
.signin_wrapper .form-group.remember_wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.form-group label, .form-group a{
  font-family: var(--font-family-Inter);
  font-family: 'Inter';

}
/* .signin_wrapper .btn.continue_btn:hover{
  color: var(--text-medium);
} */
.page-item a.page-link{
  color: var(--text-medium);
}
.page-item.active{
  background-color: var(--btn-bg-dark);
  border-radius: var(--border-radius);
}
.page-item.active a.page-link{
  color: var(--text-light);
}
/* sign up page company suggestion */
.suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  display: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.suggestion-item {
  padding: 15px;
  cursor: pointer;
  color: var(--text-medium);
  transition: background 0.2s;
}

.suggestion-item:hover,
.suggestion-item.active {
  background: var(--bg-dark);
}

/* ============================================
   404 Error Page Styles
   ============================================ */

/* Error container - Main wrapper for error page content */
.error-container {
  width: 100%;
}

.error-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}

.error-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.number-4 {
  font-size: 180px;
  font-weight: 900;
  color: #000000;
  line-height: 1;
  letter-spacing: -5px;
  position: relative;
}

.number-4::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(147, 197, 253, 0.3) 0%, transparent 70%);
  z-index: -1;
  filter: blur(30px);
}

.icon-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-icon {
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(147, 197, 253, 0.5);
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.ai-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border-radius: 24px;
  z-index: -1;
  opacity: 0.8;
}

.ai-icon svg {
  width: 60px;
  height: 60px;
  fill: #3b82f6;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.error-title {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.error-description {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px;
}

.error-actions {
  margin-top: 40px;
}

.btn-home {
  display: inline-block;
  padding: 16px 40px;
  background: #1e293b;
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-home:hover {
  background: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 41, 59, 0.3);
}

.btn-home:active {
  transform: translateY(0);
}

/* 3-12-2025 */
.contact-section .contact_main .contact_form_title h3{
  /* font-size: 55px; */
}
/* 3-12-2025 */
/* only  css move from internal css (same page) */
/* Profile Initial Circle Styling */
.profile-initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #007bff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  flex-shrink: 0;
}

/* Confirmation Modal Styling */
.confirmation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0b0b0be6;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.confirmation-modal .modal-content {
  background-color: var(--bg-dark);
  border-radius: var(--border-radius);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  border: 1px solid #0066ff;
}

.confirmation-modal .confirmation-message {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  padding: 0 10px;
}

.confirmation-modal .confirmation-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.confirmation-modal .btn-confirm-yes,
.confirmation-modal .btn-confirm-no {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
}

.confirmation-modal .btn-confirm-yes {
  background-color: #0066ff;
  color: #ffffff;
}

.confirmation-modal .btn-confirm-yes:hover {
  background-color: #0066ff;
  transform: translateY(-2px);
}

.confirmation-modal .btn-confirm-no {
  background-color: #909090;
  color: #ffffff;
}

.confirmation-modal .btn-confirm-no:hover {
  background-color: #909090;
  transform: translateY(-2px);
}
.header .navbar{
  position: relative;
}
.header .navbar #profileSection{
  /* position: absolute; */
  /* right: 10%; */
  background-color: var(--btn-bg-dark);
  border: 1px solid var(--btn-bg-dark);
  width: 40px;
  height: 40px;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}
.header .navbar #profileSection .profile-btn {
  width: 100%;
 height: 100%;
 font-size: 20px;
 color: var(--text-light);

}
 /* only  css move from internal css (same page) */
 .suggestions {
   position: absolute;
   top: 100%;
   left: 0;
   right: 0;
   background: var(--bg-soft-blue);
   /* border: 1px solid var(--secondary-color, #1a1a1a); */
   border-top: none;
   border-radius: 0 0 4px 4px;
   max-height: 200px;
   overflow-y: auto;
   z-index: 10;
   display: none;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
 }

 .suggestion-item {
   padding: 15px;
   cursor: pointer;
   color: var(--text-medium, #ffffff);
   transition: background 0.2s;
 }

 .suggestion-item:hover,
 .suggestion-item.active {
   background: var(--text-light);
 }

 .checkbox-group {
   display: flex;
   gap: 30px;
   align-items: flex-start;
 }

 .checkbox-item {
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .checkbox-item input[type="checkbox"] {
   width: 20px;
   height: 20px;
   cursor: pointer;
   border-radius: 50%;
   appearance: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   background-color: transparent;
   border: 2px solid #666;
   position: relative;
   flex-shrink: 0;
 }

 .checkbox-item input[type="checkbox"]:checked {
   background-color: var(--btn-bg-dark);
   border-color: var(--btn-bg-dark);
 }

 .checkbox-item input[type="checkbox"]:checked::after {
   content: '';
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 8px;
   height: 8px;
   background-color: #ffffff;
   border-radius: 50%;
 }

 .checkbox-item label {
   margin: 0;
   cursor: pointer;
   color: var(--text-medium, #ffffff);
   font-size: 16px;
   line-height: 20px;
   user-select: none;
 }
 .btn.primary_btn, .btn.option_btn, .btn.continue_btn, .swal2-confirm.swal2-styled.swal2-default-outline, .swal2-cancel.swal2-styled.swal2-default-outline, .btn.paginate_btn, .btn.cancle_btn,.start_new_analysis.start_new_analysis_head_inr
 {
   position: relative;
   z-index: 1;
   overflow: hidden;
   border: none;
 }

 .btn.primary_btn::before, .btn.option_btn::before, .btn.continue_btn::before,
  .swal2-confirm.swal2-styled.swal2-default-outline::before,
  .swal2-cancel.swal2-styled.swal2-default-outline::before,
  .btn.paginate_btn::before, .start_new_analysis.start_new_analysis_head_inr::before, .btn.cancle_btn::before {
   /* background: var(--bg-soft-blue); */
  background-color: var(--btn-light-blue);
   position: absolute;
   left: 0;
   top: 0;
   width: 40px;
   height: 40px;
   content: "";
   z-index: -1;
   border-radius: 0 0 40px 0;
   transition: .5s;
 }
    .swal2-cancel.swal2-styled.swal2-default-outline::before,.btn.cancle_btn::before{
      background-color: var(--text-light-cancle-btn);
    }
 .btn.primary_btn::after,.btn.option_btn::after, .btn.continue_btn::after,
  .swal2-confirm.swal2-styled.swal2-default-outline::after,
   .swal2-cancel.swal2-styled.swal2-default-outline::after, .btn.paginate_btn::after, .start_new_analysis.start_new_analysis_head_inr::after,.btn.cancle_btn::after{
   position: absolute;
   content: "";
   inset: 0;
   background: var(--btn-bg-dark);
   z-index: -1;
   border-radius: var(--border-radius);
   clip-path: polygon(0 0, 0 0, 0 0, 0 0);
   transition: clip-path 0.5s ease-in-out;
 }
.swal2-cancel.swal2-styled.swal2-default-outline::after,.btn.cancle_btn::after{
  background: var(--cancle-btn);
}
 .btn.primary_btn:hover::before,
  .btn.option_btn:hover::before, 
  .btn.continue_btn:hover:before,  
  .swal2-confirm.swal2-styled.swal2-default-outline:hover::before,
   .swal2-cancel.swal2-styled.swal2-default-outline:hover::before, .btn.paginate_btn:hover::before,.start_new_analysis.start_new_analysis_head_inr:hover::before,.btn.cancle_btn:hover::before {
   width: 100%;
   height: 100%;
   border-radius: 0px;
   background: var(--btn-bg-dark);
   border-radius: var(--border-radius);
 }
 .swal2-cancel.swal2-styled.swal2-default-outline:hover::before,.btn.cancle_btn:hover::before{
  background: var(--cancle-btn);
 }
 .btn.primary_btn:hover::after, .btn.option_btn:hover::after,
  .btn.continue_btn:hover::after,  .swal2-confirm.swal2-styled.swal2-default-outline:hover::after,
  .swal2-cancel.swal2-styled.swal2-default-outline:hover::after, .btn.paginate_btn:hover::after, .start_new_analysis.start_new_analysis_head_inr:hover::after,.btn.cancle_btn:hover::after {
   clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
 }
.start_new_analysis.start_new_analysis_head_inr h3, .start_new_analysis.start_new_analysis_head_inr p{
  color: var(--text-light);
}
 .btn.primary_btn:hover, .btn.option_btn:hover,.btn.continue_btn:hover,
   .swal2-confirm.swal2-styled.swal2-default-outline:hover,
    .swal2-cancel.swal2-styled.swal2-default-outline:hover, .btn.paginate_btn:hover,.btn.cancle_btn:hover {
   color: var(--text-light);
   border-color: var(--btn-bg-dark);
 }
    .swal2-cancel.swal2-styled.swal2-default-outline:hover,.btn.cancle_btn:hover{
      border-color: var(--cancle-btn);
    }
 /* 4-12-2025 */
/* Checkbox NOT checked → hide parent */
.edit_profile_form_wrapper .checkbox-item:not(:has(input[type="checkbox"]:checked)) {
  display: none;
}

/* Checkbox checked → show parent */
.edit_profile_form_wrapper .checkbox-item:has(input[type="checkbox"]:checked) {
  display: inline-flex;
}

/* ============================================
   PRIVACY POLICY SPECIFIC STYLES
   Only affects privacy policy page elements
   ============================================ */

/* Page Banner Enhancement */
.page_banner {

  position: relative;
  overflow: hidden;
}

/* .page_banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(2, 19, 70, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
} */
/* 
@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
} */

.page_banner_content {
  position: relative;
  z-index: 2;
}

.page_banner_content p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Policy Update Info */
.policy_update_info {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.policy_update_info h4 {
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: var(--text-gray);
  margin: 0;
  padding: 15px 30px;
  background: var(--bg-soft-blue);
  border-radius: 50px;
  display: inline-block;
  border: 1px solid var(--border-color);
}

/* Policy Point List Items */
.policy_point_info_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy_point_info_list_item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--border-radius);
  transition: all 0.4s ease;
  /* position: relative;
  z-index: 1; */
  background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
  
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.policy_point_info_list_item:hover {
  border-color: var(--btn-bg-dark);
}

.policy_point_info_list_item h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--btn-bg-dark);
  margin: 0;
  position: relative;
  line-height: 1.3;
}

/* List Styling */
.policy_point_info_list_item ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}



     /* Contact Us Page Specific Styles */
     /* .contact-section {
   
       position: relative;
       overflow: hidden;
     } */
  
     /* .contact-section::before {
       content: '';
       position: absolute;
       top: -100px;
       right: -100px;
       width: 400px;
       height: 400px;
       background: radial-gradient(circle, rgba(2, 19, 70, 0.08) 0%, transparent 70%);
       animation: float 6s ease-in-out infinite;
     } */
/*   
     @keyframes float {
  
       0%,
       100% {
         transform: translate(0, 0) rotate(0deg);
       }
  
       50% {
         transform: translate(20px, 20px) rotate(180deg);
       }
     } */
  
     .contact_main {
       position: relative;
       z-index: 2;
     }
  
     .contact_form_title {
       text-align: center;
       margin-bottom: 20px;
     }
  
     /* .contact_form_title h1 {
       font-size: 48px;
       font-weight: 700;
       color: var(--btn-bg-dark);
       margin-bottom: 20px;
       letter-spacing: -0.5px;
       font-family: 'Playfair Display', serif;
     }
  
     .contact_form_title p {
       font-size: 18px;
       color: var(--text-gray);
       max-width: 700px;
       margin: 0 auto;
       line-height: 1.6;
     } */
  
     .contact_form_wrapper {
       max-width: 800px;
       margin: 0 auto;
       background: var(--bg-white);
       border: 1px solid var(--border-color);
       border-radius: var(--border-radius);
       padding: 20px;
       position: relative;
       transition: all 0.4s ease;
     }
  
     .contact_form {
       position: relative;
       z-index: 1;
     }
  
     .form-row {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       gap: 20px;
       margin-bottom: 20px;
     }
  
     .form-group {
       position: relative;
     }
  
    .contact_form_wrapper .form-group label {
       display: block;
       margin-bottom: 10px;
       /* font-size: 16px;
       font-weight: 500; */
       color: var(--text-medium);
       /* font-family: var(--font-family-Inter);
       font-family: 'Inter';
 */
       /* transition: color 0.3s ease; */
     }
  
     .contact_form_wrapper .form-group input,
    .contact_form_wrapper .form-group textarea {
       width: 100%;
       /* padding: 14px 18px; */
       border: 1px solid var(--border-color);
       border-radius: var(--border-radius);
       /* font-size: 16px; */
       color: var(--text-medium);
       background: var(--bg-soft-blue);
       transition: all 0.3s ease;
       font-family: var(--font-family-Inter);
       font-family: 'Inter';

     }
  
     .form-group input:focus,
     .form-group textarea:focus {
       outline: none;
       border-color: var(--btn-bg-dark);
       background: var(--bg-white);
       box-shadow: 0 0 0 3px rgba(2, 19, 70, 0.1);
     }
  
     .form-group input::placeholder,
     .form-group textarea::placeholder {
       color: var(--text-gray);
       opacity: 0.7;
     }
  
     .form-group textarea {
       min-height: 150px;
       resize: vertical;
     }
  
     .form-group.full-width {
       grid-column: 1 / -1;
     }
  
     .submit-btn-wrapper {
       text-align: center;
       margin-top: 20px;
     }
     /* Success Message */
     .success-message {
       display: none;
       background: #d4edda;
       border: 1px solid #c3e6cb;
       color: #155724;
       padding: 15px 20px;
       border-radius: var(--border-radius);
       margin-bottom: 20px;
       text-align: center;
       font-family: var(--font-family-Inter);
       font-family: 'Inter';

     }
  
     .success-message.show {
       display: block;
       animation: slideDown 0.4s ease;
     }
  
     @keyframes slideDown {
       from {
         opacity: 0;
         transform: translateY(-20px);
       }
  
       to {
         opacity: 1;
         transform: translateY(0);
       }
     }
     /* Error States */
     .form-group input.error,
     .form-group textarea.error {
       border-color: #E53935;
     }
     .error-text {
       color: #E53935;
       font-size: 14px;
       margin-top: 5px;
       display: none;
     }
     .error-text.show {
       display: block;
     }
     /* Loading State */
     .submit-btn.loading {
       pointer-events: none;
       opacity: 0.7;
     }
  
     .submit-btn.loading::after {
       content: '';
       position: absolute;
       width: 20px;
       height: 20px;
       border: 3px solid var(--text-light);
       border-top-color: transparent;
       border-radius: 50%;
       animation: spin 0.8s linear infinite;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
     }
  
     @keyframes spin {
       to {
         transform: translate(-50%, -50%) rotate(360deg);
       }
     }






 /* How It Works Steps - Grid Layout */
 /* .how_work_step {
   padding: 60px 0;
 } */

 .how_work_step_inr h2 {
   text-align: center;
   /* margin-bottom: 50px; */
 }

 .work_step_list {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 20px;
 }

 .work_step_item {
   background: var(--bg-white);
   border: 1px solid var(--border-color);
   padding: 20px;
   border-radius: var(--border-radius);
   transition: all 0.4s ease;
   position: relative;
   overflow: hidden;
   cursor: pointer;
 }

 .work_step_item::before {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   width: 80px;
   height: 80px;
   background: var(--bg-soft-blue);
   border-radius: 4px 0 80px 0;
   transition: all 0.4s ease;
   z-index: 0;
 }

 .work_step_item::after {
   content: '';
   position: absolute;
   inset: 0;
   background: var(--btn-bg-dark);
   z-index: -1;
   border-radius: var(--border-radius);
   clip-path: polygon(0 0, 0 0, 0 0, 0 0);
   transition: clip-path 0.5s ease-in-out;
 }

 .work_step_item:hover::after {
   clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
 }

 .work_step_item:hover {
   border-color: var(--btn-bg-dark);
   transform: translateY(-5px);
   box-shadow: var(--shadow-soft);
 }

 .work_step_item:hover::before {
   width: 100%;
   height: 100%;
   background: var(--btn-bg-dark);
   border-radius: var(--border-radius);
 }

 /* .work_step_content {
   position: relative;
   z-index: 1;
 } */

 /* .work_step_content h3 {
   margin-bottom: 12px;
   transition: color 0.4s ease;
   text-align: center;
 } */

 /* .work_step_content p {
   margin: 0;
   transition: color 0.4s ease;
   text-align: center;
 } */

 .work_step_item:hover .work_step_content h3,
 .work_step_item:hover .work_step_content p {
   color: var(--text-light);
 }

 /* Board-Ready Synthesis Section */
 /* .synthesis_section {
   background: var(--bg-soft-blue);
   padding: 60px 0;
 } */

 .synthesis_content {
   background: var(--bg-white);
   border: 1px solid var(--border-color);
   padding: 20px;
   border-radius: var(--border-radius);
   transition: all 0.4s ease;
 }

 .synthesis_content:hover {
   border-color: var(--btn-bg-dark);
   box-shadow: var(--shadow-soft);
 }

 .synthesis_content>p {
   font-size: 18px;
   /* line-height: 1.8; */
   /* margin-bottom: 25px; */
   text-align: center;
 }

 .work_step_content_point {
   margin-top: 30px;
 }

 .work_step_content_point ul {
   list-style: none;
   padding: 0;
   margin: 0;
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 20px;
 }

 .work_step_content_point ul li {
   background: var(--bg-white);
   border: 1px solid var(--border-color);
   padding: 25px;
   border-radius: var(--border-radius);
   transition: all 0.4s ease;
   position: relative;
   overflow: hidden;
   cursor: pointer;
 }

 .work_step_content_point ul li::before {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   width: 60px;
   height: 60px;
   background: var(--bg-soft-blue);
   border-radius: 4px 0 60px 0;
   transition: all 0.4s ease;
   z-index: 0;
 }

 .work_step_content_point ul li::after {
   content: '';
   position: absolute;
   inset: 0;
   background: var(--btn-bg-dark);
   z-index: -1;
   border-radius: var(--border-radius);
   clip-path: polygon(0 0, 0 0, 0 0, 0 0);
   transition: clip-path 0.5s ease-in-out;
 }

 .work_step_content_point ul li:hover::after {
   clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
 }

 .work_step_content_point ul li:hover {
   border-color: var(--btn-bg-dark);
   /* transform: translateY(-5px); */
   box-shadow: var(--shadow-soft);
 }

 .work_step_content_point ul li:hover::before {
   width: 100%;
   height: 100%;
   background: var(--btn-bg-dark);
   border-radius: var(--border-radius);
 }

 .work_step_content_point ul li p {
   margin: 0;
   font-weight: 500;
   transition: color 0.4s ease;
   position: relative;
   z-index: 1;
   text-align: center;
   font-size: 17px;
 }

 .work_step_content_point ul li:hover p {
   color: var(--text-light);
 }

 /* Built for Leaders Section */
 /* .why_ai_modal {
   padding: 60px 0;
 } */

 .ai_modal_inr h2 {
   text-align: center;
   /* margin-bottom: 50px; */
 }

 .why_ai_model_list {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
   /* margin-bottom: 50px; */
 }

 .company_info_list_item {
   /* background: var(--bg-soft-blue); */
   border: 1px solid var(--border-color);
   /* padding: 40px 30px; */
   /* border-radius: 12px; */
   text-align: center;
   transition: all 0.4s ease;
   cursor: pointer;
 }

 .company_info_list_item:hover {
   border-color: var(--btn-bg-dark);
   transform: translateY(-5px);
   box-shadow: var(--shadow-soft);
 }

 .item_info_content {
   position: relative;
   z-index: 1;
 }

 .item_info_content h3 {
   margin-bottom: 15px;
   transition: color 0.4s ease;
 }

 .item_info_content p {
   margin: 0;
   transition: color 0.4s ease;
 }

 .company_info_list_item:hover .item_info_content h3 {
   color: var(--btn-bg-dark);
 }

 .company_info_list_item:hover .item_info_content p {
   color: var(--text-gray);
 }

 /* Hero Info Box */
 /* .hero_info_box {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 25px 40px;
   border-radius: 8px;
   color: var(--text-medium);
   background: var(--bg-soft-blue);
   border: 1px solid var(--border-color);
   transition: all 0.4s ease;
 } */

 .hero_info_box:hover {
   border-color: var(--btn-bg-dark);
 }

 .hero_info_box span {
   font-size: 18px;
   font-weight: 500;
   color: var(--text-medium);
 }

 /* Responsive Design */
 @media (max-width: 992px) {
   .work_step_list {
     grid-template-columns: 1fr;
   }

   .why_ai_model_list {
     grid-template-columns: repeat(2, 1fr);
   }

   .work_step_content_point ul {
     grid-template-columns: 1fr;
   }
 }

 @media (max-width: 768px) {
   h1 {
     font-size: 36px;
   }

   h2 {
     font-size: 28px;
   }

   /* .page_banner {
     padding: 60px 0 40px;
   } */

   .why_ai_model_list {
     grid-template-columns: 1fr;
   }

   .work_step_item {
     padding: 25px;
   }

   .work_step_content_point ul {
     grid-template-columns: 1fr;
   }

   .work_step_content_point ul li {
     padding: 20px;
   }
 }
 




























    /* Implementation Process Section - Bootstrap Grid with CSS */
    /* .process.for_enterprise_section_wrapper {
        padding: 60px 0;
      } */
    .process.for_enterprise_section_wrapper .process_info .process_info_list .row {
      display: flex;
      flex-wrap: wrap;
    }
  
    .process.for_enterprise_section_wrapper .process_info .process_info_list .row>[class*="col-"] {
      padding: 3px 10px;
      /* 20px total gap (10+10) */
    }
  
    /* .process.for_enterprise_section_wrapper .process_info h2 {
      font-size: 40px;
      font-weight: 600;
      text-align: center;
      color: var(--btn-bg-dark);
      font-family: var(--font-family-Playfair-Display);
      font-family: 'Playfair Display';

    } */
  
    .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      padding: 20px;
      border-radius: var(--border-radius);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
  
    /* Decorative Corner Element */
    .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 80px;
      height: 80px;
      background: var(--bg-soft-blue);
      border-radius: 4px 0 80px 0;
      transition: all 0.4s ease;
      z-index: 0;
    }
  
    /* Hover Background Fill Effect */
    .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--btn-bg-dark);
      z-index: -1;
      border-radius: var(--border-radius);
      clip-path: polygon(0 0, 0 0, 0 0, 0 0);
      transition: clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
  
    .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item:hover {
      border-color: var(--btn-bg-dark);
      /* transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(2, 19, 70, 0.15); */
    }
  
    .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item:hover::before {
      width: 100%;
      height: 100%;
      border-radius: var(--border-radius);
      background: var(--btn-bg-dark);
    }
  
    .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item:hover::after {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
  
    .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item .process_info_icon {
      width: 80px;
      height: 80px;
      padding: 20px;
      background-color: var(--bg-soft-blue);
      border: 8px solid var(--border-color);
      font-family: var(--font-family-Inter);
      font-family: 'Inter';

      font-weight: 700;
      font-size: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: var(--text-medium);
      /* margin-bottom: 25px; */
      position: relative;
      z-index: 1;
      transition: all 0.4s ease;
    }
  
    .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item:hover .process_info_icon {
      background-color: var(--text-light);
      border-color: var(--text-light);
      color: var(--btn-bg-dark);
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(2, 19, 70, 0.2);
    }
  
    .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item .work_step_content {
      position: relative;
      z-index: 1;
    }
  
    /* .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item .work_step_content h3 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--text-medium);
      font-family: var(--font-family-Playfair-Display);
      font-family: 'Playfair Display';

      transition: color 0.4s ease;
    } */
  
    /* .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item .work_step_content p {
      font-size: 16px;
      font-weight: 400;
      line-height: 30px;
      margin: 0;
      color: var(--text-gray);
      font-family: var(--font-family-Inter);
      font-family: 'Inter';

      transition: color 0.4s ease;
    } */
  
    .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item:hover .work_step_content h3 {
      color: var(--text-light);
    }
  
    .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item:hover .work_step_content p {
      color: var(--text-light);
      opacity: 0.95;
    }
  
    /* Responsive */
    @media (max-width: 768px) {
      /* .process.for_enterprise_section_wrapper {
        padding: 40px 0;
      } */
  
      /* .process.for_enterprise_section_wrapper .process_info h2 {
        font-size: 32px;
        margin-bottom: 40px;
      } */
  
      /* .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item {
        padding: 35px 25px;
      } */
  
      /* .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item .process_info_icon {
        width: 90px;
        height: 85px;
        font-size: 45px;
        margin-bottom: 20px;
      }
   */
      /* .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item .work_step_content h3 {
        font-size: 22px;
      } */
    }
  
    @media (max-width: 480px) {
      /* .process.for_enterprise_section_wrapper .process_info h2 {
        font-size: 28px;
      } */
  
      /* .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item {
        padding: 30px 20px;
      }
  
      .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item .process_info_icon {
        width: 80px;
        height: 75px;
        font-size: 40px;
        border: 6px solid var(--border-color);
      } */
  
      /* .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item .work_step_content h3 {
        font-size: 20px;
      }
  
      .process.for_enterprise_section_wrapper .process_info .process_info_list .process_info_item .work_step_content p {
        font-size: 15px;
      } */
    }


























    



























 /* ============================================
       HOW IT WORKS SECTION - MAIN WRAPPER
       ============================================ */

/* 
 .how_it_works_section_wrapper .container {
   max-width: 1140px;
   margin: 0 auto;
   padding: 0 15px;
 } */

 /* Page Banner */
 /* .how_it_works_section_wrapper .page_banner {
   text-align: center;
   margin-bottom: 40px;
 } */

 /* .how_it_works_section_wrapper .page_banner_content h1 {
   font-size: 48px;
   font-weight: 700;
   color: var(--btn-bg-dark);
   margin-bottom: 15px;
 } */

 /* .how_it_works_section_wrapper .page_banner_content p {
   font-size: 20px;
   color: var(--text-gray);
   max-width: 800px;
   margin: 0 auto;
 } */

 /* ============================================
       SECTION: HERO INTRO
       ============================================ */
 /* .how_it_works_section_wrapper .hero_intro_section {
   margin-bottom: 50px;
 } */

 .how_it_works_section_wrapper .hero_intro_content {
   text-align: center;
 }

 /* .how_it_works_section_wrapper .hero_intro_content h2 {
   font-size: 32px;
   font-weight: 600;
   color: var(--btn-bg-dark);
   margin-bottom: 20px;
 } */

 /* .how_it_works_section_wrapper .hero_intro_content p {
   font-size: 18px;
   line-height: 1.8;
   color: var(--text-gray);
   max-width: 900px;
   margin: 0 auto 15px;
 } */

 /* ============================================
       SECTION: INDEPENDENT EXECUTIVE ANALYSIS
       ============================================ */
 /* .how_it_works_section_wrapper .analysis_section {
   margin-bottom: 50px;
 } */

 .how_it_works_section_wrapper .analysis_card {
   background: var(--bg-white);
   border: 1px solid var(--border-color);
   border-radius: var(--border-radius);
   padding: 20px;
   transition: all 0.4s ease;
 }

 .how_it_works_section_wrapper .analysis_card:hover {
   border-color: var(--btn-bg-dark);
   box-shadow: var(--shadow-soft);
 }

 /* .how_it_works_section_wrapper .analysis_card h3 {
   font-size: 28px;
   font-weight: 600;
   color: var(--btn-bg-dark);
   margin-bottom: 20px;
   text-align: center;
 } */
/* 
 .how_it_works_section_wrapper .analysis_card>p {
   font-size: 17px;
   color: var(--text-gray);
   margin-bottom: 30px;
   text-align: center;
 } */

 /* Dimensions Grid */
 .how_it_works_section_wrapper .dimensions_grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 20px;
   /* margin-bottom: 30px; */
 }

 /* .how_it_works_section_wrapper .dimension_item {
   background: var(--bg-soft-blue);
   border: 1px solid var(--border-color);
   border-radius: 10px;
   padding: 25px;
   transition: all 0.4s ease;
   position: relative;
   overflow: hidden;
   cursor: pointer;
 }

 .how_it_works_section_wrapper .dimension_item::before {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   width: 60px;
   height: 60px;
   background: var(--btn-bg-dark);
   opacity: 0.1;
   border-radius: 4px 0 60px 0;
   transition: all 0.4s ease;
   z-index: 0;
 }

 .how_it_works_section_wrapper .dimension_item:hover {
   border-color: var(--btn-bg-dark);
   transform: translateY(-5px);
   box-shadow: var(--shadow-soft);
 }

 .how_it_works_section_wrapper .dimension_item:hover::before {
   width: 100%;
   height: 100%;
   opacity: 0.05;
 } */

 /* .how_it_works_section_wrapper .dimension_item h4 {
   font-size: 17px;
   font-weight: 600;
   color: var(--text-medium);
   margin-bottom: 10px;
   position: relative;
   z-index: 1;
 } */

 .how_it_works_section_wrapper .dimension_item p {
   font-size: 15px;
   line-height: 1.6;
   color: var(--text-gray);
   margin: 0;
   position: relative;
   z-index: 1;
 }

 .how_it_works_section_wrapper .analysis_card .closing_note {
   font-size: 16px;
   color: var(--text-gray);
   text-align: center;
   margin-top: 20px;
   font-style: italic;
 }

 /* ============================================
       SECTION: BOARD-READY SYNTHESIS
       ============================================ */
 /* .how_it_works_section_wrapper .synthesis_section {
   margin-bottom: 50px;
 } */

 .how_it_works_section_wrapper .synthesis_card {
   background: var(--bg-white);
   border: 1px solid var(--border-color);
   border-radius: var(--border-radius);
   padding: 20px;
   transition: all 0.4s ease;
 }

 .how_it_works_section_wrapper .synthesis_card:hover {
   border-color: var(--btn-bg-dark);
   box-shadow: var(--shadow-soft);
 }

 /* .how_it_works_section_wrapper .synthesis_card h3 {
   font-size: 28px;
   font-weight: 600;
   color: var(--btn-bg-dark);
   margin-bottom: 20px;
   text-align: center;
 }

 .how_it_works_section_wrapper .synthesis_card>p {
   font-size: 17px;
   color: var(--text-gray);
   margin-bottom: 15px;
   text-align: center;
 } */

 /* .how_it_works_section_wrapper .synthesis_list {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 20px;
   margin-top: 30px;
 } */

 /* .how_it_works_section_wrapper .synthesis_list_item {
   background: var(--bg-soft-blue);
   border: 1px solid var(--border-color);
   border-radius: 10px;
   padding: 20px;
   transition: all 0.4s ease;
   position: relative;
   overflow: hidden;
   cursor: pointer;
 } */

 /* .how_it_works_section_wrapper .synthesis_list_item::before {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   width: 50px;
   height: 50px;
   background: var(--btn-bg-dark);
   opacity: 0.1;
   border-radius: 4px 0 50px 0;
   transition: all 0.4s ease;
   z-index: 0;
 } */

 /* .how_it_works_section_wrapper .synthesis_list_item:hover {
   border-color: var(--btn-bg-dark);
   transform: translateY(-3px);
   box-shadow: var(--shadow-soft);
 }

 .how_it_works_section_wrapper .synthesis_list_item:hover::before {
   width: 100%;
   height: 100%;
   opacity: 0.05;
 } */

 /* .how_it_works_section_wrapper .synthesis_list_item p {
   font-size: 16px;
   font-weight: 500;
   color: var(--text-medium);
   margin: 0;
   position: relative;
   z-index: 1;
   text-align: center;
 } */

 /* ============================================
       SECTION: BUILT FOR LEADERS
       ============================================ */
 /* .how_it_works_section_wrapper .leaders_section {
   margin-bottom: 40px;
 }

 .how_it_works_section_wrapper .leaders_highlight {
   background: linear-gradient(135deg, var(--bg-soft-blue) 0%, #e8e8e8 100%);
   border-left: 5px solid var(--btn-bg-dark);
   border-radius: 12px;
   padding: 40px;
   transition: all 0.4s ease;
 }

 .how_it_works_section_wrapper .leaders_highlight:hover {
   box-shadow: var(--shadow-soft);
 } */

 /* .how_it_works_section_wrapper .leaders_highlight h3 {
   font-size: 28px;
   font-weight: 600;
   color: var(--btn-bg-dark);
   margin-bottom: 20px;
   text-align: center;
 } */

 /* .how_it_works_section_wrapper .leaders_highlight>p {
   font-size: 17px;
   color: var(--text-gray);
   margin-bottom: 20px;
   text-align: center;
 } */

 /* .how_it_works_section_wrapper .leaders_values_list {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
   margin-bottom: 30px;
 }

 .how_it_works_section_wrapper .leaders_value_item {
   background: var(--bg-white);
   border: 1px solid var(--border-color);
   border-radius: 10px;
   padding: 25px;
   text-align: center;
   transition: all 0.4s ease;
   cursor: pointer;
   position: relative;
   overflow: hidden;
 }

 .how_it_works_section_wrapper .leaders_value_item::after {
   content: '';
   position: absolute;
   inset: 0;
   background: var(--btn-bg-dark);
   z-index: -1;
   border-radius: 10px;
   clip-path: polygon(0 0, 0 0, 0 0, 0 0);
   transition: clip-path 0.5s ease-in-out;
 }

 .how_it_works_section_wrapper .leaders_value_item:hover::after {
   clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
 }

 .how_it_works_section_wrapper .leaders_value_item:hover {
   border-color: var(--btn-bg-dark);
   transform: translateY(-5px);
   box-shadow: var(--shadow-soft);
 } */

 /* .how_it_works_section_wrapper .leaders_value_item p {
   font-size: 16px;
   font-weight: 500;
   color: var(--text-medium);
   margin: 0;
   position: relative;
   z-index: 1;
   transition: color 0.4s ease;
 } */

 /* .how_it_works_section_wrapper .leaders_value_item:hover p {
   color: var(--text-light);
 } */

 /* .how_it_works_section_wrapper .leaders_highlight .closing_statement {
   font-size: 17px;
   color: var(--text-gray);
   text-align: center;
   margin-top: 20px;
 } */

 /* ============================================
       RESPONSIVE DESIGN
       ============================================ */
 @media (max-width: 992px) {
   /* .how_it_works_section_wrapper .page_banner_content h1 {
     font-size: 40px;
   } */

   /* .how_it_works_section_wrapper .dimensions_grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .how_it_works_section_wrapper .synthesis_list {
     grid-template-columns: 1fr;
   }

   .how_it_works_section_wrapper .leaders_values_list {
     grid-template-columns: 1fr;
   } */
 }

 @media (max-width: 768px) {
   /* .how_it_works_section_wrapper {
     padding: 40px 0;
   } */

   /* .how_it_works_section_wrapper .page_banner_content h1 {
     font-size: 32px;
   }

   .how_it_works_section_wrapper .page_banner_content p {
     font-size: 18px;
   }

   .how_it_works_section_wrapper .hero_intro_content h2,
   .how_it_works_section_wrapper .analysis_card h3,
   .how_it_works_section_wrapper .synthesis_card h3,
   .how_it_works_section_wrapper .leaders_highlight h3 {
     font-size: 24px;
   } */

   /* .how_it_works_section_wrapper .dimensions_grid {
     grid-template-columns: 1fr;
   }

   .how_it_works_section_wrapper .analysis_card,
   .how_it_works_section_wrapper .synthesis_card,
   .how_it_works_section_wrapper .leaders_highlight {
     padding: 30px 20px;
   } */
 }

 @media (max-width: 576px) {
   /* .how_it_works_section_wrapper .page_banner_content h1 {
     font-size: 28px;
   }

   .how_it_works_section_wrapper .page_banner_content p {
     font-size: 16px;
   }

   .how_it_works_section_wrapper .hero_intro_content h2,
   .how_it_works_section_wrapper .analysis_card h3,
   .how_it_works_section_wrapper .synthesis_card h3,
   .how_it_works_section_wrapper .leaders_highlight h3 {
     font-size: 22px;
   } */

   /* .how_it_works_section_wrapper .dimension_item,
   .how_it_works_section_wrapper .synthesis_list_item,
   .how_it_works_section_wrapper .leaders_value_item {
     padding: 20px;
   } */
 }

 /* SAFARI ONLY */
 @supports (-webkit-touch-callout: none) {
   .policy_point_info_list_item {
     border-color: rgba(217, 217, 217, 1);
     border-width: 1.01px;

     -webkit-transform: translateZ(0);
     transform: translateZ(0);
   }
 }

 /* 22-12-2025 hardik */
.header #signInButton .primary_btn {
  /* padding: 8px 16px; */
  font-size: 15px;
}
.Bg {
  padding: 20px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
  background-color: var(--bg-soft-blue);
  line-height: normal;
  position: relative;
  margin-bottom: 20px;
}

.Bg #content {
    font-size: 22px;
    color: var(--btn-light-blue);
    margin-bottom: 0;
    transition: opacity 0.2s;
    margin-bottom: 0;
}

#content.expanded {
  -webkit-line-clamp: unset;
    max-height: none;             
}

.read-more {
  margin-top: 10px;
  background: none;
  border: none;
  color: var(--btn-bg-dark);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.user-input-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: calc(1.5em * 3);
  transition: max-height 0.3s ease;
}

.user-input-text.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
}

#content span {
  transition: opacity 0.2s ease;
  color: var(--btn-light-blue);
  font-family: var(--font-family-Playfair-Display);
  font-family: 'Playfair Display';

}
.remove-file{
  padding: 0;
  border: none;
  background: transparent;
}
  /* .read-more {
  background: none;
  border: none;
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: 0.9em;
  } */
@media screen and (max-width: 1280px){
.header .navbar #profileSection {
    right: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .number-4 {
    font-size: 150px;
  }

  .error-numbers {
    gap: 30px;
  }

  .ai-icon {
    width: 100px;
    height: 100px;
  }

  .ai-icon svg {
    width: 50px;
    height: 50px;
  }

  .error-title {
    font-size: 40px;
  }

  .error-description {
    font-size: 17px;
  }
}
/* Responsive: hide menu in desktop */
@media (min-width: 992px) {
  .custom-toggler {
    display: none;
  }
  .custom-collapse {
    position: static;
    height: auto;
    width: 100%;
    display: flex !important;
    flex-direction: row;
    gap: 20px;
    padding: 0;
    background: transparent;
    left: 0 !important;
    align-items: center;
  }
  .custom-collapse ul {
    gap: 20px;
    margin: 0 auto;
  }
/* .analysis_content_left.dashboard_analysis_content_left h3 {
    max-width: 80%;
  } */
}

/* 3-12-2025 */
@media (max-width: 1199px){
  .header .navbar .navbar-nav .nav-link, .footer_link a{
    font-size: 14px;
  }
  .header .navbar .navbar-nav {
    gap: 12px;
  }
  .header .navbar #profileSection {
    right: 4%;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  /* .page-content {
    height: 100%;
  } */
  .header .navbar .navbar-nav {
    gap: 10px;
  }
  .header .navbar .navbar-nav .nav-link{
    font-size: 16px ;
  }
  .company_info_list,.template_list,.analysis_info_list {
    grid-template-columns: repeat(3, 1fr);
  }
  .info_point_list,
  .use_caps_info_list,
  .plans_list,
  .plan_enhance_point_list,
  .trust_excutives_info_list,
  .case_study_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .process_info_item .process_info_icon {
    padding: 15px;
    width: 85px;
    height: 85px;
    font-size: 50px;
  }
  .process_info_item .work_step_content {
    width: calc(100% - 110px);
  }
  .founder_message_content,
  .about_us_info_list > ul {
    gap: 15px;
  }
  /* .page_sec {
    padding: 10px 0;
  } */
  .leader_info_list .row {
    align-items: start !important;
  }
  .recent_analysis_info_content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .analysis_content_right {
    justify-content: space-between;
    width: 100%;
  }
  .analysis_content_right_inr {
    text-align: left !important;
  }
}

/* tab responsive */
@media (max-width: 991px) {
  /* Custom collapse menu */
  .custom-collapse {
    position: fixed;
    top: 95px;
    left: -100%;
    width: 100%;
    height: auto;
    background-color: var(--bg-soft-blue);
    padding: 20px;
    transition: left 0.4s ease;
    display: block;
    gap: 20px;
  }

  .header_inr{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 15px;
  }

  .header_inr .profile{
    display: block;
  }

  .profile > img{
    width: 40px;
  }

  .header .navbar .navbar-nav .nav-link::after,.header .navbar .container > .profile {
    display: none;
  }

  .up_arrow_btn .primary_btn{
    padding: 10px 30px;
    font-size: 10px;
  }

  .custom-collapse.show {
    left: 0;
  }
  /* Jab collapse open ho tab body ka overflow hidden */
  .custom-collapse.show~body,
  body:has(.custom-collapse.show) {
    overflow: hidden;
  }
  .header .navbar .navbar-nav {
    gap: 10px;
    margin-bottom: 15px;
  }
/* 3-12-2025 */
.up_arrow_btn span {
  width: 22px;
  height: 22px;
  right: 4px;
}
  .header .navbar .navbar-nav .nav-link {
    padding: 0;
    font-size: 16px;
  }
  /* .trial_content .form-group label {
    margin-bottom: 10px;
  } */
  .company_info_list,
  .why_ai_model_list,
  .analysis_info_list,
  .template_list {
    grid-template-columns: repeat(3, 1fr);
  }

  /* footer */
  .footer_content {
    grid-template-columns: 1fr;
  }
  .footer_copyright,.footer_info {
    text-align: center !important;
  }
  .footer_link {
    justify-content: center;
  }

  /* sign in */
  /* .auth_info_box,
  .auth_inr,
  .work_step_item,
  .work_step_list,
  .process_info_item {
    gap: 25px;
  } */

  .work_step_icon img {
    width: 80px;
  }

  .info_point_list,
  .use_caps_info_list,
  .plans_list,
  .plan_enhance_point_list,
  .trust_excutives_info_list,
  .case_study_list,.summary_list,.board_analysis_list,.key_factor_list   {
    grid-template-columns: repeat(2, 1fr);
  }
  .process_info_item .process_info_icon {
    padding: 15px;
    width: 85px;
    height: 85px;
    font-size: 50px;
  }
  .process_info_item .work_step_content {
    width: calc(100% - 110px);
  }

  /* .info_point,
  .security {
    padding-bottom: 30px;
  } */
  /* .policy_update_info h4 {
    margin-bottom: 15px;
  } */

  /* pricing */

  /* .plan_title_content p,
  .plan_info_point ul li p,
  .plan_free_trail_btn p,
  .trust_item_content p {
    line-height: 22px;
  } */
  .plan_capare_info_content .table th,
  .plan_capare_info_content .table td,
  .payment_history_content .table th,
  .payment_history_content .table td {
    white-space: nowrap;
    font-size: 16px;
  }
  .plan_list_item label.free_trial,
  .plan_list_item label.popular,
  .plan_list_item label.save {
    padding: 5px 10px;
  }
  .shadow_board {
    padding: 0 0 30px;
  }
  .leader_info_list .row {
    align-items: start !important;
  }
  /* dashboard */
  .start_new_analysis_btn a img,
  .analysis_content_right a img {
    width: 35px;
  }
  .analysis_info_item_content h3,
  .template_content h3,.board_analysis_header h3,.caution label {
    font-size: 20px;
  }
  /* .recent_analysis_info_content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  } */
  .analysis_content_right {
    justify-content: space-between;
    /* width: 100%; */
  }
  .analysis_content_right_inr {
    text-align: left !important;
  }
  .info_short_list_item span{
    font-size: 15px;
  }
  .leader_info,.analysis,.summary{
    padding: 0 0 10px;
  }
  .template_icon img,.analysis_icon img{
    width: 40px;
  }
  .analysis_inr_star{
    width: 40px;
    height: 40px;
  }
  /* .analysis_content_left.dashboard_analysis_content_left h3 {
    max-width: 70%;
  } */
  .analysis_inr_star img{
    width: 25px;
  }
  /* payment history */
  .payment_history_content{
    padding: 20px;
  }

  .board_analysis_header,.board_analysis_content{
    padding: 15px;
  }
  /* 4-12-2025 */
  .header .profile-initial{
    font-size: 16px;
    display: flex;
    height: 100%;
    width: 100%;
    padding: 6px 14px;
  }
  /* .header .navbar #profileSection{
    right: 16%;
} */
.custom-toggler.active .bottom {
  transform: rotate(-45deg) translate(12px, -14px);
}
.leader_info_list .row.align-items-center>div:nth-child(3) {
  order: 3;
}
#profileSection{
  display: block;
}
.header .navbar #profileSection {
  right: 20%;
}
/* .executive_decision_inr,
.multi_model_inr {
  gap: 20px;
} */
.header_profile_toggler_wrap{
  display: flex;
  align-items: center;
}
  .veriqo_advantage_info_inr {
    padding: 0;
  }
}
    @media (max-width: 768px) {
      /* .contact-section {
        padding: 40px 0;
      } */
  
      /* .contact_form_title p {
        font-size: 16px;
      }
   */
      /* .contact_form_wrapper {
        padding: 30px 20px;
      } */
  
      .form-row {
        grid-template-columns: 1fr;
        /* gap: 20px; */
      }
  
      .submit-btn {
        width: 100%;
        padding: 14px 30px;
      }

      /* .policy_point_info_list_item {
        padding: 30px 20px;
      } */

      /* .policy_point_info_list_item h3 {
        font-size: 24px;
      }

      .policy_point_info_list_item ul li p {
        font-size: 16px;
      } */
    }
@media (max-width: 767px) {

  .page-content,.auth-content{
    margin-top: 72px;
  }
 h1 {
    font-size: 28px;
  }
  h2{
    font-size: 26px;
  }
  h3{
  font-size: 24px;
  }
  .navbar-brand img {
    height: 40px;
  }
  .header {
    padding: 10px 0;
  }
  /* .why_ai_modal,
  .process {
    padding: 20px 0;
  } */
  .custom-toggler {
    width: 25px;
    gap: 6px;
    z-index: 99999999;
  }
  .custom-collapse {
    top: 70px;
  }
  .custom-toggler.active .top {
    transform: rotate(45deg) translate(8px, 5px);
  }
  .custom-toggler.active .bottom {
    transform: rotate(-45deg) translate(7px, -5px);
  }
  .primary_btn {
    padding: 12px;
    font-size: 14px;
  }
  .subscription_sec_wrapper p{
    margin-bottom: 16px;
  }

  .hero_info_box {
    margin-top: 10px;
    padding: 10px;
  }
  .hero_info_box span,
  .footer_content p,
  .work_step_content p {
    line-height: 18px;
  }
  .footer_link{
    flex-direction: column;
  }
  .footer_link a {
    font-size: 14px;
  }
  /* .footer_info p{
    margin-bottom: 10px;
  } */
  /* 3-12-22025 */
    .up_arrow_btn span svg {
      width: 14px;
    }
  /* .form-group .form-control {
    font-size: 14px;
    padding: 12px;
  } */
  .form-group .form-control::placeholder {
    font-size: 12px;
  }
  /* .trial_content,
  .security_info,
  .case_study_item_header,
  .case_study_content,
  .veriqo_advantage_info_inr,.recent_analysis_info_inr,.payment_history_content,.board_analysis_header {
    padding: 12px;
  } */
  .case_studt_item_sub_header{
    padding-bottom: 12px;
  }
  .company_info_list,
  .why_ai_model_list,
  .info_point_list,
  .use_caps_info_list,
  .plans_list,
  .plan_enhance_point_list,
  .trust_excutives_info_list,
  .case_study_list,
  .veriqo_advantage_list,.analysis_info_list,.template_list,.summary_list,.board_analysis_list,.key_factor_list, .synthesis_section {
    grid-template-columns: 1fr;
  }
  /* .consult_info_content h3,
  .policy_point_info_list_item ul li p,
  .policy_info_list_item_inr p,
  .monthly_info ul li p,
  .plan_best_point ul li p,
  .plan_enhance_point_list_item ul li p,
  .case_study_content ul li p {
    font-size: 15px;
    line-height: 22px;
  } */
  .footer_link,
  .case_study_content ul,.footer_content {
    /* flex-direction: column; */
    gap: 10px;
  }
  .footer_link a::before {
    display: none;
  }

  /* sign in */
  /* .auth_sec,
  .how_work_step,
  .why_ai_modal{
    padding: 20px 0;
  } */
  .auth_inr a {
    font-size: 14px;
  }
  /* how it work */

  .work_step_icon img {
    width: 60px;
  }

  /* .work_step_item,
  .shadow_board_info .row,
  .executive_decision_inr,
  .multi_model_inr {
    gap: 15px;
  } */
  .ai_modal_inr .hero_info_box {
    margin-top: 20px;
  }
  .info_point_list_item h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .info_point_list_item ul li p,
  .security_info_content p,
  .accordion-body {
    font-size: 14px;
    line-height: 20px;
  }
  .process_info_item .work_step_content {
    width: calc(100% - 65px);
  }
  .process_info_list,
  .founder_message_content,.analysis_content_left h3 {
    gap: 20px;
  }
  .process_info_item .process_info_icon {
    padding: 5px;
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-width: 5px;
  }
  /* .work_step_content,
  .plan_list_item,
  .plan_enhance_point_list_item,
  .trust_excutives_info_list_item,
  .founder_message_info,.start_new_analysis,.summary_list_item {
    padding: 15px;
  } */
  .company_info_list_item .item_img img,
  .shadow_board_list_item .item_img img {
    width: 40px;
  }
  /* .policy_point,
  .veriqo_advantage,.key_factor {
    padding: 10px 0 20px;
  } */
  /* .policy_update_info h4 {
    font-size: 16px;
    margin-bottom: 20px;
  } */
  /* .policy_point_info_list_item h3,.board_analysis_header h3 {
    font-size: 20px;
  } */

  /* pricing */
  /* .plan_price_info h3 span,
  .accordion-button,
  .trust_item_content h3,
  .veriqo_advantage_list_item h3 {
    font-size: 20px;
  } */
  .plan_price_info.plan_price_info_sub_header {
    min-height: auto;
  }

  .shadow_board {
    padding: 0 0 20px;
  }
  .shadow_board_list_item {
    padding: 20px;
  }

  /* about */
  .leader_info_content {
    text-align: center !important;
  }

  .leader_info_list .row .col-lg-3:nth-of-type(4) {
    order: 3;
  }
  .leader_info_list .row .col-lg-9:nth-of-type(3) {
    order: 4;
  }
  .sec_title_content h2 {
    font-size: 25px;
    margin-bottom: 5px;
  }
  /* dashboard */
  .start_new_analysis_inr{
    flex-wrap: wrap;
  }
  .start_new_analysis_btn a img, .analysis_content_right a img{
    width: 25px;
  }
  .analysis_content_left h3,.caution label{
    font-size: 18px;
  }
  .analysis_content_left ul li label, .analysis_content_right_inr h3, .analysis_content_right_inr label{
    font-size: 16px;
  }
  .info_short_list{
    grid-template-columns: repeat(3,1fr);
  }

  /* payment history */

  .table_pagination .paginate_btn{
    padding: 5px;
    border-radius: 5px;
    width: 30px;
    height: 30px;
  }
  .table_pagination .paginate_btn span{
    display: none;
  }
  .table_pagination ul{
    gap: 5px;
  }
  .table_pagination ul li a{
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
  .payment_history_content .table td .primary_btn img{
    width: 15px;
  }
 
  .profile > img{
    width: 30px;
  }
  .modal-content {
    padding: 24px; /* 1.5rem -> 24px */
    width: 90%;
}

.modal-title {
    font-size: 20px; /* 1.25rem -> 20px */
}

.modal-close {
    top: 10px;
    right: 10px;
    font-size: 20px; /* 1.25rem -> 20px */
    width: 25px;
    height: 25px;
}
/* 17-11-2025 */
 .error-container {
   padding: 40px 20px 50px;
   display: flex;
   align-items: center;
   justify-content: center;
   height: auto;
   min-height: 100%;
 }

 .error-container .error-content {
   padding: 0px;
 }

 .error-container .number-4 {
   font-size: 100px;
 }

 .error-container .icon-container {
   width: 70px;
   height: 70px;
 }

 .error-container .ai-icon svg {
   width: 35px;
   height: 35px;
 }

 .error-container .error-title {
   font-size: 28px;
 }

 .error-container .error-description {
   font-size: 15px;
   margin-bottom: 1.5rem;
 }
 .error-content {
   padding: 30px 20px;
 }

 .number-4 {
   font-size: 120px;
   letter-spacing: -3px;
 }

 .error-numbers {
   gap: 20px;
   margin-bottom: 30px;
 }

 .ai-icon {
   width: 80px;
   height: 80px;
 }

 .ai-icon svg {
   width: 40px;
   height: 40px;
 }

 .error-title {
   font-size: 32px;
   margin-bottom: 16px;
 }

 .error-description {
   font-size: 16px;
   margin-bottom: 30px;
 }

 .error-actions {
   margin-top: 30px;
 }

 .btn-home {
   padding: 14px 32px;
   font-size: 15px;
 }
 .header .navbar #profileSection {
   width: 30px;
   height: 30px;
  right: 18%;
 }
 .header .navbar #profileSection .profile-btn {
   font-size: 15px;
 }
 h2 {
  font-size: 24px;
 }
 .header .navbar .navbar-nav .nav-link{
  line-height: 24px;
 }
  .synthesis_section .synthesis_section_iner_wrap, .about_custom_row {
      grid-template-columns: 1fr;
  }
  .analysis_content_right{
    justify-content: space-between !important; 
  }
  .recent_analysis_info_content{
    gap: 20px;
  }
  .table_pagination {
    justify-content: space-between;
  }
  /* 22-12-2025 */
  .Bg #content{
    font-size: 18px;
  }
}

/* 17-11-2025 */
 @media (max-width: 576px) {
   .error-container .error-container {
     padding: 0;
   }

   .error-container .number-4 {
     font-size: 70px;
   }

   .error-container .icon-container {
     width: 60px;
     height: 60px;
   }

   .error-container .ai-icon svg {
     width: 30px;
     height: 30px;
   }

   .error-container .error-title {
     font-size: 24px;
   }

   .error-container .error-description {
     font-size: 14px;
   }
  .plan_title_highlight span{
    padding: 8px 16px;
  }
  .payment_history h1.main-titlepro{
    font-size: 40px;
  }
  .work_step_item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .process_info_item {
    gap: 20px;
  }
    .error-content {
      padding: 20px 15px;
    }
  
    .number-4 {
      font-size: 80px;
      letter-spacing: -2px;
    }
  
    .number-4::before {
      filter: blur(20px);
    }
  
    .error-numbers {
      gap: 15px;
      margin-bottom: 25px;
    }
  
    .ai-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
    }
  
    .ai-icon::before {
      border-radius: 16px;
    }
  
    .ai-icon svg {
      width: 30px;
      height: 30px;
    }
  
    .error-title {
      font-size: 26px;
      margin-bottom: 14px;
    }
  
    .error-description {
      font-size: 15px;
      line-height: 1.5;
      margin-bottom: 25px;
    }
  
    .error-actions {
      margin-top: 25px;
    }
  
    .btn-home {
      padding: 12px 28px;
      font-size: 14px;
      width: 100%;
      max-width: 280px;
    }
    .header .navbar #profileSection {
      right: 12%;
    }
  /* .case_study_item li svg,
  .plan_info_point li svg,
  .pricing_enterprising_solution_list_wrapper li svg,
  .about_us_info_list_item li svg {
    min-height: 24px;
  } */
 }
 @media screen and (max-width: 400px) {
   .number-4 {
     font-size: 60px;
   }

   .error-numbers {
     gap: 10px;
   }

   .ai-icon {
     width: 50px;
     height: 50px;
     border-radius: 12px;
   }

   .ai-icon::before {
     border-radius: 12px;
   }

   .ai-icon svg {
     width: 25px;
     height: 25px;
   }

   .error-title {
     font-size: 22px;
   }

   .error-description {
     font-size: 14px;
   }
 }
@media (max-width: 350px) {
  .footer_link {
    flex-direction: column;
  }
}
@media (max-width: 320px){
.header .navbar #profileSection {
    right: 15%;
  }
}
.swal2-popup.swal2-toast{box-sizing:border-box;grid-column:1/4!important;grid-row:1/4!important;grid-template-columns:min-content auto min-content;padding:1em;overflow-y:hidden;background:#fff;box-shadow:0 0 1px rgba(0,0,0,.075),0 1px 2px rgba(0,0,0,.075),1px 2px 4px rgba(0,0,0,.075),1px 3px 8px rgba(0,0,0,.075),2px 4px 16px rgba(0,0,0,.075);pointer-events:all}.swal2-popup.swal2-toast>*{grid-column:2}.swal2-popup.swal2-toast .swal2-title{margin:.5em 1em;padding:0;font-size:1em;text-align:initial}.swal2-popup.swal2-toast .swal2-loading{justify-content:center}.swal2-popup.swal2-toast .swal2-input{height:2em;margin:.5em;font-size:1em}.swal2-popup.swal2-toast .swal2-validation-message{font-size:1em}.swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.swal2-popup.swal2-toast .swal2-close{grid-column:3/3;grid-row:1/99;align-self:center;width:.8em;height:.8em;margin:0;font-size:2em}.swal2-popup.swal2-toast .swal2-html-container{margin:.5em 1em;padding:0;overflow:initial;font-size:1em;text-align:initial}.swal2-popup.swal2-toast .swal2-html-container:empty{padding:0}.swal2-popup.swal2-toast .swal2-loader{grid-column:1;grid-row:1/99;align-self:center;width:2em;height:2em;margin:.25em}.swal2-popup.swal2-toast .swal2-icon{grid-column:1;grid-row:1/99;align-self:center;width:2em;min-width:2em;height:2em;margin:0 .5em 0 0}.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{display:flex;align-items:center;font-size:1.8em;font-weight:700}.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.swal2-popup.swal2-toast .swal2-actions{justify-content:flex-start;height:auto;margin:0;margin-top:.5em;padding:0 .5em}.swal2-popup.swal2-toast .swal2-styled{margin:.25em .5em;padding:.4em .6em;font-size:1em}.swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:1.6em;height:3em;transform:rotate(45deg);border-radius:50%}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.8em;left:-.5em;transform:rotate(-45deg);transform-origin:2em 2em;border-radius:4em 0 0 4em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;transform-origin:0 1.5em;border-radius:0 4em 4em 0}.swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip{animation:swal2-toast-animate-success-line-tip .75s}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long{animation:swal2-toast-animate-success-line-long .75s}.swal2-popup.swal2-toast.swal2-show{animation:swal2-toast-show .5s}.swal2-popup.swal2-toast.swal2-hide{animation:swal2-toast-hide .1s forwards}.swal2-container{display:grid;position:fixed;z-index:1060;top:0;right:0;bottom:0;left:0;box-sizing:border-box;grid-template-areas:"top-start     top            top-end" "center-start  center         center-end" "bottom-start  bottom-center  bottom-end";grid-template-rows:minmax(min-content,auto) minmax(min-content,auto) minmax(min-content,auto);height:100%;padding:.625em;overflow-x:hidden;transition:background-color .1s;-webkit-overflow-scrolling:touch}.swal2-container.swal2-backdrop-show,.swal2-container.swal2-noanimation{background:rgba(0,0,0,.4)}.swal2-container.swal2-backdrop-hide{background:rgba(0,0,0,0)!important}.swal2-container.swal2-bottom-start,.swal2-container.swal2-center-start,.swal2-container.swal2-top-start{grid-template-columns:minmax(0,1fr) auto auto}.swal2-container.swal2-bottom,.swal2-container.swal2-center,.swal2-container.swal2-top{grid-template-columns:auto minmax(0,1fr) auto}.swal2-container.swal2-bottom-end,.swal2-container.swal2-center-end,.swal2-container.swal2-top-end{grid-template-columns:auto auto minmax(0,1fr)}.swal2-container.swal2-top-start>.swal2-popup{align-self:start}.swal2-container.swal2-top>.swal2-popup{grid-column:2;align-self:start;justify-self:center}.swal2-container.swal2-top-end>.swal2-popup,.swal2-container.swal2-top-right>.swal2-popup{grid-column:3;align-self:start;justify-self:end}.swal2-container.swal2-center-left>.swal2-popup,.swal2-container.swal2-center-start>.swal2-popup{grid-row:2;align-self:center}.swal2-container.swal2-center>.swal2-popup{grid-column:2;grid-row:2;align-self:center;justify-self:center}.swal2-container.swal2-center-end>.swal2-popup,.swal2-container.swal2-center-right>.swal2-popup{grid-column:3;grid-row:2;align-self:center;justify-self:end}.swal2-container.swal2-bottom-left>.swal2-popup,.swal2-container.swal2-bottom-start>.swal2-popup{grid-column:1;grid-row:3;align-self:end}.swal2-container.swal2-bottom>.swal2-popup{grid-column:2;grid-row:3;justify-self:center;align-self:end}.swal2-container.swal2-bottom-end>.swal2-popup,.swal2-container.swal2-bottom-right>.swal2-popup{grid-column:3;grid-row:3;align-self:end;justify-self:end}.swal2-container.swal2-grow-fullscreen>.swal2-popup,.swal2-container.swal2-grow-row>.swal2-popup{grid-column:1/4;width:100%}.swal2-container.swal2-grow-column>.swal2-popup,.swal2-container.swal2-grow-fullscreen>.swal2-popup{grid-row:1/4;align-self:stretch}.swal2-container.swal2-no-transition{transition:none!important}.swal2-popup{display:none;position:relative;box-sizing:border-box;grid-template-columns:minmax(0,100%);width:32em;max-width:100%;padding:0 0 1.25em;border:none;border-radius:5px;background:#fff;color:#545454;font-family:inherit;font-size:1rem}.swal2-popup:focus{outline:0}.swal2-popup.swal2-loading{overflow-y:hidden}.swal2-title{position:relative;max-width:100%;margin:0;padding:.8em 1em 0;color:inherit;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.swal2-actions{display:flex;z-index:1;box-sizing:border-box;flex-wrap:wrap;align-items:center;justify-content:center;width:auto;margin:1.25em auto 0;padding:0}.swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.swal2-loader{display:none;align-items:center;justify-content:center;width:2.2em;height:2.2em;margin:0 1.875em;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;border-width:.25em;border-style:solid;border-radius:100%;border-color:#2778c4 transparent #2778c4 transparent}.swal2-styled{margin:.3125em;padding:.625em 1.1em;transition:box-shadow .1s;box-shadow:0 0 0 3px transparent;font-weight:500}.swal2-styled:not([disabled]){cursor:pointer}.swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#7066e0;color:#fff;font-size:1em}.swal2-styled.swal2-confirm:focus{box-shadow:0 0 0 3px rgba(112,102,224,.5)}.swal2-styled.swal2-deny{border:0;border-radius:.25em;background:initial;background-color:#dc3741;color:#fff;font-size:1em}.swal2-styled.swal2-deny:focus{box-shadow:0 0 0 3px rgba(220,55,65,.5)}.swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#6e7881;color:#fff;font-size:1em}.swal2-styled.swal2-cancel:focus{box-shadow:0 0 0 3px rgba(110,120,129,.5)}.swal2-styled.swal2-default-outline:focus{box-shadow:0 0 0 3px rgba(100,150,200,.5)}.swal2-styled:focus{outline:0}.swal2-styled::-moz-focus-inner{border:0}.swal2-footer{justify-content:center;margin:1em 0 0;padding:1em 1em 0;border-top:1px solid #eee;color:inherit;font-size:1em}.swal2-timer-progress-bar-container{position:absolute;right:0;bottom:0;left:0;grid-column:auto!important;overflow:hidden;border-bottom-right-radius:5px;border-bottom-left-radius:5px}.swal2-timer-progress-bar{width:100%;height:.25em;background:rgba(0,0,0,.2)}.swal2-image{max-width:100%;margin:2em auto 1em}.swal2-close{z-index:2;align-items:center;justify-content:center;width:1.2em;height:1.2em;margin-top:0;margin-right:0;margin-bottom:-1.2em;padding:0;overflow:hidden;transition:color .1s,box-shadow .1s;border:none;border-radius:5px;background:rgba(0,0,0,0);color:#ccc;font-family:serif;font-family:monospace;font-size:2.5em;cursor:pointer;justify-self:end}.swal2-close:hover{transform:none;background:rgba(0,0,0,0);color:#f27474}.swal2-close:focus{outline:0;box-shadow:inset 0 0 0 3px rgba(100,150,200,.5)}.swal2-close::-moz-focus-inner{border:0}.swal2-html-container{z-index:1;justify-content:center;margin:1em 1.6em .3em;padding:0;overflow:auto;color:inherit;font-size:1.125em;font-weight:400;line-height:normal;text-align:center;word-wrap:break-word;word-break:break-word}.swal2-checkbox,.swal2-file,.swal2-input,.swal2-radio,.swal2-select,.swal2-textarea{margin:1em 2em 3px}.swal2-file,.swal2-input,.swal2-textarea{box-sizing:border-box;width:auto;transition:border-color .1s,box-shadow .1s;border:1px solid #d9d9d9;border-radius:.1875em;background:rgba(0,0,0,0);box-shadow:inset 0 1px 1px rgba(0,0,0,.06),0 0 0 3px transparent;color:inherit;font-size:1.125em}.swal2-file.swal2-inputerror,.swal2-input.swal2-inputerror,.swal2-textarea.swal2-inputerror{border-color:#f27474!important;box-shadow:0 0 2px #f27474!important}.swal2-file:focus,.swal2-input:focus,.swal2-textarea:focus{border:1px solid #b4dbed;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.06),0 0 0 3px rgba(100,150,200,.5)}.swal2-file::placeholder,.swal2-input::placeholder,.swal2-textarea::placeholder{color:#ccc}.swal2-range{margin:1em 2em 3px;background:#fff}.swal2-range input{width:80%}.swal2-range output{width:20%;color:inherit;font-weight:600;text-align:center}.swal2-range input,.swal2-range output{height:2.625em;padding:0;font-size:1.125em;line-height:2.625em}.swal2-input{height:2.625em;padding:0 .75em}.swal2-file{width:75%;margin-right:auto;margin-left:auto;background:rgba(0,0,0,0);font-size:1.125em}.swal2-textarea{height:6.75em;padding:.75em}.swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;background:rgba(0,0,0,0);color:inherit;font-size:1.125em}.swal2-checkbox,.swal2-radio{align-items:center;justify-content:center;background:#fff;color:inherit}.swal2-checkbox label,.swal2-radio label{margin:0 .6em;font-size:1.125em}.swal2-checkbox input,.swal2-radio input{flex-shrink:0;margin:0 .4em}.swal2-input-label{display:flex;justify-content:center;margin:1em auto 0}.swal2-validation-message{align-items:center;justify-content:center;margin:1em 0 0;padding:.625em;overflow:hidden;background:#f0f0f0;color:#666;font-size:1em;font-weight:300}.swal2-validation-message::before{content:"!";display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center}.swal2-icon{position:relative;box-sizing:content-box;justify-content:center;width:5em;height:5em;margin:2.5em auto .6em;border:.25em solid transparent;border-radius:50%;border-color:#000;font-family:inherit;line-height:5em;cursor:default;user-select:none}.swal2-icon .swal2-icon-content{display:flex;align-items:center;font-size:3.75em}.swal2-icon.swal2-error{border-color:#f27474;color:#f27474}.swal2-icon.swal2-error .swal2-x-mark{position:relative;flex-grow:1}.swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;transform:rotate(45deg)}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;transform:rotate(-45deg)}.swal2-icon.swal2-error.swal2-icon-show{animation:swal2-animate-error-icon .5s}.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark{animation:swal2-animate-error-x-mark .5s}.swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.swal2-icon.swal2-warning.swal2-icon-show{animation:swal2-animate-error-icon .5s}.swal2-icon.swal2-warning.swal2-icon-show .swal2-icon-content{animation:swal2-animate-i-mark .5s}.swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee}.swal2-icon.swal2-info.swal2-icon-show{animation:swal2-animate-error-icon .5s}.swal2-icon.swal2-info.swal2-icon-show .swal2-icon-content{animation:swal2-animate-i-mark .8s}.swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.swal2-icon.swal2-question.swal2-icon-show{animation:swal2-animate-error-icon .5s}.swal2-icon.swal2-question.swal2-icon-show .swal2-icon-content{animation:swal2-animate-question-mark .8s}.swal2-icon.swal2-success{border-color:#a5dc86;color:#a5dc86}.swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;transform:rotate(45deg);border-radius:50%}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;transform:rotate(-45deg);transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;transform:rotate(-45deg);transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.swal2-icon.swal2-success .swal2-success-ring{position:absolute;z-index:2;top:-.25em;left:-.25em;box-sizing:content-box;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%}.swal2-icon.swal2-success .swal2-success-fix{position:absolute;z-index:1;top:.5em;left:1.625em;width:.4375em;height:5.625em;transform:rotate(-45deg)}.swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;z-index:2;height:.3125em;border-radius:.125em;background-color:#a5dc86}.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.8125em;width:1.5625em;transform:rotate(45deg)}.swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;transform:rotate(-45deg)}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip{animation:swal2-animate-success-line-tip .75s}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long{animation:swal2-animate-success-line-long .75s}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right{animation:swal2-rotate-success-circular-line 4.25s ease-in}.swal2-progress-steps{flex-wrap:wrap;align-items:center;max-width:100%;margin:1.25em auto;padding:0;background:rgba(0,0,0,0);font-weight:600}.swal2-progress-steps li{display:inline-block;position:relative}.swal2-progress-steps .swal2-progress-step{z-index:20;flex-shrink:0;width:2em;height:2em;border-radius:2em;background:#2778c4;color:#fff;line-height:2em;text-align:center}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step{background:#2778c4}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step{background:#add8e6;color:#fff}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line{background:#add8e6}.swal2-progress-steps .swal2-progress-step-line{z-index:10;flex-shrink:0;width:2.5em;height:.4em;margin:0 -1px;background:#2778c4}[class^=swal2]{-webkit-tap-highlight-color:transparent}.swal2-show{animation:swal2-show .3s}.swal2-hide{animation:swal2-hide .15s forwards}.swal2-noanimation{transition:none}.swal2-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.swal2-rtl .swal2-close{margin-right:initial;margin-left:0}.swal2-rtl .swal2-timer-progress-bar{right:0;left:auto}@keyframes swal2-toast-show{0%{transform:translateY(-.625em) rotateZ(2deg)}33%{transform:translateY(0) rotateZ(-2deg)}66%{transform:translateY(.3125em) rotateZ(2deg)}100%{transform:translateY(0) rotateZ(0)}}@keyframes swal2-toast-hide{100%{transform:rotateZ(1deg);opacity:0}}@keyframes swal2-toast-animate-success-line-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}100%{top:1.125em;left:.1875em;width:.75em}}@keyframes swal2-toast-animate-success-line-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}100%{top:.9375em;right:.1875em;width:1.375em}}@keyframes swal2-show{0%{transform:scale(.7)}45%{transform:scale(1.05)}80%{transform:scale(.95)}100%{transform:scale(1)}}@keyframes swal2-hide{0%{transform:scale(1);opacity:1}100%{transform:scale(.5);opacity:0}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}100%{top:2.8125em;left:.8125em;width:1.5625em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}100%{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-rotate-success-circular-line{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}100%{transform:rotate(-405deg)}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;transform:scale(.4);opacity:0}50%{margin-top:1.625em;transform:scale(.4);opacity:0}80%{margin-top:-.375em;transform:scale(1.15)}100%{margin-top:0;transform:scale(1);opacity:1}}@keyframes swal2-animate-error-icon{0%{transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0);opacity:1}}@keyframes swal2-rotate-loading{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes swal2-animate-question-mark{0%{transform:rotateY(-360deg)}100%{transform:rotateY(0)}}@keyframes swal2-animate-i-mark{0%{transform:rotateZ(45deg);opacity:0}25%{transform:rotateZ(-25deg);opacity:.4}50%{transform:rotateZ(15deg);opacity:.8}75%{transform:rotateZ(-5deg);opacity:1}100%{transform:rotateX(0);opacity:1}}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}body.swal2-height-auto{height:auto!important}body.swal2-no-backdrop .swal2-container{background-color:rgba(0,0,0,0)!important;pointer-events:none}body.swal2-no-backdrop .swal2-container .swal2-popup{pointer-events:all}body.swal2-no-backdrop .swal2-container .swal2-modal{box-shadow:0 0 10px rgba(0,0,0,.4)}@media print{body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}body.swal2-toast-shown .swal2-container{box-sizing:border-box;width:360px;max-width:100%;background-color:rgba(0,0,0,0);pointer-events:none}body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-top-end,body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}body.swal2-toast-shown .swal2-container.swal2-top-left,body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}body.swal2-toast-shown .swal2-container.swal2-center-left,body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;transform:translate(-50%,-50%)}body.swal2-toast-shown .swal2-container.swal2-center-end,body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-left,body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-end,body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}