@media (max-width: 767px) {
    .carousel-inner .item .col-xs-12 {
      text-align: center;
    }
    .carousel-inner .item img {
      display: inline-block;
      margin: 0 auto;
    }
  }
  .grayscale {
                          border: 0px solid black;
                          filter: grayscale(100%);
                          -webkit-filter: grayscale(100%);
                          /* For Webkit browsers */
                          filter: gray;
                          /* For IE 6 - 9 */
                          -webkit-transition: all .6s ease;
                          /* Transition for Webkit browsers */
                        }
                        .grayscale:hover {
                          filter: grayscale(0%);
                          -webkit-filter: grayscale(0%);
                          filter: none;
                        }
                        #owl-demo .owl-item {
                          margin: 3px;
                        }
                        #owl-demo .owl-item img {
                          display: block;
                          width: 100%;
                          height: auto;
                        }
                        .titlehd{
        text-align: center;
    }
     .faq-section {
            max-width: 800px;
            margin: auto;
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        }
        .faq-title {
            text-align: center;
            font-size: 28px;
            margin-bottom: 20px;
            color: #d9534f; /* Red color scheme */
        }
        .faq-item {
            border-bottom: 1px solid #ddd;
            padding: 10px 0;
        }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            outline: none;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            text-align: left;
            padding: 15px;
            color: #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        .faq-question:hover {
            color: #d9534f;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 15px;
            font-size: 16px;
            color: #555;
            transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
        }
        .faq-question::after {
            content: "▼";
            font-size: 16px;
            color: #d9534f;
            transition: transform 0.3s ease;
        }
        .faq-question.active::after {
            transform: rotate(180deg);
        }
        .faq-answer.open {
            max-height: 200px;
            padding: 10px 15px;
        }
        .otpbox {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 0 12px rgba(0,0,0,0.1);
      text-align: center;
    }

    .otpbox h2 {
      margin-bottom: 20px;
    }

    .otpbox input[type="tel"], .otp-inputs input[type="text"]{
      width: 100%;
      padding: 5px;
      font-size: 16px;
      margin-bottom: 20px;
      border: 2px solid #ccc;
      box-sizing: border-box;
    }

    .otp-inputs {
      display: none;
      gap: 10px;
      justify-content: center;
      margin-bottom: 20px;
    }

    .otp-inputs input {
      width: 45px;
      height: 50px;
      text-align: center;
      font-size: 18px;
    }

    .otpbox button {
      width: 100%;
      padding: 14px;
      font-size: 16px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }

    .otpbox button:hover {
      background-color: #0056b3;
    }

    .otpbox .back {
      background: none;
      color: #007bff;
      border: none;
      margin-top: 10px;
      text-decoration: underline;
      cursor: pointer;
    }
    .fakemodal-disabled{
        pointer-events: none;
        opacity: 0.6;
        cursor: not-allowed;
        background-color: #eee;
      }
  
  .loadermodel {
      position: absolute; /* Position it absolutely in the container */
      top: 62%;  /* Distance from the top of the container */
      left: 42%;  /* Center it horizontally */
      transform: translateX(-50%); /* Center it precisely */
      border: 8px solid #f3f3f3;  /* Light grey background */
      border-top: 8px solid #3498db; /* Blue color for the top */
      border-radius: 50%;  /* Make it round */
      width: 80px;  /* Size of the loader */
      height: 80px;  /* Size of the loader */
      animation: spin 2s linear infinite; /* Spinning animation */
      background-color: rgba(255, 0, 0, 0.3);
  }
  .card {
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-radius: 8px;
      background: yellow;
      color: black;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      padding: 20px;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .card h3 {
      font-size: 22px;
      font-weight: bold;
    }

    .card p {
      font-size: 16px;
    }

    .card i {
      font-size: 50px;
      margin-bottom: 15px;
    }
    .popupclose{
width: 7%;
    box-shadow: 0 2px 2px white;
    background: white;
}
   .close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000000 !important;
  text-shadow: 0 1px 0 #fff;
  opacity: 1;
  filter: alpha(opacity=20);
}
    /* Button style for demo booking */
    .btn-book {
      margin-top: 15px;
      background-color: #ff9800;
      color: white;
      border-radius: 20px;
      padding: 10px 20px;
      text-transform: uppercase;
      font-weight: bold;
      border: none;
      transition: background-color 0.3s ease;
    }

    .btn-book:hover {
      background-color: #e68900;
    }
     /* Custom CSS for the fixed button with vertical text */
    .fixed-left-btn {
      position: fixed;
      right: -60px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1050;
      display: flex;
      flex-direction: column; /* Vertical layout */
      align-items: center;
      
    }

    .fixed-left-btn button {
      font-size: 16px;
      font-weight:bold;
      padding: 10px 10px; /* Adjust padding for taller button */
      transform: rotate(-90deg); /* Rotate text to make it vertical */
      white-space: nowrap; /* Ensure the text stays on one line */
      text-align: center; /* Align text in the center */
      background-color: yellow;
      color: black;
      border-radius: 30px;
      border: 2px solid #000;
      transition: background-color 0.3s;
    }
  
    .fixed-left-btn button:hover {
      background-color: #c9302c; /* Darker red on hover */
    }
    #blink_text{	
  animation-name:blink;
  animation-duration:1s;
  animation-timing-function:ease-in;
  animation-iteration-count:Infinite;
  }

@keyframes blink{
  0%{color:black;}
  50%{color:blue;}
  100%{color:red;}
}
    .train-btn{    border-radius: 15px;
    margin-right: 5px;
background-color: #f30303 !important;
    border-color: #ffffff !important;

}
.patnerimg{
    border: 1px dashed #4386f1;
    padding: 6px;
}
.modal-header{
    padding-bottom: 41px;
    background: #e77632;
}.modal-title{
    color: white;
    text-align: center;
    font-weight: 500;
    font-size: 24px;
}
.modal-body{
background: #fbefbf;
    padding-bottom: 19%;
}.modal-footer{
background: #c7c7c7;
}
 .train-btn{    border-radius: 15px;
                margin-right: 5px;
            background-color: #f30303 !important;
                border-color: #ffffff !important;
            
            }
            .patnerimg{
                border: 1px dashed #4386f1;
                padding: 6px;
            }
            .modal-header{
                padding-bottom: 41px;
                background: #e77632;
            }.modal-title{
                color: white;
                text-align: center;
                font-weight: 500;
                font-size: 24px;
            }
            .modal-body{
            background: #fbefbf;
                padding-bottom: 19%;
            }.modal-footer{
            background: #c7c7c7;
            }
            .item img{
                                    width: 100%;
                                }
                                
                                .course-namess {
                                    border-bottom: 1px solid #CCC;
                                    text-transform: uppercase;
                                    color: #34495E;
                                    font-size: 16px;
                                    font-weight: 700;
                                    padding: 2px 0;
                                    text-align: center !important;
                                    background: #f7f7f7 !important;
                                }
                                .staff-designation-dates {
                                    border-bottom: 1px solid #CCC;
                                    text-transform: uppercase;
                                    color: #e84c3d;
                                    font-size: 16px;
                                    font-weight: 700;
                                    padding: 2px 0;
                                    text-align: center !important;
                                    background: #f7f7f7 !important;
                                }
                                .staff-experince {
                                    text-align: center !important;
                                    background: #f7f7f7 !important;
                                    padding-bottom: 20px;
                                    color: #34495e;
                                    line-height: 40px;
                                    font-family: arial;
                                }