@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

.header {
  background: #0f172a;
  padding: 15px 20px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo / Title Styling */
.header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  background: linear-gradient(60deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

/* Scrollable navigation container */
.scroll-text {
  width: 90%;
  overflow-x: auto;
  white-space: nowrap;
}

/* Navigation List */
.nav-links {
  display: inline-flex;
  gap: 9px;
  list-style: none;
  padding: 5px;
  margin: 0;
}

/* List Items */
.nav-links li {
  color: #ccc;
  font-weight: 50;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  
}

/* Anchor tag styling */
.nav-links li a {
  text-decoration: none;
  color: inherit;
}

/* Hover Effect */
.nav-links li:hover {
  color: white;
}

/* Scrollbar Customization (optional) */
.scroll-text::-webkit-scrollbar {
  height: 4px;
}

.scroll-text::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 4px;
}


/* Animated Stylish H1 */
.header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  background: linear-gradient(60deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeSlideIn 2s ease-out forwards, glowPulse 3s ease-in-out infinite;
  opacity: 0;
  transform: translateY(20px);
  text-align: center;
  padding-top: 20px;
  margin-left: 60px;
}
.scroll-blink-text {
  width: 100%;
  overflow: hidden;
  background: #eff1f7;
  padding: 10px 0;

  margin-top: 50px;
  cursor: pointer;

}

.scroll-blink-text p {
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  color: #0f0d0d;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  animation: scroll-left 10s linear infinite, blink 1s step-start infinite;
}

/* Stop animation on hover or touch */
.scroll-blink-text:hover p,
.scroll-blink-text:active p {
  animation-play-state: paused;
}

/* Scroll left animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}



/* Fade-In Slide Animation */
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glowing Pulse Animation */
@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 10px #00c6ff, 0 0 20px #0072ff;
  }
  50% {
    text-shadow: 0 0 20px #00c6ff, 0 0 40px #0072ff;
  }
}


.slider {
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: 50px auto;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}

.slides {
  width: 500%;
  height: 100%;
  display: flex;
}

.slide {
  width: 20%;
  transition: 0.6s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

input[type="radio"] {
  display: none;
}

/* Auto navigation */
.navigation-auto {
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 10px;
  justify-content: center;
}

.navigation-auto div {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
}

#img1:checked ~ .first {
  margin-left: 0;
}

#img2:checked ~ .first {
  margin-left: -100%;
}

#img3:checked ~ .first {
  margin-left: -200%;
}

#img4:checked ~ .first {
  margin-left: -300%;
}

/* Animate radio change */
@keyframes slide {
  0% { margin-left: 0; }
  20% { margin-left: 0; }
  25% { margin-left: -100%; }
  45% { margin-left: -100%; }
  50% { margin-left: -200%; }
  70% { margin-left: -200%; }
  75% { margin-left: -300%; }
  95% { margin-left: -300%; }
  100% { margin-left: 0; }
}

.slides {
  animation: slide 16s infinite;
}

.main-box {
  background-color: #2c17eb; /* Blue */
  padding: 30px;
  max-width: 1000px;
  margin: auto;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Title styling */
.title {
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
  
}

.decorative-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  position: relative;
  width: 250px;
  height: 30px;
}

.decorative-line::before,
.decorative-line::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, #fff, transparent);
  opacity: 0.5;
}

.decorative-line::before {
  margin-right: 10px;
}

.decorative-line::after {
  margin-left: 10px;
}

.decorative-line::after,
.decorative-line::before {
  box-shadow: 0 0 8px #fff;
}

.decorative-line::after,
.decorative-line::before {
  border-radius: 2px;
}

/* Center decorative diamond shape */
.decorative-line::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: white;
  border: 2px solid #007BFF;
  box-shadow: 0 0 12px white;
  z-index: 1;
}


/* Grid for departments */
.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Department box styling */
.department {
  background-color: #ffffff;
  color: #333;
  padding: 20px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.department:hover {
  transform: translateY(-5px);
  cursor: pointer;
}





ul, li {
    display: inline;
}

ul {
    margin-left: 40%;
}

li {
    color: grey;
    cursor: pointer;
    margin-right: 10px;
}

/* Remove blue color and underline for links inside li */
li a {
    text-decoration: none;   /* removes underline */
    color: inherit;          /* inherits color from li, which is grey */
}

/* Optional: change color on hover */
li:hover {
    color: white;
}

}
.about{
  padding-top: 15px;
  text-align: center;
  

}
.about h1{
     text-align: center;
}
.why h1{
  text-align: center;
  padding-top: 30px ;
}

.whyus{
  display: block;
  margin: 0;
  color: white;
  
}
.whyus li{
  color: black;
  cursor:auto;
}

/* Placement Section Styling */
.placement-section {
  background: #ffffff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.placement-container {
  max-width: 1000px;
  margin: auto;
  background: #cfd3d6;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.placement-container h2 {
  font-size: 32px;
  color: #0f172a;
  margin-bottom: 25px;
  background: linear-gradient(60deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.placement-container p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin: 20px 0;
  text-align: justify;
}

.placement-highlights {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  display: block;
}

.placement-highlights li {
  margin: 12px 0;
  font-weight: 500;
  color: #0f172a;
  padding-left: 20px;
  position: relative;
  display: block;
}

.placement-highlights li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0072ff;
  font-weight: bold;
}

/* Footer Section */
.footer {
  background-color: #0f172a;
  color: #fff;
  padding: 50px 20px 20px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 300px;
  margin: 20px;
}

.footer-section h3 {
  font-size: 22px;
  color: #00c6ff;
  margin-bottom: 15px;
}

.footer-section p {
  font-size: 15px;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid #1e293b;
  margin-top: 30px;
}



