*{

  margin: 0;
  padding: 0;
  font-family: 'poppins',sans-serif;
}
.header{
    min-height: 100vh;
    min-width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/back\ \(1\).jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.header p{
  padding: 0;
  text-align: center;
}
.admissions-label{
  margin-bottom: 2px;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    
}
nav img{
  width: 150px;

}
.nav-links{
  flex: 1;
  text-align: right;
}
.nav-links ul li{
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;

}
.nav-links ul li a{
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}
.nav-links ul li ::after{
  content: '';
  width: 0%;
  height: 2px;
  background: #f44336;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li :hover::after{
     width: 100%;

}
.text-box{
  width: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}
.text-box h1{
  font-size: 62px;
  color: #fff;
}
.text-box p{
  margin: 10px 0 40px;
  font-size: 18px;
  color: #fff;
}
.hero-btn{
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 34px;
  font-size: 14px;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.hero-btn:hover{
  border: 1px solid #f44336;
  background: #f44336;
  transition: 1s;
}

nav .fa{
  display: none;
}

@media (max-width: 700px){
     .text-box h1{
      font-size: 20px;
     }
     .nav-links ul li{
      display: block;
     }
     .nav-links{
      position: absolute;
      background: #f44336;
      height: 100vh;
      width: 200px;
      top: 0;
      right: -200;
      text-align: left;
      z-index: 2;
      transition: 1s;

     }
     nav .fa{
      display: block;
      color: #fff;
      margin: 10px;
      font-size: 22px;
      cursor: pointer;

     }
     .nav-links ul {
      padding: 30px;

     }

}
/*---course---*/
.COURSE{
  width: 80%;
  margin: auto;
  text-align: center;
  padding: 100px;
}
h1{
  font-size: 36px;
  font-weight: 600;

}
p{
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
  text-align: left;

}
.row{
  margin-top: 5%;
  display: flex;
  justify-content: space-between;


}
.course-col{
  flex-basis: 32%;
  background: #f8e8e8;
  border-radius: 15px;
  margin-bottom: 2%;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.5s;

}
img{
  border-radius: 15px;
  padding: 20px 12px;
}
h3{
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}
.course-col:hover{
  box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px){
  .row{
    flex-direction: column;
  }
}
.campus{
  width: 80%;
  margin: auto;
  text-align: center;
  padding: 50px;

}
h3{
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  margin: 10px 0;
}
.professional-text {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
  margin: 20px 0;
  padding: 10px;
  background-color: #f9f9f9;
  border-left: 4px solid #4CAF50;
  border-radius: 8px;
}
.campus-col{
  flex-basis: 32%;
  border-radius: 10px;
  margin-bottom: 30px;
  
  position: relative;
  overflow: hidden;
}
.campus-col img{
  width: 100%;
  height: 100%;
  display: block;

  
}
.layer {
  background: transparent;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;


}
.layer:hover{
    background: rgba(266,0,0,0.7);


}
.layer h3{
  width: 100%;
  font-weight: 500;
  color: #fff;
  font-size: 26px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  transition: 0.5s;
}
.layer:hover h3{
  bottom: 49%;
  opacity: 1;
}
/*facilities*/
.facilities{
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}

.facilities-col{
  flex-basis: 31%;
  border-radius:10px;
  margin-bottom: 5%;
  text-align: left;
}
.facilities-col img{
  width: 100%;
  border-radius: 15px;
  

}
.facilities-col P{
  padding: 0;
  text-align: center;
}
.facilities-col h3{
  margin-top: 16px;
  margin-bottom: 15px;
  text-align: left;
}
.testimonials{
  width: 80%;
  margin: auto;
  padding-top: 100px;
  text-align: center;
}
.testimonial-col{
  flex-basis: 44%;
  border-radius: 10px;
  margin-bottom: 5%;
  text-align: left;
  background: #fff3f3;
  padding: 25px;
  cursor: pointer;
  display: flex;
}
.testimonial-col img{
  height: 40px;
  margin-left: 5px;
  margin-right: 30px;
  border-radius: 50%;

}
.testimonial-col p{
  padding: 0;
 

}
.testimonial-col h3{
  margin-top: 15px;
  text-align: left;
}
.testimonial-col .fa{
  color: #f44336;
}
@media(max-width: 700px){
  .testimonial-col img{
   
    margin-left: 0px;
    margin-right: 15px;
    

  }
}
.cta{
  margin: 100px auto;
  width: 80%;
  background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url();
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  text-align: center;
  padding: 100px 0;

}
.cta h1{
  color: #fff;
  margin-bottom: 40px;
  padding: 0;
}
@media(max-width:700px){
  .cta h1{
    font-size: 24px;
  }
}
.gradient-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.gradient-list li {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 15px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  width: 300px; /* ✅ fixed width to keep all boxes same size */
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.gradient-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 400px) {
  .gradient-list li {
    width: 90%; /* Responsive for mobile */
  }
}

 /*footer*/
 .footer{
   background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 30px 0;

 }
 .footer h4{
  margin-bottom: 25px;
  margin-top: 20px;
  font-weight: 600;
 }
 .icons .fa{
  color: #f44336;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
 }
 .fa-heart-o{
  color: #f44336;
 }
 .footer p{
  text-align: center;
  padding: 0%;

 }
 /*subheader*/
 .sub-header{
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/create\ image\ for\ webpage\ abot\ cse.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;

 }
 .sub-header h1{
  padding-top: 0;
  color: white;
 }
 .about-us{
  width: 80%;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 50px;

}
.about-col{
  flex-basis: 48%;
  padding: 30px 2px;

}
.about-col img{
  width: 100%;
  position: center;
}
.about-col h1{
  padding-top: 0;

}
.about-col p{
  padding: 15px 0 25px;
}
.about-col a{
  color: #0a0000;
}
.red-btn{
  border: 1px solid #f44336;
}
.red-btn:hover{
  color: #333;
}
.sel{
 width: 80%;
  margin: auto;
  text-align: center;
  padding: 50px;


}
.box{
  
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
  margin: 20px 0;
  padding: 10px;
  background-color: #f9f9f9;
  border-left: 15px solid #4CAF50;
  border-radius: 8px;
}
.sel h2{
   margin-bottom: 25px;
  margin-top: 20px;
  font-weight: 600;
}
body {
  
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

.courses-section {
  max-width: 900px;
  margin: 50px auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.courses-section h2 {
  text-align: center;
  color: #1a237e;
  font-size: 32px;
  margin-bottom: 40px;
}

.course-category {
  margin-bottom: 30px;
}

.course-category h3 {
  color: #2e7d32;
  font-size: 24px;
  margin-bottom: 15px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 5px;
}

.course-category ul {
  list-style: none;
  padding: 0;
}

.course-category li {
  background: linear-gradient(135deg, #667eea, #764ba2); /* gradient background */
  color: white;
  margin: 10px 0;
  padding: 15px;
  border-radius: 12px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.course-category li:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}


@media (max-width: 700px) {
  .courses-section {
    padding: 20px;
  }

  .courses-section h2 {
    font-size: 26px;
  }

  .course-category h3 {
    font-size: 20px;
  }

  .course-category ul li {
    font-size: 16px;
  }
}
body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background-color: #f8f9fa;
}

header, footer {
  text-align: center;
  padding: 10px;
  background-color: #003366;
  color: white;
}

.department {
  background-color: #ffffff;
  border: 1px solid #ccc;
  margin: 20px auto;
  padding: 20px;
  max-width: 800px;
  border-radius: 5px;
}

.department h2 {
  color: #003366;
  text-align: left;
}

ul {
  padding-left: 20px;
}
.image-row {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 20px;
  background-color: transparent; /* Black background */
  padding: 20px 12px;
  
}

.image-row img {
  width: 250px;
  height: 150px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8); /* Black shadow */
  border-radius: 10px;
  animation: glow 2s infinite alternate;
  transition: transform 0.3s;
}

/* Optional: Scale on hover */
.image-row img:hover {
  transform: scale(1.05);
}

/* Glow animation */
@keyframes glow {
  from {
    box-shadow: 0 0 10px #fff, 0 0 20px #444;
  }
  to {
    box-shadow: 0 0 20px #fff, 0 0 30px #aaa;
  }
}

.container {
  max-width: 1200px;       /* Limits the width of the content */
  margin: 0 auto;          /* Centers the container */
  padding: 20px;           /* Adds spacing inside the container */
  background-color: #383434; /* Optional: dark background */
  border-radius: 10px;     /* Optional: rounded corners */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Optional: subtle shadow */
  color: #fff;             /* Text color for dark background */
}


.glowing-button {
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 5px 15px; /* Less padding to make it more minimal */
    border: 2px solid #fff; /* Thin border */
    border-radius: 5px; /* Optional, for slight rounded corners */
    position: relative;
    background-color: transparent;
    display: inline-block; /* Ensures text doesn’t stretch to full width */
    transition: all 0.3s ease;
}

/* Glowing effect around the text */
.glowing-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff4081, #00e5ff, #ff4081);
    z-index: -1;
    filter: blur(10px);
    animation: glowing 1.5s infinite linear;
}

/* Hover effect */
.glowing-button:hover {
    color: #ff4081;
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.6); /* Smaller glow on hover */
}

/* Animation for glowing */
@keyframes glowing {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
      transform: scale(1.05);
        opacity: 10;
    }
  }
 
