/* styles.css */

/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: left !important;
  }
.guide{
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

  
  /* Breadcrumb styling */
  .breadcrumb {
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    padding: 2rem 1rem;
    margin-bottom: 1rem;
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    color: #6c757d;
  }
  
  .breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
  }
  
  .breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  
  .breadcrumb-item.active {
    color: #6c757d;
  }
  .input-group .btn {
    position:static;
  }
  .footer{
    margin: 0px;
    width: 100%;
    margin-top: 20px;
  }
  /* Additional styles for other sections */
  .checkout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .address-section,
  .cart-section,
  .payment-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  h2 {
    margin-top: 0;
  }
  
  form {
    display: grid;
    gap: 10px;
  }
  
  label {
    font-weight: bold;
  }
  
  input,
  select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  button {
    background-color: #28a745;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #218838;
  }
  
  .hidden {
    display: none;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .checkout-container {
      grid-template-columns: 1fr;
    }
  }
  

/* New NAvbar CSS Starts Here*/

/* 
nav {
  background-color: #091020;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
} */

.nav__logo {
  font-size: 1.8rem;
  /* Increased font size for the logo */
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  /* border: 2px solid white; */
  text-decoration: none;
}

.nav__logo span {
  color: #3685fb;
  /* Assuming this is your primary color */
}


.link a {
  /* padding: 0.5rem 1rem; Adjusted padding for links */
  color: #ffffff;
  transition: 0.3s;
  font-weight: 600;
  text-decoration: none;
}

.link a:hover {
  color: #ff0000;
}


header {
  background-color: var(--secondary-color);
}
/* 

.nav-container {
  height: auto;
  width: 200%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  left: 0;
  z-index: 9999;
  
} */

/* .newNav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
  height: auto;
  width: 100%;
  padding: 1rem 2rem;
} */

/* .navLinks {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  list-style: none;
  gap: 1.2rem;
  position: relative;
  z-index: 10;
  margin-right: 20px;
  margin-top: 20px;

} */

.link a {
  position: relative;
  list-style: none;
}

.link a::before {
  position: absolute;
  content: '';
  height: 2px;
  width: 0%;
  bottom: -5px;
  left: 0;
  background-color: red;
}

.link a::after {
  position: absolute;
  content: '';
  height: 2px;
  width: 0%;
  top: -5px;
  right: 0;
  background-color: red;
  transition: all 0.2s ease-in-out;
}

.link a:hover::before {
  width: 100%;
  transition: all 0.2s ease-in-out;
}

.link a:hover::after {
  width: 100%;
  transition: all 0.2s ease-in-out;
}


.hamburger {
  height: 2rem;
  width: 1.7rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  display: none;
  transition: 0.2s;
}

.line {
  height: 5px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
}

@media screen and (max-width: 1220px) {
  .hamburger {
    display: flex;
    cursor: pointer;
  }

  .navLinks {
    position: absolute;
    top: 70px;
    background-color: #091020;
    width: 0%;
    left: 0;
    height: 100vh;
    padding: 2rem 0;
    flex-direction: column;
    transition: 0.2s;
    overflow: hidden;
  }

  .navLinks li {
    width: 100%;
    padding: 0.5rem 0;
    background-color: #1f2532;
    z-index: 10;
  }

  /* #toggle {
    font-size: 0.6rem;
  } */

  #btn-style {
    font-size: 0.6rem;
  }
}

.navLinks.activeHamburger {
  width: 100%;
}

.btn {
  display: inline-block;
  border-radius: 50px;
  transition: all .4s ease-in-out;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  width: auto;
  background-color: transparent;
  border: 2px solid slateblue;
  color: red;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
  vertical-align: middle;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  background-color: #ff0000; 
  border-color: #ff0000;
  color: #fff;
  cursor: pointer;
}

.btn:hover {
  filter: brightness(1.5);
}


/*New toggle*/

.toggle-container{
  opacity: 1 !important;
  border-width: 0px !important;
}

.toggle-container input{
  border-width: 0px ;
}
/* new toggle start */
/* .toggle-container {
  --size: 2rem;
  position: relative;
  width: var(--size);
  height: var(--size);
  margin-right: 71px;
  z-index: 1;
} */

