body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  background: #39a30f;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.scroll-text {
  display: inline-block;
  padding: 3px 0;
  animation: scrollLeft 70s linear infinite;
}

.scroll-text span {
  margin: 0 40px;
  font-size: 21px;

  cursor: pointer;
}

.scroll-text span:hover {
  color: #fffb00;
}

@keyframes scrollLeft {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}


body {
  font-family: Arial;
  text-align: center;
  margin-top: 50px;
}

/* Floating icon */
.lang-box {
  position: fixed;
  right: 15px;
  top: 32.8%;
  transform: translateY(-50%);
}

.lang-btn {
  background: #007bff;
  color: white;
  font-size: 22px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

/* Dropdown */
.lang-dropdown {
  display: none;
  margin-top: 10px;
  background: #fff;
  border: 1px solid #ccc;
  width: 100px;
  max-height: 100px;
  overflow-y: auto;
}

.lang-dropdown div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  cursor: pointer;
}

.lang-dropdown div:hover {
  background: #f0f0f0;
}

.lang-dropdown img {
  width: 25px;
}



#navbar {
  background-color: rgb(6, 6, 82);

}

.a {
  display: flex;
  justify-content: center;
  /* center align */
  align-items: center;

  height: 60px;
}

.home {
  color: white;
  /* text white */
  font-weight: bold;
  /* text-decoration: none;     no underline */

}

img {
  object-fit: cover;
  vertical-align: left;
}

.wrapper {
  font-size: 21pt;
  text-align: center;
  color: aliceblue;
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 5rem;
}

.intro {
  flex: 1;
}

.link {
  padding: 5px;
  margin: 7%;
  /* left–right margin */
}



.img {
  width: 80px;
  height: auto;
  /* ratio safe */
}


/* Footer Styling */
footer {
  background-color: #1f1f1f;
  color: #ffffff;
  padding: 30px 20px;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-box {
  flex: 1 1 300px;
  margin: 10px 0;
}

.footer-box h3 {
  margin-bottom: 15px;
  color: #f4b400;
}

.footer-box p {
  margin: 6px 0;
  font-size: 14px;
}

.footer-box a {
  color: #dddddd;
  text-decoration: none;
}

.footer-box a:hover {
  color: #f4b400;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 15px;
  font-size: 13px;
  color: #aaaaaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

.text {
  position: absolute;
  top: 26%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 70px;
  font-weight: bold;
  font-family: Arial black, Helvetica, sans-serif;
  text-shadow: 2px 2px 5px black;
}

.text1 {
  position: absolute;
  top: 41%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 45px;
  font-weight: bold;
  font-family: Arial black, Helvetica, sans-serif;
  text-shadow: 2px 2px 5px black;
}

.text2 {
  position: absolute;
  top: 64%;
  left: 37%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 20px;
  text-shadow: 2px 2px 5px black;
}

.text3 {
  position: absolute;
  top: 26%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 60px;
  font-family: Arial black, Helvetica, sans-serif;
  text-shadow: 2px 2px 5px black;
}

.text4 {
  position: absolute;
  top: 41%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 45px;
  font-family: Arial black, Helvetica, sans-serif;
  text-shadow: 2px 2px 5px black;
}

.text5 {
  position: absolute;
  top: 41%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 30px;
  font-family: Arial black, Helvetica, sans-serif;
  text-shadow: 2px 2px 5px black;
}


/* Black shadow overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* black shadow */
  border-radius: 10px;
}

body {
  margin: 0;
  background: #fdfeff;
  font-family: Arial;
}

/* Slider */
.slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  /* black shadow */

}

/* Slides */
.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* black shadow */
}

.slide.active {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  /* black shadow */
}

/* Background */
.bg {
  position: relative;
  background-position: center;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Top image (Responsive) */
.top {
  position: absolute;
  width: 280px;
  /* responsive size */

  text-shadow: 2px 2px 5px black;
  top: 72%;
  left: 1048px;
  transform: translate(-50%, -50%);
}

/* Buttons */
button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Dots ON IMAGE */
.dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 5px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.295);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: white;
}

.p {

  font-size: 16px;
  top: 65%;
  left: 30%;
  font-family: Arial, Helvetica, sans-serif;
}


.menue {
  background: #5a0b0b;
}

.menu {
  background-color: #5a0b0b;
  padding: 14px;
  margin-left: 15px;
}

.menu a {

  color: rgb(250, 250, 250);
  text-decoration: none;
  margin-left: 15cvh
}

.tables {
  background-color: #dddddd;
}



.pdf-container {
  text-align: center;
  margin-top: 40px;
}