.form-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
  width: 420px;
  max-width: 90%;
}

h2 {
  text-align: center;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

input, select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  transition: border-color 0.3s;
}

input:focus, select:focus {
  border-color: #007bff;
  outline: none;
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #007bff;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #0056b3;
}
.admissions-label {
    text-align: center;
    margin-bottom: 30px;
}

.admissions-label a {
    display: inline-block;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admissions-label a:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-box {
  background-color: rgba(0, 0, 0, 0.6); /* semi-transparent black */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 950px;
  margin: auto;
}

.hero-box h1,
.hero-box p,
.hero-box .about-content p {
  color: #fff;
}
.language-lab{
  display: block;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 20px;
  background-color: transparent; /* Black background */
  padding: 20px 12px;
}
.language-lab img{
  width: 250px;
  height: 150px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8); /* Black shadow */
  border-radius: 10px;
  animation: glow 2s infinite alternate;
  transition: transform 0.3s;
}


.language-lab img:hover{
  transform: scale(1.05);
}
.language-lab p{
  border-color: #4CAF50;
  padding: 12px 0;
  box-shadow: yellowgreen;
  text-decoration-style: dotted;

}
/* DPED & SCHOOL COURSES SECTION */
.course-highlight {
  padding: 80px 30px;
  background-color: #ffffff;
  text-align: center;
}

