@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection{
    background-color: red;
    color: white;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

#container{
    background-color: black;
    color: white;
}

.navbar {
    background-color: black;
}

.navbar-brand {
    color: #ff6600;
    font-weight: bold;
}

.navbar-nav .nav-link {
    color: #fff;
}

.sider {
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    padding: 10px 20px;
    position: relative;
    display: inline-block;
    overflow: hidden;
  }
  
  .sider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px; /* make the line thicker */
    width: 100%;
    background: linear-gradient(90deg, red , orange , yellow);
    background-size: 200% auto;
    transition: all .5s;
    transform: translateX(-100%);
  }
  
  .sider:hover::after {
    transform: translateX(0%);
    animation: gradient-89 3s linear infinite;
  }


.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: black;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 10px 10px 10px red;
}

.hero img {
   max-width: 300px;
    margin: 20px 0;
}

.card {
    border-color: red;
    background-color: #111;
    border: 1px solid #222;
}

.new-card {
    background: linear-gradient(145deg, #111, #222);
    border-radius: 15px;
    padding: 20px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    text-align: center;
    max-width: 400px;
    box-shadow: 10px 10px 10px red;
    transition: 1.5s ease;
}

.new-card:hover{
    transform: scale(1.15);
}

.new-card h4 {
    color: #ff6600;
    font-size: 2rem;
    font-weight: bold;
}
.new-card p {
    font-size: 1rem;
}


.card-title {
    color: #ff6600;
}

.btn-custom {
    background-color: #ff6600;
    border: none;
    color: #fff;
}
/*  */

h1 span {
    font-weight: bold;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .text-warning {
    color: #f39c12 !important; /* Neon yellow */
  }
  
  .text-danger {
    color: #e74c3c !important; /* Neon red */
  }
  
  .text-info {
    color: #1abc9c !important; /* Neon teal */
  }
  
  p {
    color: #dcdcdc; /* Light gray for better readability */
  }

  .new-bat {
    background: linear-gradient(145deg, #111, #222);
    border-radius: 15px;
    padding: 20px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    text-align: center;
    max-width: 400px;
    box-shadow: 10px 10px 10px red;
    transition: transform 0.3s ease;
}

.new-bat:hover{
    transform: translateY(-10px);
}

.new-advisor{
    transition: transform 0.5s ease;
}

.new-advisor:hover{
    transform: translateY(-19px);
}
/*  */

h1 span {
    color: #f39c12; /* Accent color for \"the Secrets\" */
}

p.lead {
    color: #bbb; /* Light gray for descriptive text */
}

.border {
    border-width: 2px !important;
}

/* .img-fluid {
    border: 3px solid rgba(255, 255, 255, 0.1); 
} */

/*  */

h1 span {
    color: #f39c12; /* Accent color */
}

p.lead {
    color: #bbb; /* Light gray text */
}

.card {
    border-width: 2px;
}

.list-group-item {
    font-size: 1.1rem;
    border: none;
    color: #fff;
}

.list-group-item span {
    font-size: 1.5rem;
    color: #f39c12;
}
/*  */

.card-cyber{
    transition: 1.5s ease;
}

.card-cyber:hover{
    transform: scale(1.10);
    box-shadow: 10px 10px 10px red;
}
/*  */

.card-upon{
    padding: 50px;
}

.card-upon h1{
    font-size: 50px;
    font-weight: bold;
}

.card-upon p{
    font-size: 20px;
}

/*  */

.text-second h1{
    font-size: 50px;
}

.text-second span{
    color: linear-gradient(red , orange);
}

/*  */

.btn-warning {
    background-color: #f39c12;
    border-color: #f39c12;
}

.btn-outline-warning {
    color: #f39c12;
    border-color: #f39c12;
}

.border-warning {
    border-width: 2px;
}

.text-warning {
    color: #f39c12 !important;
}

.custom-hover {
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: transparent; /* Default background */
    color: white; /* Default text color */
  }
  
  .custom-hover:hover {
    background-color: red; /* Background changes to red on hover */
    color: white; /* Text changes to white on hover */
  }
  /*  */

  .text-reset{
    color: pink;
    text-decoration: none;
}

.footer-icons a:hover{
    color: red;
}

.text-reset:hover{
    text-decoration: underline;
}

.Cyber{
    color: red;
}

.Cyber:hover{
    text-shadow: 5px 5px 5px red;
}


a i {
    transition: all 0.3s linear;
}

a:hover i {
    transform: scale(1.5);
}
/*  */

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: red;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 100%;
    width: 60px;
  }
  
  #myBtn:hover {
    background-image: linear-gradient(red , orange );
  }
