body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: linear-gradient(to bottom right, #0f2027, #203a43, #2c5364); /* Dark teal gradient */
    color: #e3e3e3; /* Soft silver text */
  }
  
  header {
    background: rgba(0, 0, 0, 0.5); /* Glass effect */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #f0f8ff; /* Alice blue text */
    text-align: center;
    animation: fadeInDown 2s ease-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
  }
  
  header h1 {
    margin: 1px 0 -19px 0;
    font-size: 30px;
    animation: fadeInDown 0.5s ease-out;
    font-weight: bold;
    color: #b0e0e6; /* Light pastel blue */
  }
  
  header h2 {
    margin: 11px 0 0 0;
    font-size: 1.5rem;
    animation: fadeInUp 1s ease-out;
    color: #d1eeee; /* Soft pastel cyan */
  }
  
  main {
    padding: 20px;
  }
  
  .intro {
    text-align: center;
    animation: fadeIn 1s ease-in;
  }
  
  .intro h1 {
    font-size: 2.5rem;
    color: #b0c4de; /* Light steel blue */
  }
  
  .intro h2, .intro h3 {
    font-size: 1.5rem;
    margin-top: -10px;
    color: #f5fffa; /* Mint cream */
  }
  
  .feature-highlight h2 {
    text-align: center;
    font-size: 2.2rem;
    margin: 20px 0;
    color: #add8e6; /* Light blue */
    animation: bounceIn 1s ease-out;
  }
  
  .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
  }
  
  .features .card {
    background: rgba(255, 255, 255, 0.1); /* Glass effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    padding: 20px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: #e3e3e3; /* Soft silver text */
  }
  
  .features .card:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
  }
  
  .features .card strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #b0e0e6; /* Light pastel blue */
  }
  
  .features .card span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
    color: #00ffff; /* Bright cyan */
  }
  
  footer {
    background: rgba(0, 0, 0, 0.5);
    color: #f5fffa; /* Mint cream text */
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
  }
  
  .content {
    text-align: center;
    padding: 20px;
  }
  
  .content h2 {
    color: #b0e0e6;
    font-size: 24px;
  }
  
  .content p {
    font-size: 18px;
    color: #f5fffa;
  }
  
  .highlight {
    color: #f6ea0e;
    font-weight: bold;
  }
  
  .video-container {
    display: inline-block;
    position: relative;
    background: rgba(255, 255, 255, 0.1); /* Glass effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    width: 90%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
  
  video {
    width: 100%;
    height: 50%;
    border-radius: 15px;
  }
  
  .controls {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 0px 0px 15px 15px;
    margin-top: -5px;
  }
  
  .controls button,
  .controls input {
    background: transparent;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin: 0 10px;
  }
  
  .controls input[type="range"] {
    width: 150px;
    height: 5px;
    appearance: none;
    background: #fff;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .controls button:hover {
    color: #4CAF50;
  }
  
  .banner {
    width: 20%;
    margin-left: 40%;
  }
  
  .banner h1 {
    position: relative;
    margin: 47px auto 47px;
    padding: 10px 40px;
    text-align: center;
    background-color: #ff8c00; /* Vibrant orange */
    color: #ffffff; /* White text for contrast */
    border-radius: 10px;
    font-size: 40px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.5); /* Glowing effect */
  }
  
  .banner h1::before,
  .banner h1::after {
    content: '';
    width: 80px;
    height: 100%;
    background-color: #ff8c00; /* Same vibrant orange */
    position: absolute;
    z-index: -1;
    top: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 25% 50%);
    background-image: linear-gradient(45deg, transparent 50%, #ff4500 50%); /* Fiery red-orange gradient */
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: bottom right;
  }
  
  .banner h1::before {
    left: -60px;
  }
  
  .banner h1::after {
    right: -60px;
    transform: scaleX(-1); /* flip horizontally */
  }

  .title{
    font-size: 45px;
    font-weight: bold;
    color: #add8e6;
  }
  
  .desk {
    font-size: 40px;
    color: #add8e6;
    margin-top: 75px;
  }
  
  .re {
    font-size: 40px;
    color: #add8e6;
    margin-top: 9px;
  }
  
  .character {
    width: 100px;
    margin: 20px auto;
  }
  .container{
    width: 89%;
    margin-left: 6%;
    text-align: center;
    margin-top: 100px;
  }
  .span{
    color: #f6ea0e;
    font-weight: bold;
  } 
  .explain01{
    margin:6% 0% 4% 5%;
    width: 90%;
    height: auto;
  }

  .explain {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1); /* Glass effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.explain h1 {
    font-size: 30px;
    color: #f6ea0e;
    margin-bottom: 20px;
}
.explain p {
   
    padding: 30px;
    background-color: darkslategray;
    font-size: 31px;
    border-radius: 53px;
    color: #f5fffa;
    font-weight: bolder;
    line-height: 1.6;
    margin-bottom: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
  .head {
    margin-left: 5%;
    width: 90%;
    margin-bottom: 4%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.head h1 {
    margin: 20px;
    font-size: 24px;
}
.head .button {
    background-color: #00b300;
    color: #add8e6;
    padding: 10px 20px;
    border: none;
    width: 350px;
    font-weight: bolder;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    margin: 0% 0% 1% 0%;
}
.button:hover {
    background-color: #4CAF50; /* Vibrant green */
    color: #fff; /* White text */
    transform: scale(1.1); /* Slightly increase size */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Add a shadow effect */
    transition: all 0.3s ease; /* Smooth transition */
}
.table-container {
    width: 90%;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.1); /* Glass effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}
table {
    width: 100%;
    border-collapse: collapse;
}
td{
    font-size: 18px;
}
th, td {
    padding: 10px;
    color: #add8e6;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.3);
    font-weight: bolder;
}
th {
    background: rgba(255, 255, 255, 0.1);
    font-size: 25px;
    font-weight: bold;
}
.section-title {
    background: rgba(255, 255, 255, 0.1);
    font-weight: bold;
    text-align: left;
    padding-left: 10px;
}
.checkmark {
    color: #00b300;
}
.prices {
    font-weight: bold;
    color: #dcee10;
}
.Maintenance{
    margin: 3% 0% 0% 28%;
    font-size: 20px;
    font-weight: bolder;
}
/* Footer Section */
.end {
  background-color: #4e6872;
  border-radius: 15px;
  padding: 50px 20px;
  text-align: center;
  animation: slideUpFooter 1.5s ease-out;
  width: 90%;
  margin: 3% 0% 0% 4%;
}

