







header {
  width: 100%;
   background:rgb(236, 134, 236);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: black; /* Kidney theme color */
}

.nav-links {
  list-style: none;
  display: flex;
  gap:25px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
font-weight: bold;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #000000;
  text-decoration: underline;
  border: 2px solid mediumslateblue;
  background-color: white;
}

.btn {
  padding: 8px 15px;
  background: #c4004a;
  color: #fff !important;
  border-radius: 5px;
}

.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 65px;
    right: -100%;
   background: linear-gradient(135deg, #68e6eb 50%, #eeec83 50%);
    width: 250px;
    height: 100vh;
    flex-direction: column;
    padding-top: 40px;
gap:25px;
    text-align: left;
    transition: 0.4s;
    padding-left: 25px;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-icon {
    display: block;
  }
}





.nop{width: 300px;
height: 100px;
object-fit: contain;
filter: brightness(100%);}

























.trade{display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
margin-top: 150px;
gap: 30px;
background: linear-gradient(135deg, #cd57dd 50%, #5776db 50%);}



.grand{width: 420px;}

.kerbs{width: 250px;
height: 250px;
object-fit: contain;
filter: contrast(150%);}


h1{text-align: center;
padding:5px;
      color:black;
       border: 2px solid white;
      background:linear-gradient(rgb(98, 250, 217),white); 
      border-radius: 5%;}



      .gower{padding: 10px;
text-align: center;}



.voker{width: 350px;
height: 350px;
object-fit: cover;
filter: brightness(120%);
align-items: center;
margin-top: 60px;

margin-left: 20px;}



.cat{display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 15px;}

  .dog{width:370px; 
  background-color: white;
margin-top: 150px;}



  .monkey{width: 280px;
background-color:white;}




  body{background-image: url(https://quntan.neocities.org/image.png/SLA-java-background.png);
background-repeat: repeat;
background-size: cover;}





table{border:3px solid rgb(220, 224, 220);
    width: 210px;
    height:210px;}


 th{border:3px solid white;
   background-color: rgb(231, 229, 216);
   border-right-color:rgb(204, 195, 157);
   border-top-color:rgb(207, 199, 164);
   border-bottom-color:rgb(207, 202, 178);
    border-left-color:rgb(224, 221, 206);
     color: black;
   }


     td{text-align: center;
color: black;
font-weight: bold;
padding: 8px;
background:rgb(105, 233, 88);}


.mou{background: white;
color: black;
font-weight: bold;}




 .contact-box {
        background: #ffffff;
        width: 280px;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .contact-box h3 {
        text-align: center;
        color: #0047b3;
        margin-bottom: 20px;
    }

    .contact-box label {
        font-weight: bold;
        display: block;
        margin-top: 10px;
        color: #333;
    }

    .contact-box input,
    .contact-box textarea,
    .contact-box select {
        width: 100%;
        padding: 10px;
        margin-top: 6px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 15px;
    }

    .contact-box button {
        width: 100%;
        background: #0047b3;
        color: #fff;
        padding: 12px;
        border: none;
        margin-top: 15px;
        border-radius: 6px;
        font-size: 16px;
        cursor: pointer;
        font-weight: bold;
    }

    .contact-box button:hover {
        background: #003580;
    }


.contact-box{
  margin: 0 auto;
  padding: 2em;
  width: 280px;
  text-align: center;
  border-radius: 10px;
  position: relative;
}

@property --angle{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.contact-box::after, .contact-box::before{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(from var(--angle), #31dfe6, #00ff99, #006aff, #ff0095, #ff4545);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 3px;
  border-radius: 10px;
  animation: 3s spin linear infinite;
}
.contact-box::before{
  filter: blur(1.5rem);
  opacity: 0.5;

}
@keyframes spin{
  from{
    --angle: 0deg;
  }
  to{
    --angle: 360deg;
  }
}











    .socials-container{
  display: flex;
  gap: 30px;
margin-top: 50px;}
.socials-container a{
  background-color: white;
  padding: 1em;
  border-radius: 50%;
  height: 44px;
  width: 44px;
  box-sizing: border-box;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
.socials-container a svg{
  height: 12px;
}
.socials-container a::before{
  content: attr(data-social);
  position: absolute;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  padding: 0.5em 1em;
  border-radius: 100px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(-30px) rotate(25deg);
  opacity: 0;
  transition: 200ms cubic-bezier(.42,0,.44,1.68);
}
.socials-container a:hover{
  background-color: var(--accent-color);
  fill: white;
}
.socials-container a::after{
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--accent-color);
  transform: translateY(0) rotate(25deg);
  opacity: 0;
  transition: 200ms cubic-bezier(.42,0,.44,1.68);
}
.socials-container a:hover::before{
  transform: translateY(-65px) rotate(0);
  opacity: 1;
}
.socials-container a:hover::after{
  transform: translateY(-42px) rotate(0);
  opacity: 1;
}

.bold{background-color: #23ffda;
color: black;}











 .batches-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            animation: fadeInUp 1s ease;
        }



        .batch-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

         .batch-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
        }

        .batch-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .course-title {
            font-size: 1.5em;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .batch-info {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            color: #555;
        }

        .batch-info strong {
            color: #667eea;
            margin-right: 8px;
            min-width: 90px;
        }

        .status-badge {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85em;
            font-weight: 600;
            margin-top: 15px;
        }

        .available {
            background: #10b981;
            color: white;
        }

        .filling-fast {
            background: #f59e0b;
            color: white;
        }

        .enroll-btn {
            width: 100%;
            padding: 12px;
            margin-top: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .enroll-btn:hover {
            transform: scale(1.05);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
