<style>
.blurred{
	filter: blur(5px);
	transition:filter 0.3s ease;
}
 .hero-single{
    height: 55vh;
}

.marquee {
	background-color:#00984b;
	color:#fff;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
}



@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

.sstext{
    color:#ebebe8;
}

.ss_background{
  width: 100%;
  height: auto;
  background:#0b662d;
   padding:40px;
  background-image: 
    url('assets/img/bevylamp/svg/certificate.svg'), 
    url('assets/img/bevylamp/svg/lab.svg'),
    url('assets/img/bevylamp/svg/awrd1st.svg'),
    url('assets/img/bevylamp/svg/books.svg');
  
  background-size: 70px 70px, 70px 70px , 70px 70px, 70px 70px; /* Sizes of the SVGs */
  background-position:  10% 20% ,  90% 80% , 10% 80%, 90% 20% ;  /* Positioning the SVGs */
  background-repeat: no-repeat, no-repeat, no-repeat,no-repeat; /* SVG does not repeat, second one does */ 
  z-index: -1;   
}

@media (max-width: 767px) {
  .ss_background {
    padding: 10px;
  }
}
.ss_bbox {
   transition: transform 0.3s ease;
}

.ss_bbox:hover {
  transform: scale(1.05); /* Increase size by 20% */
}


.modal-content {
  border-radius: 50px; /* or any value you like */
  font-size:13px;
  padding:3px !important;
}

header h1 {
font-size: 2.5rem;
font-weight: bold;
}
h2 {
font-size: 1.6rem;
margin-top: 20px;
color: #2c3e50;
border-left: 6px solid #4caf50;
padding-left: 10px;
background: linear-gradient(to right, #e8f5e9, #e3f2fd);
border-radius: 5px;
}
.card {
border-radius: 15px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
}
.highlight {
color: #e91e63;
font-weight: bold;
}
footer {
background: #2c3e50;
color: white;
text-align: center;
padding: 15px;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
margin-top: 30px;
}



.hero-text {
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-text {
    font-size: 12px;   
  }
}

@media (max-width: 480px) {
  .hero-text {
    font-size: 10px;   
  }
}
.hero-single {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* full screen height */
  padding: 20px 15px; /* space around text for small devices */
  text-align: center;
}


.highlight {
  color: #ffdf6c;
  font-weight: bold;
}

.scroll-table {
  height: 170px;     
  overflow: hidden;
  position: relative;
  padding:10px;
}

.scroll-table table {
	border-collapse: separate;
  border-spacing: 0 15px; 
  position: absolute;
  width: 100%;
  animation: scroll-up 14s linear infinite;
}
.scroll-table table td{
margin-top:5px;
 color:#fff;
 border-bottom: dashed 1px #32a103;
 font-size: 13px;
 a {
  color: #9fab9a;        
  text-decoration: none; 
}

a:hover {
  color: red;         
}
}

@keyframes scroll-up {
  0%   { top: 100%; }
  100% { top: -100%; }
}
.scroll-table table:hover {
  animation-play-state: paused;
}
.facility-img{
	height:150px;
}

.message-card {
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.message-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.card-image-left {
  flex: 0 0 200px;
  max-width: 200px;
}

.card-image-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body-right {
  flex: 1;
  padding: 25px;
  text-align: justify;
}

.card-body-right p {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.card-body-right .highlight {
  color: #0066cc;
  font-weight: 600;
}

@media (max-width: 767px) {
  .message-card {
    flex-direction: column;
  }
  .card-image-left {
    max-width: 100%;
  }
  .card-body-right {
    padding: 20px;
    text-align: left;
  }
}


.highlight {
  color: #ffdf6c;
  font-weight: bold;
}
 .download-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #0b662d;
      color: #fff;
      border: none;
      padding: 12px 18px;
      border-radius: 50px;
      font-size: 14px;
      cursor: pointer;
      box-shadow:0 4px 12px rgba(0,0,0,0.15);
      transition: background 0.3s;
    }
    .download-btn:hover {
      background:#095228;
    }



</style>