.end img {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  animation: zoomInFooter 2s ease-out;
}

.end h1 {
  font-size: 47px;
  font-family: revert;
  margin: -35px 0 10px;
  color: #add8e6;
  animation: bounceInFooter 1.8s ease-out;
}

.end h2 {
  font-size: 30px;
  margin: 17px 0 39px;
  color: #add8e6;
  animation: fadeInFooter 2s ease-in;
}

.end p {
  font-size: 30px;
  margin: -3% 0% 0% 0%;
  color: #add8e6;
  animation: fadeInFooter 2.2s ease-in;
}

.end a {
  text-decoration: none;
  font-size: 30px;
  display: flow;
  color: #aad5e3;
  font-style: italic;
  animation: fadeInFooter 2.5s ease-in;
  transition: color 0.3s ease, transform 0.3s ease;
}

.end a:hover {
  color: #ffffff;
  transform: scale(1.1);
}
.top{
    text-align: center;
}
.top h1 {
    font-size: 47px;
    font-weight:bolder;
    color:#aad5e3 ;

}
.top p {
    font-size: 47px;
    font-weight:bolder;
    color:#aad5e3 ;
    margin-top: -45px;

}
/* General Dashboard Styling */
.dashboard {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    width: 90%;
    margin: 3% 0% 0% 4%;
}

/* Dashboard Heading */
.dhead {
  background: rgba(0, 0, 0, 0.5);
  margin: -2% 0% 0% 18%;
  width: 62%;
  border-radius: 10px;
}

.dhead h1 {
  text-align: center;
  font-size: 2.5em;
  color: #add8e6;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.dwithdrawal {
  background: rgba(0, 0, 0, 0.5);
  margin: -2% 0% 0% 18%;
  width: 62%;
  border-radius: 10px;
}

.dwithdrawal h1 {
  text-align: center;
  font-size: 2.5em;
  color: #add8e6;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.dCustomers {
  background: rgba(0, 0, 0, 0.5);
  margin: -2% 0% 0% 18%;
  width: 62%;
  border-radius: 10px;
}

.dCustomers h1 {
  text-align: center;
  font-size: 2.5em;
  color: #add8e6;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.dAdmin {
  background: rgba(0, 0, 0, 0.5);
  margin: -2% 0% 0% 18%;
  width: 62%;
  border-radius: 10px;
}

.dAdmin h1 {
  text-align: center;
  font-size: 2.5em;
  color: #add8e6;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.dAdmin_withdrawal {
  background: rgba(0, 0, 0, 0.5);
  margin: -2% 0% 0% 18%;
  width: 62%;
  border-radius: 10px;
}

.dAdmin_withdrawal h1 {
  text-align: center;
  font-size: 2.5em;
  color: #add8e6;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Sub Heading */
.dsub_head {
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  margin: -1% 0% 0% 36%;
  width: 25%;
  border-radius: 10px;
  
}

.dsub_head h2 {
  font-size: 1.8em;
  color: #add8e6;
  font-weight: normal;
  text-transform: capitalize;
}

/* Dashboard Content */
.dcontent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.dcontent img {
  width: 100%;
  max-width: 600px;
  margin:1% 0% 0% -50%;
}

.dcontent p {
  font-size: 30px;
    color: #e4e3e3;
    line-height: 1.6;
    max-width: 50%;
    margin: -26% -2% 9% 47%;
}
/* Keyframes for Footer Animations */
@keyframes fadeInFooter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUpFooter {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes zoomInFooter {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounceInFooter {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 768px) {
    .header h1 {
        font-size: 18px;
    }
    .header .button {
        font-size: 16px;
    }
    th, td {
        padding: 5px;
    }
}
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes bounceIn {
    0% {
      opacity: 0;
      transform: scale(0.3);
    }
    50% {
      opacity: 1;
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  