<style>
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.4px;
}

.box{
    width: 70%;
    margin: 100px auto;
    background: #fff;
    border-radius: 7px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.box h1{
    background: rgb(215, 223, 239);
    border-radius: 7px 7px 0px 0px;
   <!-- padding: 20px;-->
    color: #34568B;
    text-align: center;
    font-weight: 500;
    font-size:40px;
}

.faqs{
    padding: 0px 20px 20px;
}

details{
    background: #f6f6f6;
    <!--padding: 10px 20px;
    border-radius: 7px;
    margin-top: 20px;
    font-size: 10px;
    cursor: pointer;
}

details summary{
    outline: none;
    font-size: 16px;
    padding: 8px;
    color: rgb(34, 33, 35);
    font-weight: 600;
}

details p{
    font-size: 12px;
    line-height: 24px;
    color: black;
   <!-- padding: 8px;
}

@media (max-width: 768px){
    .box{
        width: 90%;
        margin: 100px auto;
        background: #fff;
        border-radius: 7px;
        box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    }

    details summary{
        outline: none;
        font-size: 12px;
      <!--  padding: 8px;
        color: rgb(34, 33, 35);
        font-weight: 600;
    }
}


*
{
	padding:0;
	margin:0;
}
.container
{
	padding:30px;
	font-family:'Roboto';
	font-size:16px;
	font-weight:300;
	line-height:24px;
}
.container p
{
	margin-bottom:15px;
}


.thumbanail
{
	width:450px;
	position:relative;
	box-shadow:0 0 5px rgba(0,0,0,.4);
	background-color:#fff;
	overflow:hidden;
	border-radius:8px;
	margin-bottom:10px;
}
.thumbanail:before
{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	border:8px solid #fff;
	z-index:2;
	overflow:hidden;
	box-sizing:border-box;
}
.thumbanail img
{
	width:100%;
	height:auto;
	border-radius:8px;
	transform:scale(1) rotate(0deg);
	transition:all .5s linear;
}
.thumbanail:hover img
{
	transform:scale(1.1) rotate(-5deg);
}


.thumbanail.right
{
	float:right;
	margin-left:20px;
}
.thumbanail.left
{
	float:left;
	margin-right:20px;
}

@media screen and (max-width:767px)
{
	
	.thumbanail.right
	{
		float:none;
		margin-left:0px;
	}
	.thumbanail.left
	{
		float:none;
		margin-right:0px;
	}
	.thumbanail{
		width:100%;
	}
}



body {
	align-items: center;
	justify-content: center;
}

$animationSpeed: 40s;

@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-250px * 7))}
}

.slider {
	height: 100px;
	margin: auto;
	overflow:hidden;
	position: relative;
	width: auto;
	
	.slide-track {
		animation: scroll $animationSpeed linear infinite;
		display: flex;
		width: calc(250px * 14);
	}
	.slide {
		height: 100px;
		width: 250px;
	}
}



/* Container for the slider */
.slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 100px;
  margin: auto;
  overflow: hidden; /* Hides the overflowing parts of the track */
  position: relative;
  width: 100%;
}

/* The track containing all the logos */
.slide-track {
  animation: scroll 30s linear infinite; /* Apply the animation */
  display: flex;
  width: calc(250px * 10); /* Adjust width based on number of logos and logo width */
}

/* Individual logo styling */
.slide {
  height: 100px;
  width: 250px; /* Set a consistent width for each slide */
  display: flex;
  align-items: center;
  <!--padding: 0 20px;
}

.slide img {
  width: 100%;
  /* Optional: make logos greyscale until hover */
  transition: filter 0.3s ease;
}

.slide img:hover {
  filter: grayscale(0%);
}

/* The keyframe animation for the scrolling effect */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Moves the track halfway (the length of the original set of logos) */
}

a{
  text-decoration:none;
}
.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}




body {
  font-family: Arial, sans-serif;
  margin: 0;
  <!--padding: 0;
  background: #ffffff;
  color: #333;
}

.benefits-section {
  <!--padding: 50px 20px;
}

.benefits-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.benefits-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.check {
  color: #28a745;
  font-size: 18px;
  font-weight: bold;
  margin-top: 5px;
}

.benefit-item h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
}

.benefit-item p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .benefits-container {
    grid-template-columns: 1fr;
  }
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fff;
  color: #333;
}

.benefits-section {
  padding: 60px 20px;
}

.benefits-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.benefits-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Card Animation */
.benefit-item {
  display: flex;
  gap: 15px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

/* Delay effect */
.benefit-item:nth-child(1) { animation-delay: 0.2s; }
.benefit-item:nth-child(2) { animation-delay: 0.4s; }
.benefit-item:nth-child(3) { animation-delay: 0.6s; }

.check {
  color: #28a745;
  font-size: 18px;
  font-weight: bold;
  margin-top: 5px;
  animation: pulse 1.5s infinite;
}

.benefit-item h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
}

