     .ratio iframe {
            border-radius: 12px;
            border: none;
        }
        .ratio-9x16 {
            position: relative;
            width: 100%;
            padding-bottom: 177.77%; /* 16 / 9 * 100 = 177.77% */
        }
        
        .ratio-9x16 iframe {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 0;
            top: 0;
            left: 0;
            border: 2px solid green;
              padding: 10px;
        }
        
        
         .services-sidebar .sidebar-widget {
    background:#6b8e23 !important;
}
        .table-bordered, .table-bordered tr th {font-size: 17px; }
        .table-bordered, .table-bordered tr th, .table-bordered tr td {
            border: 1px solid #000;
        }
        .table td p{
            margin-bottom: 5px
        }
        a.video span {
            left: 43.68%;
        }
		
		.image-bg::before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: url(frontend/background.webp) no-repeat center center;
			background-size: cover;
		}
		.image-bg {
			position: relative;
			height: 330px;
		}
		.radius8 {
		    border-radius: 8px;
		}
        @media only screen and (max-width: 767px) {
            
             .coursedetailUL li {
    font-size: 16px ;
    }
    
    
    #syllabus .level-btn {
      font-size: 18px;
    padding:15px 7px 15px 45px;
}
    
 
   .schedule-row .activity {
    flex: 0 0 242px;
    color: #2d2d2d;
    padding: 1px 44px;
    line-height: 1.6;
}

    
 .schedule-row .time {
    flex: 0 0 145px;
    font-weight: 700;
    font-size: 11px;
    color: #7a9a01;
    letter-spacing: 0.3px;
}

    
    
       .sm-bg {
                background: #eee;
            }
            .sm-padding-0 {
                padding-left: 0;
                padding-right: 0;
            }
            .list-box {
                padding: 15px 8px;
            }
            .px-6rem {
                padding-right: 0;
                padding-left: 0;
            }
            
            
            
.image_framess {
    Width:100%;
    border-radius: 18px 18px 18px 19px;
}
    
            .table-bordered, .table-bordered tr th {
                font-size: 16px;
            }
            .image-bg::before {
             left: -8px;
            }
            .upper-wrapper {
             min-height: 10px;
              max-width: 100%;
             margin-top: 20px;
             background-color: #6b8e23 !important;
            }
            .upper-wrapper p {
             background: #6b8e23  !important;
            }
            .upper-wrapper div:before {
              border-left: 28px solid #6b8e23;    
            }
    }
    
    
    
    .upper-wrapper p {
    
    background: #6b8e23  !important;
    }
    
    .upper-wrapper div:before {
    border-left: 28px solid #6b8e23;    
    }


.image_frames {
    border-radius: 18px 18px 18px 19px;
}

.image_framess {
    Width:600px;
    border-radius: 18px 18px 18px 19px;
}


        .animated-bg {
            background: #1b931b;
            padding: 8px;
            text-align: center;
        }
        .animated-text {
            font-size: 25px;
            color: #fff;
            text-transform: uppercase;
            font-weight: 700;
            /*animation: glow-animation 1s infinite alternate;*/
        }
        .animated-text .fa-star {
            color: yellow;
        }
        .image_frame img{
        	height: auto!important;
        }
        
        /*.video-responsive {
            position: relative;
            padding-bottom: 56.25%; // 16:9 aspect ratio
            height: 0;
            overflow: hidden;
            max-width: 100%;
        }
    
        .video-responsive iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }*/
        .video-responsive {
          width: 100%;
          height: 100%;
          position: relative;
        }
        
        .video-responsive iframe {
          width: 100%;
          height: 100%;
          border: 0;
        }
        
        .px-6rem {
            padding-right: 6rem;
            padding-left: 6rem;
        }
   
        
        
.gallery-section {
  background: #f8f9f5;
}

