* { box-sizing: border-box; font-family: 'Poppins', sans-serif; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
/* --------------------- NAVBAR SECTION ------------------------- */
.aretelens_navbar { background: #E4F8FF !important; }
.aretelens_navbar li {
  color: rgba(32,32,33,0.66);
  /* padding: 8px 12px; */
  border-radius: 8px;
  font-weight: 500;
  display: inline-block;
}
.nav-underline .nav-link{
  position: relative;
  padding-bottom: 6px;
}
.nav-underline .nav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #00B8DB;
  transition: width 0.25s ease;
}
.nav-underline .nav-link:hover::after,
.nav-underline .nav-link:focus::after,
.nav-underline .nav-link.active::after{
  width: 100%;
}
.nav-link:hover {
  color: #0a0a0a;
  font-weight: 700;
}
.loginAretelens {
  border: 1px solid #1A3F92; background: #fff; color: #1A3F92;
  padding: 6px 20px; border-radius: 10px; font-weight: 600;
  box-shadow: 0 8px 22px rgba(15,23,42,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.signupAretelens {
  background: #1A3F92; color: #fff; padding: 6px 20px; border-radius: 10px;
  border: 0; font-weight: 600; box-shadow: 0 8px 22px rgba(15,23,42,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.nav-underline{
  color: #00B8DB;
}

.loginAretelens:hover{
  transform: translateY(-1px);
  background-color: #77aaec;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(15,23,42,0.16);
}
.signupAretelens:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 32px rgba(15,23,42,0.20);
}
/* ----------------------- BANNER / HERO SECTION ------------------------- */

.hero-section {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(59, 130, 246, 0.12),
      transparent 40%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(45, 212, 191, 0.10),
      transparent 45%
    ),
    linear-gradient(
      160deg,
      #001038 20%,
      #00235e 40%,
      #000d2b 100%
    );
}


.text-accent {
  background: linear-gradient(90deg,#00B8DB, #e0f5fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.banner_title {
  font-size: 54px; font-weight: 600; line-height: 1.08; color: #ffffff;
}
.banner_description { color: #6b7280; margin-bottom: 1rem; }
.trial_btn {
  background: linear-gradient(90deg, #00B8DB, #1C398E);
  border: none; padding: 10px 22px; font-weight: 600; border-radius: 8px; color: #fff;
  box-shadow: 0 8px 24px rgba(3,102,214,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.request_btn {
  border: 1px solid #00B8DB; padding: 9px 18px; border-radius: 8px; color: #00B8DB; font-weight: 600;
  box-shadow: 0 4px 16px rgba(3,102,214,0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.trial_btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(3,102,214,0.28);
  filter: brightness(1.05);
  color: white;
}
.request_btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(3,102,214,0.22);
  background-color: #00B8DB;
  color: #ffffff;
}

.panel {
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94));
  border-radius: 18px;
  padding: 18px 18px 20px;
  box-shadow: 0 16px 40px rgba(15,23,42,0.16);
  border: 1px solid rgba(148,163,184,0.35);
  z-index: 2;
  position: relative;
  overflow: visible;
}
.panel-title { font-size: 13px; color: #6b7280; font-weight: 600; }
.panel-count { font-size: 20px; font-weight: 700; }
.active_btn {
  background: linear-gradient(to right, #CEFAFE, #DBEAFE); padding: 6px 12px; border-radius: 10px;
  font-size: 14px; color: #036b9e;
}

.ai-powered-pill{
  position: absolute;
  top: -13px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg,#02b9dc,#1C398E);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(15,23,42,0.25);
}
.ai-powered-pill i{
  font-size: 13px;
  background: rgba(15,23,42,0.15);
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mcq_card, .coding_card {
  padding: 12px; border-radius: 10px; border: none;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.mcq_card { background: linear-gradient(to right, #ECFEFF, #CEFAFE); }
.coding_card { background: linear-gradient(to right, #EFF6FF, #DBEAFE); }

/* ---------------------- LIST / ANALYTICS ROWS ------------------------ */
.list-row{
  padding: 9px 12px;
  border-radius: 10px;
  margin-bottom: 6px;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.list-row:last-child { margin-bottom: 0; }
.list-row:nth-of-type(1){
  background: linear-gradient(to right,#f9fafb,#eff6ff);
}
.list-row:nth-of-type(2){
  background: linear-gradient(to right,#ecfeff,#e0f2fe);
}
.list-row:nth-of-type(3){
  background: linear-gradient(to right,#fefce8,#fef9c3);
}
.list-row:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15,23,42,0.10);
}
.badge-dot { width: 10px; height: 10px; border-radius: 50%; background: #cfeefd; }
.row-text { font-size: 13px; color: #213145; }
.row-count { font-weight: 600; }

/* Hero card analytics bar chart with animation */
.analytics{
  height: 96px;
}
.bar {
  flex: 1;
  border-radius: 6px;
  transform-origin: bottom center;
  transform: scaleY(0);
  animation: hero-bar-grow 0.8s ease-out forwards;
}
.b1 { height: 35px; background: linear-gradient(180deg,#bff2ff,#a7ecff); animation-delay: 0.05s; }
.b2 { height: 54px; background: linear-gradient(180deg,#8fe6ff,#59d9ff); animation-delay: 0.1s; }
.b3 { height: 66px; background: linear-gradient(180deg,#45c1ff,#0fb0ff); animation-delay: 0.15s; }
.b4 { height: 48px; background: linear-gradient(180deg,#1447E6,#0b63d6); animation-delay: 0.2s; }
.b5 { height: 78px; background: linear-gradient(180deg,#1C398E,#0b63d6); animation-delay: 0.25s; }

@keyframes hero-bar-grow{
  0%{ transform: scaleY(0); opacity: 0; }
  100%{ transform: scaleY(1); opacity: 1; }
}

/* ------------------------ WELCOME SECTION -------------------------- */

/* .welcome-section { padding-top: 2.5rem; padding-bottom: 2.5rem; } */
.fw-bold { font-weight: 700; }
.fw-semibold { font-weight: 600; }
.text-secondary { color: #6b7280; }

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(10,30,60,0.04);
  border: none;
   height: 100%;
}
.feature-card:hover {
transform: translateY(-6px);
 box-shadow: rgba(160, 249, 253, 0.17) 0px -23px 25px 0px inset, rgba(170, 219, 244, 0.15) 0px -36px 30px 0px inset, rgba(175, 248, 229, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(139, 241, 250, 0.09) 0px 4px 2px, rgba(4, 105, 94, 0.09) 0px 8px 4px, rgba(8, 197, 239, 0.09) 0px 16px 8px, rgba(136, 219, 247, 0.09) 0px 32px 16px;
  height: 100%;
  padding: 4px;
}

.icon-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.welcome-section .col-12.col-sm-6.col-md-4:nth-child(1) .icon-circle { background: #CEFAFE; font-size: 32px; color: #09d4e7; }
.welcome-section .col-12.col-sm-6.col-md-4:nth-child(2) .icon-circle { background: #DBEAFE; font-size: 32px; color: #196cd7;}
.welcome-section .col-12.col-sm-6.col-md-4:nth-child(3) .icon-circle { background: rgba(28,57,142,0.10);font-size: 32px; color: rgba(28, 56, 142, 0.977); }

.feature-card h5 { margin: 0.5rem 0 0.25rem; color: #07102a; font-size: 1rem; }
.feature-card p { margin: 0; font-size: 0.85rem; color: #6b7280; }

/* ------------------------ FEATURES SECTION -------------------- */

.feature_card {
  --feature-color: #7DD3FC;     
  --feature-border: #C8E7F8;      
  --feature-bg-soft: #F4FBFF;
  
  position: relative;
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
  border: 1px solid var(--feature-border);


  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--feature-color) 0%, transparent) 0%,
    color-mix(in srgb, var(--feature-color) 2%, transparent) 50%,
    color-mix(in srgb, var(--feature-color) 8%, transparent) 100%
  );
  box-shadow: 0px 8px 22px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.35s ease;
}


.feature_card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--feature-color),
    rgba(255, 255, 255, 0)
  );
  transition: transform 0.4s ease;
  transform: translateY(0);
}


.feature_card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 14px 30px rgba(0, 0, 0, 0.08);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--feature-color) 0%, transparent) 0%,
    color-mix(in srgb, var(--feature-color) 3%, transparent) 50%,
    color-mix(in srgb, var(--feature-color) 15%, transparent) 100%
  );
}

.feature_card:hover::before {
  transform: translateY(-100%);
}



.feature_icon {
  font-size: 28px;
  padding: 10px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--feature-bg-soft);
  color: var(--feature-color);
}

.feature_list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.feature_list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.feature_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--feature-color);
}


.feature_card1 {
  --feature-color: #0092B8;
  --feature-bg-soft: #ECFEFF;
}

.feature_card2 {
  --feature-color: #1447E6;
  --feature-bg-soft: #E0EBFF;
}

.feature_card3 {
  --feature-color: #1C398E;
  --feature-bg-soft: #E4E8FF;
}

.feature_card4 {
  --feature-color: #007595;
  --feature-bg-soft: #D9F6FF;
}

.feature_card5 {
  --feature-color: #193CB8;
  --feature-bg-soft: #E0E7FF;
}

.feature_card6 {
  --feature-color: #1C398E;
  --feature-bg-soft: #E4E8FF;
}

/* ------------------- WORKFLOW / HORIZONTAL STEPS SECTION ----------- */
.workflow_horizontal {
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap;
  gap: 20px; max-width: 1200px; margin: 0 auto; position: relative; padding: 60px 20px 40px;
  width: 100%;
  box-sizing: border-box;
}
.workflow_horizontal::before {
  content: ''; position: absolute; top: 105px; left: 8%; right: 8%; height: 2px; background: #E4F8FF; z-index: 1;
}
.workflow_step {
  text-align: center; position: relative; flex: 1; min-width: 140px; max-width: 180px;
  display: flex; flex-direction: column; align-items: center; z-index: 2;
  box-sizing: border-box;
}
.workflow_number {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(to right, #00B8DB, #1C398E);
  color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px;
  position: absolute; top: 3px; left: 32%; z-index: -2; transform: translate(30%, -30%);
  margin-left: 45px;
}
.workflow_circle {
  width: 90px; height: 90px; border-radius: 50%; border: 3px solid #00B8DB; background: white;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; color: #00B8DB; font-size: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; position: relative; z-index: 3;
}
.workflow_circle:hover { transform: scale(1.1); border-color: #00B8DB; box-shadow: 0 8px 20px rgba(0,184,219,0.2); }
.workflow_label { font-weight: 600; color: #07102a; margin: 0 0 8px 0; font-size: 15px; line-height: 1.3; }
.workflow_description { color: #6b7280; font-size: 13px; margin: 0; line-height: 1.4; }

/* ------------------------PRICING SECTION ------------------ */
#pricing {
  background-color: #F9FAFB;
}

.pricing_tabs {
  display: flex;
  gap: 0;
  background: #ffffff;
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.pricing_tab {
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: #6b7280;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing_tab.active {
  background: #2089C0;
  color: #ffffff;
}

.save_badge {
  background: #10B981;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
}

.pricing_info_card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pricing_contact_btn {
  /* background:  #ffffff; */
  border: 1px solid #2089C0 !important;
  color: #2089C0;
  border: none;
  /* padding: 8px 20px; */
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
}

.pricing_contact_btn:hover {
  background: #186a96;
  color: white;

}

.pricing_card {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.pricing_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(32,137,192,0.18);
  border-color: #2089C0;
}

.pricing_card_featured {
  border-color: #1C398E;
  box-shadow: 0 22px 55px rgba(28,57,142,0.25);
}

.pricing_badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ecfbff;
  color: #0369a1;
  font-size: 11px;
  font-weight: 600;
}

.pricing_card_featured .pricing_badge {
  background: #dfcf40;
  color: #ffffff;
}

.pricing_price {
  font-size: 40px;
  font-weight: 700;
  color: #111827;
}

.pricing_period {
  font-size: 16px;
  font-weight: 500;
  color: #6b7280;
  margin-left: 2px;
}

.billing_text {
  font-size: 13px;
  text-transform: none;
}

.pricing_trial_btn {
  background: linear-gradient(90deg, #00B8DB, #1C398E);
  border-radius: 999px;
  border: none;
  color: #ffffff;
  font-weight: 600;
  padding: 10px 20px;
  box-shadow: 0 12px 30px rgba(3, 102, 214, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing_trial_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(3, 102, 214, 0.3);
  color: #ffffff;
}

.pricing_features {
  margin-top: 8px;
  font-size: 13px;
  color: #4b5563;
}

.pricing_features li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 4px 0;
}

.pricing_check {
  color: #10B981;
  font-size: 12px;
  margin-top: 3px;
}

.pricing_enterprise_card {
  border-radius: 16px;
  border: 1px dashed #cbd5f5;
}

/* ------------------ REPORTS & METRICS SECTION --------------------*/
.reports_section {
  background: linear-gradient(135deg, #0F172B, #162456, #0F172B);
}
.report_mainCard{
  background: radial-gradient(circle at top left, rgba(32,137,192,0.35), transparent 55%),
              radial-gradient(circle at bottom right, rgba(28,57,142,0.55), transparent 55%),
              #0b1220;
  border-radius: 20px;
  padding: 15px;
  margin: 20px;
  box-shadow: 0 24px 60px rgba(15,23,42,0.75);
  border: 1px solid rgba(148,163,184,0.35);
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.report_mainCard:hover{
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(15,23,42,0.9);
}
.reports_top_scorers_card .card-body { padding: 24px; }
.reports_top_scorers_card h5 { color: #fff; font-weight: 600; font-size: 18px; }
.top_scorers_list { background: transparent; padding: 0; }
.scorer_item { padding: 12px 16px; border-radius: 12px; transition: transform 0.2s ease; }
.scorer_item1 { background: linear-gradient(to right, #FEFCE8, #FEF9C2); }
.scorer_item2 { background: linear-gradient(to right, #F9FAFB, #F3F4F6); }
.scorer_item3 { background: linear-gradient(to right, #FFF7ED, #FFEDD4); }
.scorer_rank{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #facc15;
  color: #713f12;
  font-weight: 700;
  font-size: 14px;
  margin-right: 10px;
}
.scorer_item2 .scorer_rank{
  background: #e5e7eb;
  color: #111827;
}
.scorer_item3 .scorer_rank{
  background: #fed7aa;
  color: #7c2d12;
}
.scorer_name{
  font-weight: 500;
  color: #111827;
}


/* ------------- Accuracy circular progress (animated) ------------- */
.circular_progress { 
  display: flex; justify-content: center; align-items: center; position: relative;
}

@keyframes progress-fill {
  0% {
    background: conic-gradient(#00B8DB 0deg, #00B8DB 0deg, rgba(255,255,255,0.18) 0deg 360deg);
  }
  100% {
    background: conic-gradient(#00B8DB 0deg, #00B8DB 270deg, rgba(255,255,255,0.18) 270deg 360deg);
  }
}

.progress_circle {
  width: 120px; height: 120px; border-radius: 50%;
  background: conic-gradient(#00B8DB 0deg, #00B8DB 270deg, rgba(255,255,255,0.18) 270deg 360deg);
  display: flex; align-items: center; justify-content: center; position: relative;
  animation: progress-fill 1.6s ease-out forwards;
}
.progress_circle::before {
  content: ''; position: absolute; width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, #1C398E, #0b63d6);
}
.progress_percentage { position: relative; z-index: 1; font-size: 24px; font-weight: 700; color: white; }

/* ------------- Performance mini bar chart (animated) ------------- */
.performance_icon {
  width: 120px; height: 120px; display: flex; align-items: flex-end; justify-content: center;
  gap: 6px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #1C398E, #0b63d6); border-radius: 18px;
  overflow: hidden;
  margin: 0 auto;
}
.performance_bar{
  width: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg,#a5f3fc,#06b6d4);
  transform-origin: bottom center;
  transform: scaleY(0);
  animation: bar-grow 0.9s ease-out forwards;
}
.performance_bar:nth-child(1){ height: 40px; animation-delay: 0.1s;}
.performance_bar:nth-child(2){ height: 60px; animation-delay: 0.2s;}
.performance_bar:nth-child(3){ height: 48px; animation-delay: 0.3s;}
.performance_bar:nth-child(4){ height: 72px; animation-delay: 0.4s;}

@keyframes bar-grow{
  0%{ transform: scaleY(0); opacity: 0;}
  100%{ transform: scaleY(1); opacity: 1;}
}

.reports_features { padding: 20px }
.reports_feature_icon { 
  font-size: 24px; color: #00B8DB; width: 32px; flex-shrink: 0; margin-top: 2px; background-color: #00B8DB33; padding: 5px; border-radius: 10px;}

/* ------------------ WHY / CARDS SECTION ------------------- */
.why_card {
  position: relative;
  overflow: hidden; /* required for overlay */
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: rgba(50, 50, 93, 0.12) 0px 30px 60px -20px;
}

/* hover background overlay */
.why_card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 183, 219, 0.199),
    rgba(28, 57, 142, 0.06)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.why_card:hover::before {
  opacity: 1;
}

.why_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.why_icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #00B8DB, #1C398E); display: flex; align-items: center; justify-content: center;
  margin: 0 auto; color: #e5e8f2; font-size: 28px;
}

.big-video-wrapper {
    position: relative;
    padding-top: 46.69%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}

.big-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* ---------------------- FOOTER + CTA SECTION --------------------------- */
.footer_cta_section {
  background: linear-gradient(135deg, #00B8DB, #0092B8, #1C398E);
  padding: 80px 0; margin-top: 60px;
}
.footer_btn_primary {
  background: white;
  border: 1px solid #0092B8;
  color: #0092B8;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}


.footer_btn_primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.6), rgba(255,255,255,0));
  transform: skewX(-20deg);
  transition: 0.5s ease;
}

.footer_btn_primary:hover::before {
  left: 150%;
}

.footer_btn_primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  color:#fff;
}

.footer_btn_primary:hover i {
  transform: translateX(3px);
  transition: 0.3s ease;
}
.footer_btn_secondary {
  background: transparent;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.footer_btn_secondary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.18);
  transition: 0.4s ease;
  z-index: -1;
}

.footer_btn_secondary:hover::after {
  left: 0;
}

.footer_btn_secondary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(255,255,255,0.25);
  color: #fff;
}

.footer_btn_secondary:hover i {
  transform: translateX(3px);
  transition: 0.3s ease;
}



.footer_main_container { background-color: #111827; padding: 30px;}
.footer_text { color: rgba(255,255,255,0.8) !important; font-size: 14px; line-height: 1.6; }

.social_media_containers a  {
 width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
 text-decoration: none

}

.social_media_containers a:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #10f7ff;
}

.social_media_containers a:hover {
  color: #10f7ff;
  box-shadow: 0 0 5px #1080ff;
  text-shadow: 0 0 5px #10f7ff;
}

/* ------------------ SCROLL TO TOP BUTTON ----------------------------- */
.scroll_to_top_btn {
  width: 45px; height: 45px; border-radius: 50%; background: rgba(255,255,255,0.2); color: white;
  display: none; align-items: center; justify-content: center; text-decoration: none; transition: background 0.3s ease, transform 0.3s ease;
}
.scroll_to_top_btn:hover { background: rgba(255,255,255,0.3); transform: translateY(-3px); color: white; }


/* ----------------------viemo ---------------------------- */ 
/* .video-section {
    padding: 20px 0;
}
.video-wrapper {
  width: 70%;
  margin: 0 auto;               
  position: relative;
  aspect-ratio: 18 / 10;         
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid #e0e0e0;    
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.15); 
  border-radius: 12px; height: fit-content;  
  animation: 8s rotate linear infinite;
}
  
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: linear-gradient(135deg, #0F172B, #162456, #0F172B);
}

@keyframes rotate {
  to {
    --angle: 360deg;
  }
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.video-wrapper iframe {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    
} */


.video-column {
  position: relative;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #0F172B, #162456, #0F172B);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 18px 55px rgba(139, 92, 246, 0.22),
    0 8px 22px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.video-wrapper:hover {
  transform: translateY(-3px);
  box-shadow:
    0 26px 75px rgba(139, 92, 246, 0.32),
    0 12px 30px rgba(0, 0, 0, 0.08);
}


.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}



/* -------------------------- RESPONSIVE BREAKPOINTS -------------------- */
@media (max-width: 992px) {
  .aretelens_navbar .brand-img{
    height: 70px;
  }
  .banner_title { font-size: 36px; text-align: center; }
  .banner_description { text-align: center; }
  .trial_btn, .request_btn{
    width: 100%;
    justify-content: center;
  }
  .workflow_horizontal::before { left: 8%; right: 8%; }
  .workflow_horizontal { gap: 8px; padding: 60px 15px 40px; }
  .workflow_step { min-width: 120px; max-width: 160px; }
  .workflow_number { left: 50%; margin-left: 40px; }
}
@media (max-width: 768px) {
  .ai-powered-pill{
    top: -10px;
    right: 12px;
    padding: 4px 10px;
    font-size: 11px;
  }
  .workflow_horizontal { flex-direction: column; align-items: center; gap: 40px; padding: 40px 15px; }
  .workflow_horizontal::before { display: none; }
  .workflow_step { max-width: 200px; width: 100%; }
  .workflow_number { left: 50%; margin-left: 18px; }
  .workflow_circle { width: 80px; height: 80px; font-size: 24px; }
  .workflow_label { font-size: 14px; }
  .workflow_description { font-size: 12px; }
  .pricing_price { font-size: 36px; }
  .report_mainCard{
    background-color: #0F172B !important;
    border: none;
  }
  .progress_circle { width: 100px; height: 100px; }
  .progress_circle::before { width: 75px; height: 75px; }
  .progress_percentage { font-size: 20px; }
  .performance_icon { width: 100px; height: 100px; padding: 14px 14px; }
  .footer_main_container { padding: 40px 0 15px 0; }
}
@media (max-width: 480px) {
  .banner_title { font-size: 28px; }
  .panel { padding: 14px; }
  .workflow_horizontal { gap: 30px; padding: 40px 10px; }
  .workflow_step { min-width: 120px; max-width: 140px; }
  .workflow_circle { width: 70px; height: 70px; font-size: 22px; }
  .workflow_number { width: 28px; height: 28px; font-size: 14px; left: 50%; margin-left: 30px; }
  .workflow_label { font-size: 13px; }
  .workflow_description { font-size: 11px; }
  .pricing_price { font-size: 32px; }
  .progress_circle { width: 90px; height: 90px; }
  .progress_circle::before { width: 65px; height: 65px; }
  .progress_percentage { font-size: 18px; }
  .performance_icon { width: 90px; height: 90px; }
  .performance_icon i { font-size: 36px; }
  .reports_feature_icon { font-size: 20px; width: 28px; }
  .reports_features span.fw-semibold { font-size: 15px; }
  .reports_features .text-white-50.small { font-size: 13px; }
}


.carousel-header {
  display: flex;
  justify-content: flex-start;
}

.carousel-arrows {
  display: flex;
  gap: 12px;
}

.arrow {
  font-size: 15px;
  cursor: pointer;
}


.carousel-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.carousel-btn:hover {
  background: #0c3286;
  color: #ffffff;
  transform: translateY(-2px);
}

#featuresCarousel .card {
  min-height: 330px;
}


