
/* 🔥 HERO */
.about-hero {
  height: 450px;
  background: url('../assets/images/Arwal Polytechnic College About Us.jpg') no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-content {
  position: relative;
  color: #C62828;
  text-align: center;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
}


/* 🔥 VISION SECTION */
.vision-hero-sec {
  padding: 40px 20px;
  background: linear-gradient(135deg, #fff3e8, #ffe0c2);
  position: relative;
  overflow: hidden;
}

/* background glow effect */
/* .vision-hero-sec::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #F57C00;
  filter: blur(150px);
  top: -50px;
  left: -50px;
  opacity: 0.4;
} */

/* BOX */
.vision-box {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* CONTENT */
.vision-content {
  flex: 1;
}

.vision-tag {
  background: #C62828;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 13px;
}

.vision-content h2 {
  margin: 15px 0;
  font-size: 34px;
  color: #222;
}

.vision-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* BUTTON */
.vision-btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30px;
  background: linear-gradient(90deg, #F57C00, #F09803);
  color: #fff;
  text-decoration: none;
  transition: 0.4s;
}

.vision-btn:hover {
  background: #C62828;
}

/* IMAGE */
.vision-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.vision-image img {
  width: 100%;
  transition: 0.5s;
}

/* 🔥 HOVER EFFECT */
.vision-image:hover img {
  transform: scale(1.1) rotate(1deg);
  filter: brightness(0.85);
}

/* BADGE */
.vision-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #C62828;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
}

/* 🔥 RESPONSIVE */
@media(max-width: 768px) {
  .vision-box {
    flex-direction: column;
    padding: 25px;
  }

  .vision-content h2 {
    font-size: 16px;
    text-align: center;
  }

  .vision-content {
    flex: 1;

    font-size: 15px;
  }

  .about-hero {
  height: 200px;
  background: url('../assets/images/Arwal Polytechnic College About Us.jpg') no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

}








/* 🔥 MISSION SECTION */
.mission-sec-new {
  padding: 40px 20px;
  background: #fff;
  position: relative;
}

/* SPLIT BACKGROUND */
.mission-sec-new::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #F57C00, #F09803);
  left: 0;
  top: 0;
  z-index: 0;
}

/* CONTAINER */
.mission-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* IMAGE BOX */
.mission-img-box {
  flex: 1;
  padding: 20px;
}

.mission-img-box img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: 0.5s;
}

/* IMAGE HOVER */
.mission-img-box:hover img {
  transform: scale(1.08);
}

/* CONTENT BOX */
.mission-content-box {
  flex: 1;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* HEADING */
.mission-content-box h2 {
  color: #C62828;
  margin-bottom: 10px;
}

/* LINE EFFECT */
.mission-line {
  width: 60px;
  height: 4px;
  background: #F57C00;
  margin-bottom: 20px;
  border-radius: 2px;
}

/* TEXT */
.mission-content-box p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* POINTS */
.mission-points {
  margin-top: 20px;
}

.mission-points div {
  margin-bottom: 10px;
  font-weight: 500;
  color: #333;
}

/* 🔥 RESPONSIVE */
@media(max-width: 768px) {
  .mission-sec-new::before {
    width: 100%;
    height: 200px;
  }

  .mission-container {
    flex-direction: column;
  }

  .mission-content-box {
    padding: 25px;
  }
}






/* 🔥 WHY CHOOSE US */
.whyus-sec-new {
  padding: 40px 20px;
  background: linear-gradient(135deg, #fff5ec, #ffe0c2);
  text-align: center;
}

/* HEADER */
.whyus-header h2 {
  font-size: 32px;
  color: #C62828;
  margin-bottom: 10px;
}

.whyus-header p {
  color: #555;
  margin-bottom: 50px;
}

/* GRID */
.whyus-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.whyus-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ICON */
.whyus-card .icon {
  font-size: 35px;
  margin-bottom: 15px;
}

/* TEXT */
.whyus-card h3 {
  margin-bottom: 10px;
  color: #222;
  font-size: 20px;
}

.whyus-card p {
  font-size: 14px;
  color: #666;
}

/* 🔥 HOVER EFFECT */
.whyus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #F57C00, #F09803);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.whyus-card:hover::before {
  opacity: 1;
}

.whyus-card:hover {
  transform: translateY(-10px) scale(1.04);
  color: #fff;
}

.whyus-card:hover h3,
.whyus-card:hover p,
.whyus-card:hover .icon {
  color: #fff;
  position: relative;
  z-index: 1;
}

/* 🔥 RESPONSIVE */
@media(max-width:768px) {
  .whyus-header h2 {
    font-size: 26px;
  }

  .whyus-header p {
    color: #555;
    margin-bottom: 50px;
    font-size: 13px;
  }
}





/* 🔥 SECTION */
.whyus-timeline-sec {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}

/* TITLE */
.whyus-title h2 {
  color: #C62828;
  font-size: 32px;
}

.whyus-title p {
  color: #555;
  margin-bottom: 60px;
}

/* TIMELINE */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

/* CENTER LINE */
.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background: linear-gradient(#F57C00, #C62828);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ITEM */
.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
}

/* LEFT */
.timeline-item.left {
  left: 0;
  text-align: right;
}

/* RIGHT */
.timeline-item.right {
  left: 50%;
}

/* DOT */
.timeline-item::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #C62828;
  border-radius: 50%;
  top: 25px;
  right: -8px;
}

.timeline-item.right::after {
  left: -8px;
}

/* CONTENT BOX */
.timeline-content {
  background: linear-gradient(135deg, #fff5ec, #ffe0c2);
  padding: 20px;
  border-radius: 15px;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* HOVER */
.timeline-content:hover {
  transform: scale(1.05);
  background: #C62828;
  color: #fff;
}

/* TEXT */
.timeline-content h3 {
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
}

/* 🔥 RESPONSIVE */
@media(max-width:768px) {

  .timeline::after {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    text-align: left;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }

  .timeline-item.left {
    left: 0;
    text-align: left;
  }

  .timeline-item::after {
    left: 12px;
  }

}




/* 🔥 SECTION */
.campus-life-sec {
  padding: 40px 20px;
  background: linear-gradient(135deg, #fff5ec, #ffe0c2);
  text-align: center;
}

/* HEADER */
.campus-header h2 {
  color: #C62828;
  font-size: 32px;
  margin-bottom: 10px;
}

.campus-header p {
  color: #555;
  margin-bottom: 50px;
}

/* GRID (MASONRY STYLE) */
.campus-grid {
  max-width: 1200px;
  margin: auto;
  column-count: 3;
  column-gap: 20px;
}

/* CARD */
.campus-card {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.campus-card img {
  width: 100%;
  display: block;
  transition: 0.5s;
}

/* OVERLAY */
.campus-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(198, 40, 40, 0.8), rgba(0, 0, 0, 0.6));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: 0.4s;
}

/* HOVER EFFECT */
.campus-card:hover img {
  transform: scale(1.1);
}

.campus-card:hover .campus-overlay {
  opacity: 1;
}

/* TEXT */
.campus-overlay h3 {
  margin-bottom: 10px;
}

.campus-overlay p {
  font-size: 14px;
}

/* 🔥 RESPONSIVE */
@media(max-width:992px) {
  .campus-grid {
    column-count: 2;
  }
}

@media(max-width:600px) {
  .campus-grid {
    column-count: 1;
  }

  .campus-header h2 {
    font-size: 26px;
  }
}




/* 🔥 SECTION */
.placement-sec-new {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}

/* HEADER */
.placement-header h2 {
  font-size: 32px;
  color: #C62828;
  margin-bottom: 10px;
}

.placement-header p {
  color: #555;
  margin-bottom: 50px;
}

/* 🔥 STATS */
.placement-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 1000px;
  margin: auto;
  gap: 20px;
  margin-bottom: 60px;
}

.stat-box {
  background: linear-gradient(135deg, #F57C00, #F09803);
  padding: 30px;
  border-radius: 20px;
  color: #fff;
  transition: 0.4s;
}

.stat-box h3 {
  font-size: 28px;
  margin-bottom: 5px;
}

.stat-box:hover {
  transform: translateY(-10px) scale(1.05);
  background: #C62828;
}

/* 🔥 PROCESS */
.placement-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.process-card {
  background: #fff5ec;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* STEP NUMBER */
.process-card span {
  position: absolute;
  top: -15px;
  left: 20px;
  background: #C62828;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.process-card h4 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: #555;
}

/* HOVER */
.process-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #F57C00, #F09803);
  color: #fff;
}

.process-card:hover p {
  color: #fff;
}

/* 🔥 RESPONSIVE */
@media(max-width:768px) {
  .placement-header h2 {
    font-size: 26px;
  }
}







.about-style-two {
  padding: 40px 20px;
  background: linear-gradient(120deg, #fff5ec, #ffe0c2);
}

.about-box {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* IMAGE SIDE */
.about-img-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: 0.5s;
}

/* 🔥 IMAGE HOVER */
.about-img-wrap:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}



/* CONTENT SIDE */
.about-content-wrap {
  flex: 1;
  padding: 40px;
}

.about-content-wrap h2 {
  font-size: 30px;
  color: #C62828;
  margin-bottom: 15px;
}

.about-content-wrap p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 25px;
  border-radius: 30px;
  background: linear-gradient(90deg, #F57C00, #F09803);
  color: #fff;
  text-decoration: none;
  transition: 0.4s;
}

.about-btn:hover {
  background: #C62828;
}

/* 🔥 RESPONSIVE */
@media(max-width: 768px) {
  .about-box {
    flex-direction: column;
  }

  .about-style-two {
    padding: 20px 10px;
    background: linear-gradient(120deg, #fff5ec, #ffe0c2);
  }

  .about-content-wrap h2 {
    font-size: 20px;
    color: #C62828;
    margin-bottom: 15px;
  }

  .about-content-wrap {
    padding: 10px;
    /* text-align: center; */
  }
}