.gallery-card {
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover Effect */
.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.gallery-card:hover img {
  transform: scale(1.08);
}




        @-webkit-keyframes scroll {
        0% {
          -webkit-transform: translateX(0);
          transform: translateX(0);
        }
        100% {
          -webkit-transform: translateX(calc(-420px * 6)); /* 400 + 2*10px margin */
          transform: translateX(calc(-420px * 6));
        }
        }
        
        @keyframes scroll {
        0% {
          -webkit-transform: translateX(0);
          transform: translateX(0);
        }
        100% {
          -webkit-transform: translateX(calc(-420px * 6));
          transform: translateX(calc(-420px * 6));
        }
        }
        
        .slider {
            background: transparent;
            height: auto;
            margin: auto;
            overflow: hidden;
            position: relative;
        }
        
        .slider::before,
        .slider::after {
            /*background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);*/
            content: "";
            height: 100%;
            position: absolute;
            width: 200px;
            z-index: 2;
        }
        
        .slider::after {
            right: 0;
            top: 0;
            transform: rotateZ(180deg);
        }
        
        .slider::before {
            left: 0;
            top: 0;
        }
        
        .slider .slide-track {
            display: flex;
            animation: scroll 30s linear infinite;
        }
        
        /* Pause on hover */
        /*.slider:hover .slide-track {
            animation-play-state: paused;
        }*/
        
        .slider .slide {
            width: 400px;
            margin: 0 10px;
            flex-shrink: 0;
        }
        
        .slider .slide img {
            width: 100%;
            border-radius: 10px;
        }
        
/* ===== Accordion Card ===== */
#syllabus .custom-accordion .accordion-item {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* ===== Header Button ===== */
#syllabus .level-btn {
    background: linear-gradient(90deg, #6b8e23, #7fa53b);
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 400;
    padding:15px 7px 15px 45px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Remove default Bootstrap background when open */
#syllabus .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #6b8e23, #7fa53b);
    color: #ffffff;
    box-shadow: none;
}

/* Remove default border */
#syllabus .accordion-button {
    border: none;
    box-shadow: none;
    background:#6b8e23;
}
/* Arrow White */
#syllabus .accordion-button::after {
    filter: brightness(0) invert(1);
}

/* ===== Circle Number ===== */
#syllabus .level-number {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* ===== Body ===== */
#syllabus .accordion-body {
    background: #f5f5f5;
    padding: 35px;
}

/* Vertical Divider */
#syllabus .accordion-body .col-md-6:first-child {
    border-right: 1px solid #ddd;
}

/* ===== Titles ===== */
#syllabus .theory-title {
    color: #6b8e23;
    font-weight: 600;
    margin-bottom: 15px;
}

#syllabus .practical-title {
    color: #ff7a00;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ===== List Style ===== */
#syllabus .syllabus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#syllabus .syllabus-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: #333;
}

/* Green Bullet (Theory) */
#syllabus .syllabus-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6b8e23;
    font-size: 18px;
}

/* Orange Bullet (Practical) */
#syllabus .syllabus-list.practical li::before {
    color: #ff7a00;
}

/* Hover Lift Effect */
#syllabus .accordion-item {
    transition: 0.3s ease;
}

#syllabus .accordion-item:hover {
    transform: translateY(-3px);
}


/* ===== SECTION BACKGROUND ===== */
/* SECTION BG */
.daily-section {
  background: #f3efe8;
  padding: 100px 0;
}

/* CARD */
.schedule-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid #e6e1d8;
}

/* ROW */
.schedule-row {
  display: flex;
  align-items: center;
  padding: 14px 0px; /* slightly smaller */
  font-size: 15px;
  border-bottom: 1px solid #ece8e1;
}

/* REMOVE last border */
.schedule-row:last-of-type {
  border-bottom: none;
}

/* ALTERNATE ROW */
.schedule-row.alt {
  background: #f4f4f2;
}

/* TIME COLUMN */
.schedule-row .time {
  flex: 0 0 158px;   /* fixed width */
  font-weight: 700;
  font-size: 13px;
  color: #7a9a01;
  letter-spacing: 0.3px;
}

/* ACTIVITY */
.schedule-row .activity {
  flex: 0 0 440px;   /* fixed width */
  color: #2d2d2d;
  padding: 1px 44px;
  line-height: 1.6;
}




/* FOOTER */
.schedule-footer {
  background: #e5d6c7;
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.6;
}

.more-text {
    display: none;
    transition: all 0.3s ease;
}

.read-more {
    color: #007bff;
    cursor: pointer;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

        

/* 27-02-025*/
/* Section Background */
.about-area-new {
    background: #f9f9f9;
}

/* Card layout */
.about-area-new .s-about-content {
    display: flex;
    flex-direction: column;
}

/* Ribbon Header */
.about-area-new .ribbon-title {
    background: #6b8e23;
    color: #fff;
    padding: 20px 25px;
    font-size: 22px;
    font-weight: 600;
    min-height: 90px;
    display: flex;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Bottom content box */
.about-area-new .bottom-wrapper {
    background: #ffffff;
    padding: 30px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    flex-grow: 1;
}

/* List styling */
.about-area-new .sound-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-area-new .sound-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.6;
}

.about-area-new .sound-list li i {
    color: #2e8b57;
    font-size: 18px;
    margin-right: 10px;
    margin-top: 4px;
}



.about-content-new {
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.upper-wrapper-new {
    padding: 12px 15px;
    font-weight: 600;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.bottom-wrapper-new p {
    margin-bottom: 10px;
}




/*new*/

#syllabus .level-btn-new {
    background: linear-gradient(90deg, #6b8e23, #7fa53b) !important;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 500;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}