.benefit-item p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}

/* Hover Effect */
.benefit-item:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  .benefits-container {
    grid-template-columns: 1fr;
  }
}





body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
}

.info-section {
  padding: 60px 20px;
}

.info-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.info-card {
  background: #ffffff;
  border-radius: 14px;
  <!--padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
  transition: all 0.4s ease;
}

/* Stagger animation */
.info-card:nth-child(1){animation-delay:0.1s}
.info-card:nth-child(2){animation-delay:0.2s}
.info-card:nth-child(3){animation-delay:0.3s}
.info-card:nth-child(4){animation-delay:0.4s}
.info-card:nth-child(5){animation-delay:0.5s}
.info-card:nth-child(6){animation-delay:0.6s}

/* Hover effect */
.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Icon */
.icon {
  font-size: 34px;
  margin-bottom: 15px;
  animation: pulse 1.5s infinite;
}

/* Title */
.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Text */
.info-card p {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 8px 18px;
  background: #003c3c;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s ease;
}

.btn:hover {
  background: #006666;
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 992px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}









body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
}

.documents-section {
  <!--padding: 50px 20px;
}

.documents-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* Card */
.doc-card {
  display: flex;
  align-items: center;
  gap: 12px;
 <!-- padding: 16px 18px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  cursor: pointer;

  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
  transition: all 0.35s ease;
}

/* Staggered animation */
.doc-card:nth-child(1){animation-delay:0.1s}
.doc-card:nth-child(2){animation-delay:0.15s}
.doc-card:nth-child(3){animation-delay:0.2s}
.doc-card:nth-child(4){animation-delay:0.25s}
.doc-card:nth-child(5){animation-delay:0.3s}
.doc-card:nth-child(6){animation-delay:0.35s}
.doc-card:nth-child(7){animation-delay:0.4s}
.doc-card:nth-child(8){animation-delay:0.45s}
.doc-card:nth-child(9){animation-delay:0.5s}
.doc-card:nth-child(10){animation-delay:0.55s}
.doc-card:nth-child(11){animation-delay:0.6s}
.doc-card:nth-child(12){animation-delay:0.65s}

/* Icon */
.doc-icon {
  font-size: 26px;
  color: #ff8c00;
  animation: pulse 1.6s infinite;
}

/* Text */
.doc-text {
  font-size: 14.5px;
  font-weight: 600;
  color: #333;
}

/* Hover effect */
.doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  border-color: #ff8c00;
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 1200px) {
  .documents-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .documents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .documents-grid {
    grid-template-columns: 1fr;
  }
}



















body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f4ee;
}

.mbbs-section {
  <!--padding: 60px 20px;
}

.mbbs-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.mbbs-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
  transition: all 0.4s ease;
}

/* Stagger animation */
.mbbs-card:nth-child(1){animation-delay:0.1s}
.mbbs-card:nth-child(2){animation-delay:0.2s}
.mbbs-card:nth-child(3){animation-delay:0.3s}
.mbbs-card:nth-child(4){animation-delay:0.4s}

/* Hover */
.mbbs-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.2);
}

/* Image */
.card-img {
  position: relative;
}

.card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Badge */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ffffff;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
}

/* Content */
.card-content {
  padding: 18px;
}

.card-content h3 {
  margin: 0 0 15px;
  font-size: 18px;
}

.info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #444;
}

/* Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .mbbs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mbbs-grid {
    grid-template-columns: 1fr;
  }
}







* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f5f7fa;
  <!--padding: 40px;
}

.job-container {
  max-width: 1100px;
  margin: auto;
}

.job-card {
  background: #fff;
  border-radius: 10px;
  <!--padding: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  animation: fadeUp 0.6s ease forwards;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.job-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.job-left img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
}

.job-left h3 {
  color: #222;
  margin-bottom: 6px;
}

.job-left p {
  color: #666;
  font-size: 14px;
}

.job-left span {
  margin-left: 12px;
}

.job-right {
  text-align: right;
}

.job-right p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.apply-btn {
  background: #00b074;
  color: #fff;
  border: none;
  <!--padding: 10px 22px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: #009864;
  transform: scale(1.05);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .job-right {
    text-align: left;
    width: 100%;
  }
}






* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #ffffff;
}

/* MAIN SECTION */
.university-section {
  max-width: 1200px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 0 20px;
}

/* IMAGE BOX */
.image-box {
  position: relative;
  animation: slideLeft 1.2s ease forwards;
}

.image-box img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  position: relative;
  z-index: 2;
}

