
:root {
  /* ===========================
     Primary Brand Colors
  ============================ */
  /* --primary: #e50914; */
  --primary: #c70812;
  --secoundry: #111111;

  /* ===========================
     Red Shades
  ============================ */
  --prim-100: #ff6a5c; /* Soft Red */
  --prim-200: #ff3b30; /* Bright Red */
  --prim-300: #8b0000; /* Deep Crimson */
  --prim-400: #5a0006; /* Dark Wine */

  /* ===========================
     Text Colors
  ============================ */
  --text-100: #ffffff;
  --text-200: #bdc1ca;
  --text-300: #8a8a8a;

  /* ===========================
     Background Colors
  ============================ */
  --bg-100: #050505;
  --bg-100-trans: rgba(10, 10, 10, 0.75);
  --bg-200: #0b0b0d;
  --bg-300: #141414;
  --bg-400: #1a1a1a;

  /* ===========================
     Borders
  ============================ */
  --border-dark: 1px solid rgba(255, 255, 255, 0.08);
  --border-lite: 1px solid rgba(255, 255, 255, 0.05);
  --border-input: 1px solid rgba(255, 255, 255, 0.12);

  /* ===========================
     Radius
  ============================ */
  --radious-prim: 0.8rem;
  --radious-sec: 0.6rem;

  /* ===========================
     Transition
  ============================ */
  --Ltrns: all 0.4s linear;
  --Etrns: all 0.45s ease;

  /* ===========================
     Fonts
  ============================ */
  --primary-font: "Inter", sans-serif;
  --secoundry-font: "Inter", sans-serif;
  /* --secoundry-font: "Sora", sans-serif; */

  /* ===========================
     Animations
  ============================ */
  --aniTopBot2x: aniTopBot2x 2s infinite linear;
  --aniTnavLink: aniTnavLink 0.8s linear forwards;

  /* ===========================
     Navigation
  ============================ */
  --nav-bg: rgba(8, 8, 8, 0.75);
  --nav-link-color: #cfcfcf;
  --nav-link-hover-color: var(--prim-200);
  --nav-link-active-color: var(--primary);
  --nav-link-f-size: 0.8rem;
  --nav-btn-i-size: 1.1rem;

  /* ===========================
     Font Size
  ============================ */
  --f-size: 0.95rem;

  /* ===========================
     Gaps
  ============================ */
  --gap-col: 3.75rem;
  --gap-card: 1.5rem;

  /* ===========================
     Shadows
  ============================ */
  --shadow-red-sm: 0 0 15px rgba(229, 9, 20, 0.25);
  --shadow-red-md: 0 0 30px rgba(229, 9, 20, 0.35);
  --shadow-red-lg: 0 0 60px rgba(229, 9, 20, 0.45);

  /* ===========================
     Gradients
  ============================ */
  /* Primary Button */
  --gradient-primary: linear-gradient(
    135deg,
    #ff3b30 0%,
    #e50914 45%,
    #b1060f 100%
  );

  /* Hero Background */
  --gradient-hero:
    radial-gradient(
      circle at top right,
      rgba(229, 9, 20, 0.28),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255, 59, 48, 0.18),
      transparent 35%
    ),
    #050505;

  /* Card Background */
  --gradient-card: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );

  /* Premium Border */
  --gradient-border: linear-gradient(
    135deg,
    rgba(255, 59, 48, 0.8),
    rgba(229, 9, 20, 0.3),
    rgba(255, 255, 255, 0.05)
  );

  /* CTA Section */
  --gradient-cta: linear-gradient(135deg, #5a0006, #8b0000, #e50914);

  /* Dark Red Glow */
  --gradient-glow: radial-gradient(
    circle,
    rgba(229, 9, 20, 0.35),
    transparent 70%
  );
}
@media (max-width: 1400px) {
  :root {
    --f-size: 0.85rem;
  }
}
@media (max-width: 1200px) {
  :root {
    --f-size: 0.82rem;
  }
}

@media (max-width: 730px) {
  :root {
    --nav-btn-i-size: 1rem;
    --nav-link-f-size: 0.82rem;
  }
}

@media (max-width: 750px) {
  :root {
    --f-size: 0.75rem;
  }
}

