.shine-button {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: white !important;
    text-transform: uppercase;
    background: linear-gradient(45deg, #3e62f5, #6a85f9);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

.shine-button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(25deg);
    transition: all 0.5s ease;
    pointer-events: none;
}

.shine-button:hover:before {
    left: 100%;
}

.shine-button:hover {
    background: linear-gradient(45deg, #6a85f9, #3e62f5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.shine-button:active {
    transform: scale(0.95);
    background: linear-gradient(45deg, #3e62f5, #5068f5);
}

button.shine-button a {
    color: #fff !important;
}

.d-title {

    font-weight: bold;
    color: #3e62f5;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 8px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
    margin: 0;
    transition: text-shadow 0.4s ease, transform 0.4s ease;
}

.d-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.5) 25%, transparent 50%, rgba(255, 255, 255, 0.5) 75%);
    transform: translate(-50%, -50%) rotate(-30deg);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.d-title:hover {
    text-shadow: 0 6px 10px rgba(0, 0, 0, 0.4), 0 12px 18px rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
}

.d-title:hover::before {
    opacity: 1;
}

.shadow-hr {  
    border: 0;  
    height: 2px;  
    background-color: #6a85f9; /* Customize color */  
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);  
    animation: shadowEffect 1s forwards;  
}  

@keyframes shadowEffect {  
    from {  
        box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);  
    }  
    to {  
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);  
    }  
}

.box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px #dee3fd, 0 5px 15px #b9c3ea;
    transition: transform 0.3s;
    margin-bottom: 42px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 29px;
}

.box:hover {  
    transform: translateY(-10px);  
}  

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  flex-wrap: wrap; /* Ensure wrapping */
}

.header-title {
  font-size: 2.5rem;
  color: #3e62f5;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  margin: 0 20px;
  animation: floatTitle 4s ease-in-out infinite;
  flex-grow: 1; /* Allow the title to grow as needed */
  text-align: center;
}

/* Floating Animation for Title */
@keyframes floatTitle {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Space between buttons */
  margin: 20px 0; /* Space around the button group */
}

i.fa.fa-caret-right {
  text-align: center;
  margin-right: 11px;
}


@media (max-width: 576px) {
.shine-button{
      font-size: 14px;
     
  }
}

@media (min-width: 577px) and (max-width: 768px) {
.shine-button{
      font-size: 15px;
     
  }
}

@media (min-width: 769px) and (max-width: 992px) {
.shine-button{
      font-size: 16px;
     
  }
}

@media (min-width: 993px) {
.shine-button{
      font-size: 10px;
      
  }
}

@media (min-width: 1200px) { 
  .shine-button{
    font-size: 19px;
    
  }
}