/* Decorative border */
.image-border {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 350px;

  border-radius: 8px;
  z-index: 1;
}

/* APPLY BUTTON */
.apply-btn {
  margin-top: 20px;
  padding: 12px 28px;
  border: 2px solid #1e40ff;
  background: transparent;
  color: #1e40ff;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: #1e40ff;
  color: #fff;
}

/* CONTENT BOX */
.content-box {
  animation: slideRight 1.2s ease forwards;
}

.title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
}

.content-box p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* ANIMATIONS */
@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .university-section {
    grid-template-columns: 1fr;
  }

  .image-border {
    height: 280px;
  }

  .image-box img {
    height: 280px;
  }

  .title {
    font-size: 28px;
  }
}







* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: white;
}

.navbar {
  background: #000;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
  color: #fff;
}

.menu li {
  cursor: pointer;
  position: relative;
}

.menu li.active {
  background: #F5C827;
  padding: 6px 10px;
  border-radius: 4px;
}

.menu li span {
  color: #F5C827;
}

.btn {
  background: #1abc9c;
  padding: 10px 22px;
  border-radius: 25px;
  color: #F5C827 ;
  font-weight: bold;
  text-decoration: none;
}

/* ===== Mega Menu ===== */
.mega-menu {
  position: absolute;
  top: 60px;
  left: -300px;
  width: 900px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  display: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.has-mega:hover .mega-menu {
  display: block;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 40px;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.mega-item:hover {
  background: #f0f7ff;
}

.mega-item img {
  width: 45px;
  height: 45px;
}

.mega-item h4 {
  font-size: 16px;
  color: #0f172a;
}

.mega-item p {
  font-size: 14px;
  color: #6b7280;
}

.arrow {
  margin-left: auto;
  font-size: 20px;
  color: yellow;
}














* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: poppins;
}

body {
  background: black;
}

.navbar {
  background: #000;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
  color: white;
}

.menu li {
  cursor: pointer;
  position: relative;
}

.menu li.active {
  background: black;
  padding: 6px 10px;
  border-radius: 4px;
}

.menu li span {
  color:white;
}

}

/* ===== Mega Menu ===== */
.mega-menu {
  position: absolute;
  top: 60px;
  left: -300px;
  width: 900px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  display: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.has-mega:hover .mega-menu {
  display: block;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 40px;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.mega-item:hover {
  background:yellow;
}

.mega-item img {
  width: 45px;
  height: 45px;
}

.mega-item h4 {
  font-size: 16px;
  color: #0f172a;
}

.mega-item p {
  font-size: 14px;
  color: #6b7280;
}

.arrow {
  margin-left: auto;
  font-size: 20px;
  color: yellow;
}


/* ===== Mega Menu Animation ===== */
.mega-menu {
  position: absolute;
  top: 50px;
  left: -300px;
  width: 1100px;
  background: white;
  padding: 30px;
  border-radius:12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.98);
  transition: all 0.35s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

/* Show animation */
.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Grid animation */
.mega-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.35s ease;
}

/* Staggered effect */
.has-mega:hover .mega-item {
  opacity: 1;
  transform: translateX(0);
}

.mega-item:nth-child(1) { transition-delay: 0.05s; }
.mega-item:nth-child(2) { transition-delay: 0.1s; }
.mega-item:nth-child(3) { transition-delay: 0.15s; }
.mega-item:nth-child(4) { transition-delay: 0.2s; }
.mega-item:nth-child(5) { transition-delay: 0.25s; }
.mega-item:nth-child(6) { transition-delay: 0.3s; }

/* Hover micro-interaction */
.mega-item:hover {
  background: #f0f7ff;
  transform: translateX(8px);
}

.mega-item:hover .arrow {
  transform: translateX(6px);
}

/* Arrow animation */
.arrow {
  margin-left: auto;
  font-size: 20px;
  color: #F5C827;
  transition: transform 0.3s ease;
}




/*logo code*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  background:#f5f7fb;
  font-family: Arial, sans-serif;
}

/* Slider Container */
.logos-slider {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: #fff;
  position: relative;
}

/* Track */
.logos-track {
  display: flex;
  width: calc(250px * 10); /* logo width * total logos */
  animation: scroll 25s linear infinite;
}

/* Logo Box */
.logos {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.logos img {
  width: 100%;
  max-width: 150px;
  filter: grayscale(100%);
  transition: 0.3s;
  opacity: 0.8;
}

/* Hover Effect */
.logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
  opacity: 1;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.logos-slider:hover .logos-track {
  animation-play-state: paused;
}

/* Responsive */
@media(max-width:768px){
  .logos{
    width:180px;
  }
}


/*logo code*/


/* Logo Box */

</style>