/* ==> @keyframes */
@keyframes aniTopBot2x {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4rem);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes aniTnavLink {
  0% {
    transform: translateX(calc(100% + 1.25rem));
  }

  100% {
    transform: translateX(0);
  }
}

* {
  font-family: var(--primary-font);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 5rem;
}

body {
  overflow-x: hidden;
  font-size: var(--f-size);
  color: var(--text-200);
  background: var(--bg-300);
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-100);
  font-style: normal;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--secoundry-font);
}
h1 *,
h2 *,
h3 *,
h4 *,
h5 *,
h6 * {
  font-family: var(--secoundry-font);
}

h6 {
  font-size: 1rem;
}

p {
  color: var(--text-200);
  font-weight: 400;
  margin-bottom: 0.7rem;
}

a {
  text-decoration: none;
  color: var(--txt-prime);
  display: inline-block;
}

span {
  display: inline-block;
}

img {
  width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  text-align: start;
  background: transparent;
}

/*++++++++++++++++++++++++++++++
        MARK COLOR 
++++++++++++++++++++++++++++++++*/
::-moz-selection {
  /* Code for Firefox */
  color: white;
  background: var(--primary);
}

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

/*++++++++++++++++++++++++++++++
        CUSTOM SCROLLBER 
++++++++++++++++++++++++++++++++*/
::-webkit-scrollbar {
  width: 0.31rem;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary);
  transition: var(--Ltrns);
}

/*++++++++++++++++++++++++++++++++++
  FORM VALIDATION FIELDS 
++++++++++++++++++++++++++++++++++++*/
.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("../../../upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Eo_circle_green_checkmark.svg/2048px-Eo_circle_green_checkmark.svg.html");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSwaxffy3Er1DhrdrHp27GEtad8qvGyYw3iX5tBjWE&amp;s");

  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.was-validated :valid ~ .valid-feedback {
  display: block;
}
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip,
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip {
  display: block;
}

/*++++++++++++++++++++++++++++++++++
  INPUT FIELDS / TEXTAREA FIELDS 
++++++++++++++++++++++++++++++++++++*/
form {
  display: grid;
  gap: var(--gap-form);
}
input,
textarea,
select {
  font-size: 0.82rem;
  font-weight: 400;
  margin: 0;
  padding: 0.8rem 0.94rem;
  border-radius: var(--radious-prim);
  width: 100%;
  border: var(--border-input);
  outline: transparent;
}

input[type="checkbox"],
input[type="radio"] {
  width: 0.82rem;
  flex-shrink: 0;
  accent-color: var(--secoundry);
  cursor: pointer;
}

select {
  appearance: none; /* For most modern browsers */
  -webkit-appearance: none; /* For Safari */
  -moz-appearance: none; /* For Firefox */
  -o-appearance: none; /* For Firefox */
  padding-right: 1.56rem;
  flex-shrink: 0;
  cursor: pointer;
}
.select-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.select-box .arrow-i {
  position: absolute;
  right: 1em;
  top: 50%;
  font-size: 0.8rem;
  transform: translateY(-50%);
}

.field-col {
  position: relative;
}

.field-col input,
.field-col textarea {
  padding: 1.68rem 0.94rem 0.82rem 0.94rem;
}

.field-col input:focus + label,
.field-col input:not(:placeholder-shown) + label,
.field-col textarea:focus + label,
.field-col textarea:not(:placeholder-shown) + label {
  top: 0.44rem;
  transform: translateY(0);
  font-size: 0.75rem;
  opacity: 0.7;
}

.field-col :is(input:focus, textarea:focus) {
  border: 1px solid #959bf1;
}

form label {
  font-weight: 500;
  color: var(--text-100);
  font-size: 0.8rem;
  padding-left: 0.5rem;
  margin-bottom: 0.2rem;
  display: block;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  font-size: 0.8rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: #b6c1fe7d;
}

.form-coose {
  display: flex;
  gap: 0.63rem;
  align-items: center;
}

.form-coose label {
  margin: 0;
  padding: 0;
  cursor: pointer;
}

/* Password box  */
.password-box {
  display: flex;
  gap: 0.63rem;
}