.pdf-item {
  display: inline-block;
  margin: 26px;
  cursor: pointer;
  text-align: center;
}

.pdf-item img {
  width: 200px;
  /* Image size */
  border: 2px solid #007bff;
  border-radius: 5px;
  transition: transform 0.3s;
}

.pdf-item img:hover {
  transform: scale(1.05);
  /* Hover effect */
}

.pdf-name {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.body1 {
  background-color: #f1f0f0;
}


h2 {
  text-align: center;
  margin-bottom: 3px;
  color: #333;
}

.containerphoto {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: white;
  width: 220px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
  padding-bottom: 15px;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: fill;
  display: block;
  border-bottom: 1px solid #ddd;
}

.card .name {
  font-size: 18px;
  font-weight: bold;
  color: #0451a3;
  margin: 10px 0 5px 0;
}

.card .description {
  padding: 0 10px;
  color: #272525;
  font-weight: bold;
  font-size: 14px;
}

.faculity {
  font-family: Arial, sans-serif;
  background-color: #faf8f8;
  margin: 0;
  padding: 20px;
}

.map-container {
  height: 100%;
  width: 100%;
}

.map-container iframe {
  height: 100%;
  width: 100%;
  border: 0;
}


/* TOP STATS */
.stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 20px;
  background: #f8f8f8;
  flex-wrap: wrap;
}

.stat-box {
  margin: 10px;
}

.stat-box i {
  font-size: 28px;
  margin-bottom: 5px;
}

.stat-box h3 {
  margin: 5px 0;
}

/* BOTTOM FEATURES */
.features {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 50px 20px;
  flex-wrap: wrap;
}

.feature-box {
  width: 250px;
  margin: 20px;
}

.feature-box i {
  font-size: 40px;
  margin-bottom: 15px;
}

.feature-box h3 {
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .stats,
  .features {
    flex-direction: column;
    align-items: center;
  }
}



.typing {
  background-color: #941009;
  /* stable background */
  color: #edf5f3;
  padding: 15px 20px;


  overflow: hidden;
  /* text bahar na jaye */
  white-space: nowrap;
  /* text ek line me */
  border-right: 3px solid #0b1412;

  animation: typing 2s steps(20), blink 0.5s infinite;
}

/* typing animation */
@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* cursor blink */
@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.navbar1 {
  background-color: rgb(6, 6, 82);

}

.a {
  display: flex;
  justify-content: center;
  /* center align */
  align-items: center;

  height: 60px;
}

.home {
  color: white;
  /* text white */
  font-weight: bold;
  /* text-decoration: none;     no underline */

}

img {
  object-fit: cover;
  vertical-align: left;
}

.wrapper {
  font-size: 21pt;
  text-align: center;
  color: aliceblue;
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 5rem;
}

.intro {
  flex: 1;
}

.link {
  padding: 5px;
  margin: 7%;
  /* left–right margin */
}



.img {
  width: 80px;
  height: auto;
  /* ratio safe */
}


.footer-top {
  display: flex;
  justify-content: flex-end;
  /* Right side */
  margin-bottom: 10px;
}

.footer-left p {
  margin: 0;
  font-size: 18px;
}

.social-icons a {
  color: #fff;
  margin-left: 15px;
  font-size: 20px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1da1f2;
  /* Example hover color */
}



.imageintro {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #f5f4f4;
}

.comimage {
  flex: 1;
}

.comimage img {
  width: 120%;
  max-width: 380px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.comintro {
  flex: 1;
  padding: 20px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px;
}


.comintro h2 {
  margin-bottom: 10px;
}


.desc-box {
  width: 350px;
  background: #fff;
  padding: 20px;
  margin: 50px auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.desc-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
}

.header-section {
  max-width: 100%;
  margin: 0 auto 50px auto;
  text-align: center;
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-section h2 {
  margin-bottom: 15px;
  font-weight: bold;
}

.header-section p {
  color: #444;
  line-height: 1.6;
  font-size: 16px;
}

.boxes-container {
  max-width: 900px;
  margin-left: 20px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  /* left align */

}

.box {
  background: white;
  flex: 1 1 28%;
  /* roughly 3 boxes in a row */
  min-width: 260px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
}

.box h3 {
  color: #007bff;
  margin-bottom: 10px;
}

.box p {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive: On smaller screens stack boxes vertically */
@media (max-width: 250px) {
  .boxes-container {
    flex-direction: column;
    gap: 15px;
  }

  .box {
    flex: 1 1 100%;
    min-width: auto;
  }
}


.allcourse {
  object-fit: cover;
  display: block;
  overflow: hidden;

}

.a1image {
  width: 1000px;
  align-items: center;
  justify-content: center;
  height: auto;
}