#home-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}



    .modal-kid .modal-content {
      background-color: #1b1464;
      border-radius: 20px;
      border: 4px solid #1b1464;
      color: #ffffff;
      animation: bounceIn 0.8s;
    }

    .modal-kid .modal-header {
      background-color: #1b1464;
      border-bottom: none;
      border-radius: 20px 20px 0 0;
    }

    .modal-kid .modal-title {
      color: #ffffff;
      font-weight: bold;
      font-size: 1.5rem;
    }

    .modal-kid .form-control {
      border-radius: 12px;
      border: 2px solid #1b1464;
      transition: all 0.3s ease-in-out;
    }

    .modal-kid .form-control:focus {
      border-color: #ffb703;
      box-shadow: 0 0 10px #ffd166;
    }

    .modal-kid .btn-primary {
      background-color: #C42631;
      border: none;
      border-radius: 12px;
      font-size: 1.1rem;
      transition: transform 0.2s;
    }


    .modal-kid .btn-primary:hover {
      background-color: #C42631;
      transform: scale(1.05);
    }

    .btn-bounce:hover {
      animation: bounce 0.8s;
    }

    
    .btn-danger {
      background-color: #C42631;
    }
    .btn-danger:hover {
      background-color: #C42631;
    }

    @keyframes bounceIn {
      0% { transform: scale(0.5); opacity: 0; }
      60% { transform: scale(1.1); opacity: 1; }
      100% { transform: scale(1); }
    }

    body {
            margin: 0;
            font-family: Arial, sans-serif;
            color: white;
            background: #1B1464;
            /* main bg gradient */
        }

        .sidebar {
            background: #1B1464;
            min-height: 100vh;
            padding: 5rem 4rem;
        }

        .sidebar h5 {
            margin-top: 2rem;
            font-weight: bold;
        }

        .btn-custom {
            background: #2E3093;
            border: none;
            color: white;
            padding: 10px 15px;
            border-radius: 10px;
        }

        .btn-custom:hover {
            background: #2E3093;
        }

        .hero {
            padding: 3rem 0rem 5rem 0rem ;
            border-radius: 15px;
            margin-bottom: 1.5rem;
        }

        .track-list {
            background: #2d2a85;
            /* solid blue background like in image */
            border-radius: 0;
            /* flat edges */
            padding: 0;
            margin: 0;
        }

        .playlist li {
            background:#1B1464;
            /* light overlay */
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 8px;
            padding: 10px 14px;
            border-radius: 0px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
        }

        .playlist li:hover {
            background: #1B1464;
        }
 .logo-big {
      max-width: 350px;
    }
        .playlist li.active {
            border: 2px solid #C42631;
            /* pink highlight */
            background: #1B1464;
        }

        .audio-controls button {
            background: none;
            border: 2px solid white;
            font-size: 1.5rem;
            color: white;
            margin: 0 10px;
            border-radius: 50%;
            width: 45px;
            height: 45px;
        }

        .audio-controls button:hover {
            background: white;
            color: #3a0ca3;
        }
        .box-right {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 0px;
            padding: 20px;
      background: linear-gradient(to bottom, #4daee9 30%, #a9e3f7 70%),
    url("../img/bella-bg-2.png") no-repeat top center;
        background-size: 100%; 
  /* background-attachment: fixed; */
        }


        .box-right-index{
             /* background: 
    linear-gradient(to bottom,rgba(255, 255, 255, 0.16) 30%, #2E3192 70%),
    url("./assets/bella-bg.png") no-repeat top center; */
    background:linear-gradient(to bottom,rgba(255, 255, 255, 0.16) 19%, #2E3192E8 30%), url("../img/bella-bg.png") no-repeat top center; 
      background-size: 100%; 
       }


        .box-right-single{
  background: 
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.16) 0%,    /* dark top */
      rgba(30, 41, 99, 0.75) 20%,  /* fade still strong */
      rgba(30, 41, 99, 0.95) 30%    /* clear bottom */
    ),
    url("../img/bella-bg-2.png") no-repeat top center;

  background-size: 100%; /* cover instead of 100% for responsive */
        }
        .box-right-book {

      background: url("../img/clouds.png") no-repeat top center,linear-gradient(to bottom, #83C9DC 30%, #fff 70%);
        background-size: 100%; 
        }
        .button-text-size{
            font-size: 32px;

        }
         .dis-small-text-size{
            font-size: 16px; 
        }
        .title-text-size{
             font-size: 48px;
        }
         .sub-title-text-size{
             font-size: 24px;
        }
         .dis-text-size{
             font-size: 26px;
        }
    .btn-custom-red {
      background-color: #d62828;
      border: none;
      color: #fff;
      font-weight: 600;
      padding: 10px 25px;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    .btn-custom-red:hover {
      background-color: #b81e1e;
    }
/* Mobile responsive */
@media (max-width: 767.98px) {
 
  .btn-custom-red, .btn-custom {
    font-size: 0.9rem!important;
    padding: 8px 12px;
    border-radius: 6px;
  }

  .title-text-size {
    font-size: 28px!important; /* smaller title on mobile */
  }

  .sub-title-text-size {
    font-size: 18px!important;
  }

  .dis-text-size {
    font-size: 16px!important;
  }

  .playlist li {
    font-size: 1rem!important; /* smaller playlist items */
    padding: 8px 10px;
  }

  .button-text-size {
    font-size: 14px!important;
  }

  .dis-small-text-size {
    font-size: 14px!important;
  }
}
@media (min-width: 1200px) {
    .sidebar{
        max-height: 100vh;
    }
    .main-content{
        max-height: 100vh;
        overflow-y: auto;
    }
}

.airline{
    height: 10px;
    background-color: #8C89B5;
    margin-bottom: -8px;
}
.airplane{
position: absolute;
left: 50%;
}

@media (max-width: 767.98px) { 
  .airplane{
    width: 30px;
    left: 43%;
    top:-3px;
  }
}






.fabs {
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.action {
  background: #c42631;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 7px 0px gray;
  transition: background-color 0.4s ease-in-out;
}

.action i {
  position: absolute;
  color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  cursor: pointer;
}

.action:hover {
  background-color: #c42631;
}

.ssbtn {
  position: absolute;
  height: 35px;
  width: 35px;
  border-radius: 50%;
}

.ssbtn i {
  position: absolute;
  font-size: 18px;
  color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.btns {
  position: absolute;
  bottom: 0px;
  margin-bottom: 5px;
  height: 35px;
  width: 35px;
  transition: 0.3s ease-in-out;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.btns.open {
  bottom: 50px;
}