.eye-btn {
  flex-shrink: 0;
  border-radius: var(--radious-prim);
  padding: 0 0.6rem;
  flex-shrink: 0;
  background: var(--bg-100);
}

.grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--gap-form);
}
.form-g-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: var(--gap-form);
}

/*++++++++++++++++++++++++++++++
      HELPER CLASSES 
++++++++++++++++++++++++++++++++*/
/* -----+++ Containers */
.container-fluid {
  width: 100%;
  padding: 0 1.25rem;
}

.container {
  width: 87%;
  margin: auto;
}
main .container {
  position: relative;
  z-index: 0;
}

.container-mini {
  width: 67%;
  margin: auto;
}

@media (max-width: 1200px) {
  .container {
    width: 95%;
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .container-mini {
    width: 95%;
    margin: auto;
  }
}

@media (max-width: 600px) {
  .container,
  .container-mini {
    width: 100%;
  }
}
.gradient-set-1 {
  background:
    radial-gradient(
      circle at top center,
      rgba(229, 9, 20, 0.18) 0%,
      rgba(229, 9, 20, 0.08) 18%,
      transparent 45%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255, 59, 48, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(139, 0, 0, 0.06) 0%,
      transparent 35%
    ),
    linear-gradient(180deg, #050505 0%, #090909 35%, #0b0b0b 70%, #050505 100%);
}

.gradient-set-2 {
  background: linear-gradient(
    90deg,
    rgba(66, 0, 4, 1) 0%,
    rgba(3, 0, 0, 0.78) 47%,
    rgba(66, 0, 4, 1) 100%
  );
}
/* ---> Flex wrapp auto col */
.flx-spbw-wrapp {
  display: flex;
  justify-content: space-between;
  gap: var(--gap-form);
  flex-wrap: wrap;
}

/*---> Tag box */
.flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;

  & > * {
    flex-shrink: 0;
  }
}

/*--> others */
.no-wrap {
  text-wrap: nowrap;
}

/* CLass for top/bottom spc in silk slider row  */
.silk-gap {
  padding: 0.5rem 0;
}

/* Italic fade text */
.ittalic {
  font-size: inherit;
  font-style: italic;
  color: var(--text-200);
}

/*==> Grid BOX */
.g-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.13rem;
}

.grid-row-auto-A {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}
.grid-row-auto-B {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
}

@media (max-width: 785px) {
  .grid-row-auto-A {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .g-row-2.g-row-2-sm1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* @media (max-width: 550px) {
  .g-row-2.g-row-2-sm1 {
    grid-template-columns: repeat(1, 1fr);
  }
} */

/*==> Section Spacing  */
.spc-y-2x {
  --spacing-y: 7rem;
  padding-top: var(--spacing-y);
  padding-bottom: var(--spacing-y);
}

.spc-y-1x {
  --spacing-y: 2.7rem;
  padding-top: var(--spacing-y);
  padding-bottom: var(--spacing-y);
}

@media (max-width: 838px) {
  .spc-y-2x {
    --spacing-y: 4rem;
  }
}

/*==> Display properties */
.d-flex {
  display: flex;
}
.d-grid {
  display: grid;
}
.d-block {
  display: block;
}
.d-none {
  display: none;
}

/*==> Padding / Margin  */
.p-0 {
  padding: 0 !important;
}
.m-0 {
  margin: 0 !important;
}

/*==>  Button Icon Margin  */
.i-mr {
  margin-right: 0.3rem;
}
.i-ml {
  margin-left: 0.3rem;
}

/* Table */
table {
  width: 100%;
  vertical-align: middle;
  border-spacing: 0;
}

table :where(th, td) {
  padding: 0.5rem 0.8rem;
  text-align: start;
}

table th {
  font-weight: 600;
  text-transform: capitalize;
  color: var(--text-100);
}

table.bordered :is(td, th) {
  border: var(--border-input);
  border-collapse: collapse;
}

.table-responsive {
  overflow-x: auto;
}

/* Responsive scrollbar of table  */
.table-responsive::-webkit-scrollbar {
  height: 3px;
  background-color: #eeeeee;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: #cfcfcf;
}