.course-highlight h1 {
  font-size: 2.5rem;
  color: #0a4275;
  margin-bottom: 40px;
}

.highlight-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.highlight-box {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  width: 340px;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-align: left;
}

.highlight-box:hover {
  transform: translateY(-10px);
}

.highlight-box h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.highlight-box ul {
  list-style: none;
  padding-left: 0;
}

.highlight-box ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  padding-left: 20px;
  position: relative;
}

.highlight-box ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #00ffcc;
}

/* Responsive */
@media (max-width: 768px) {
  .highlight-box {
    width: 100%;
  }
}
    section {
      padding: 60px 20px;
      text-align: center;
    }

    h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      color: #212121;
    }

    p {
      max-width: 800px;
      margin: 0 auto 40px;
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .excellence-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .card {
      background: white;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: scale(1.03);
    }

    .recruiters-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 20px;
      align-items: center;
      justify-items: center;
      margin-top: 30px;
    }

    .recruiters-grid img {
      width: 100px;
      height: auto;
      filter: grayscale(80%);
      transition: filter 0.3s ease;
    }

    .recruiters-grid img:hover {
      filter: grayscale(0%);
    }

    @media (max-width: 600px) {
      h2 {
        font-size: 2rem;
      }
    }
  
.gallery-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #f8f9fa, #ffffff);
  font-family: 'Segoe UI', sans-serif;
}

.gallery-title {
  text-align: center;
  font-size: 2.5rem;
  color: #143d59;
  margin-bottom: 40px;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: 0.3s ease;
}

/* Lightbox full screen behavior */
.gallery-item:focus img,
.gallery-item:active img {
  transform: scale(1.1);
  transition: 0.3s;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .gallery-title {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
  }
}

@media screen and (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}