/* .toggle {
  appearance: none;
  outline: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
  box-shadow: inset calc(var(--size) * 0.33) calc(var(--size) * -0.25) 0;
  border-radius: 999px;
  color: hsl(240, 100%, 95%);
  transition: all 500ms;
  position: absolute;
  top: 0;
  left: 0;

  &:checked {
    --ray-size: calc(var(--size) * -0.4);
    --offset-orthogonal: calc(var(--size) * 0.65);
    --offset-diagonal: calc(var(--size) * 0.45);
    transform: scale(0.75);
    color: hsl(40, 100%, 50%);
    box-shadow: inset 0 0 0 var(--size),
      calc(var(--offset-orthogonal) * -1) 0 0 var(--ray-size),
      var(--offset-orthogonal) 0 0 var(--ray-size),
      0 calc(var(--offset-orthogonal) * -1) 0 var(--ray-size),
      0 var(--offset-orthogonal) 0 var(--ray-size),
      calc(var(--offset-diagonal) * -1) calc(var(--offset-diagonal) * -1) 0
        var(--ray-size),
      var(--offset-diagonal) var(--offset-diagonal) 0 var(--ray-size),
      calc(var(--offset-diagonal) * -1) var(--offset-diagonal) 0 var(--ray-size),
      var(--offset-diagonal) calc(var(--offset-diagonal) * -1) 0 var(--ray-size);
  }
} */

/* Apply fade-down animation to the toggle container */
/* .toggle-container[data-aos='fade-down'] {
  transition: opacity 500ms ease-in-out;
  opacity: 1;
}

.toggle-container[data-aos='fade-down'].aos-animate {
  opacity: 1;
} */


/* New NAvbar CSS Ends Here*/

.hr:hover{
  color: whitesmoke;
}
/* Light mode styles (default) */
body {
  background-color: #f8f9fa;
  color: #212529;
}

.nav-container {
  background-color: #ffffff;
}

.footer {
  background-color: #ffffff;
  color: #212529;
}

/* Dark mode styles */
body.dark-mode {
  background-color: #002152;
  color: #ffffff;
}

body.dark-mode .nav-container {
  background-color: #343a40;
}

body.dark-mode .footer {
  background-color: #343a40;
  color: #ffffff;
}

/* Toggle button styles */
.toggle-container {
  /* position: fixed; Change this as needed for positioning */
  /* top: 10px;
  right: 10px; */
}

/* .toggle {
  
  appearance: none;
  background-color: #ccc;
  cursor: pointer;
  border-radius: 25px;
  position: relative;
  outline: none;
} */
/* 
.toggle:checked {
  background-color: #333;
}
.toggle:checked:before {
  transform: translateX(25px);
} */

.text-center h2{
  background: linear-gradient(120deg, #1c99fe 20.69%, #7644ff 50.19%, #fd4766 79.69%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 600;
}
body.dark-mode #inst{
  background: #0056b3;
}

body.dark-mode form input{
  background-color: #303234;
  color: #ccc !important;
}
body.dark-mode form select{
  background-color: #303234 !important;
  color:#ccc;
}
body.dark-mode form .user{
  background-color: #303234  !important;
  color:rgb(198, 198, 198);
}

body.dark-mode form ::placeholder{
  color:#ccc !important;
}
body.dark-mode form{
  color:#ccc !important;
}

body.dark-mode .text-body-secondary{
  color:#6c757d !important;
}
body.dark-mode form option{
  color:#ccc !important;
}
body.dark-mode form select ::-ms-value{
  color:#ccc !important;
}
body.dark-mode .cart{
  background-color: #343a40;
}
body.dark-mode .text-primary{
  color:aliceblue !important;
}

body.dark-mode .list-group-item {
  background-color: #343a40 !important;
  color: #ccc;
}

body.dark-mode small,body.dark-mode #package-cost{
  color: white !important;
}
.newNav #btn-style{
  background-color: var(--btn-border) !important;
  border: 2px solid var(--btn-border) !important;
}