


/* ================= HERO SECTION ================= */

.hero-section{
  min-height: 75vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  justify-content: center;

  /* 🔥 GRADIENT BACKGROUND */
  background: linear-gradient(
    135deg,
    #035ba6,
    #0b3f73,
    #f38020
  );
}
.hero-content{
  text-align: center;
  margin: 0 auto;
}

.hero-btns{
  justify-content: center;
}

.hero-subtitle{
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #f38020;
}

.hero-desc{
  font-size: 1.05rem;
  color: #FFFFFF;
  max-width: 520px;
}

/* Buttons */
.hero-btns .btn-student{
  white-space: nowrap;          /* 🔒 single line text */
  min-width: 170px;  
  background: #035ba6;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.hero-btns .btn-student:hover{
  background: #f38020;
  color: #fff;
}



/* Outline button */
.hero-btns .btn-student.outline{
  
  border: 2px solid #035ba6;
  
}

.hero-btns .btn-student.outline:hover{
 background: #f38020;
  color: #fff;
}

/* Arrow */
.hero-btns .arrow{
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

/* Right Image */
.hero-img{
  max-width: 520px;
}

/* Mobile */
@media (max-width:768px){

  .hero-content{
    text-align: center;
  }

  .hero-desc{
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns{
    justify-content: center;
  }

}
.hero-title {
	font-size: 2.8rem !important;
    line-height: 0.9 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    margin-left: 0px !important;
    font-family: 'Figtree', sans-serif;
}


/* ================= PROGRAM HIGHLIGHTS – ACADEMIC FLOW ================= */

.program-highlights-flow{
  background:#f9fbfd;
  padding:100px 0;
  position:relative;
}

/* Header */
.ph-flow-header{
  text-align:center;
  margin-bottom:80px;
}

.ph-flow-badge{
    display: inline-block !important;
    background: rgba(3, 91, 166, 0.1)!important;
    color: #035ba6 !important;
    font-weight: 600 !important;
    padding: 6px 14px !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    margin-bottom: 18px !important;
    letter-spacing: .5px !important;
}

.ph-flow-title{
  color:#035ba6;
  font-weight:600;
  font-size:2.8rem;
}

/* CENTRAL TRACK */
.ph-flow-track{
  position:relative;
  max-width:1100px;
  margin:0 auto;
}

/* Vertical Line */
.ph-flow-track::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:3px;
  background:rgba(3,91,166,0.15);
  transform:translateX(-50%);
}

/* Item */
.ph-flow-item{
  position:relative;
  width:50%;
  padding:30px 40px;
  box-sizing:border-box;
}

/* Left */
.ph-flow-item.left{
  left:0;
  text-align:right;
}

/* Right */
.ph-flow-item.right{
  left:50%;
  text-align:left;
}

/* Connector Dot */
.ph-flow-dot{
  position:absolute;
  top:40px;
  right:-10px;
  width:18px;
  height:18px;
  background:#f38020;
  border-radius:50%;
  z-index:2;
}

.ph-flow-item.right .ph-flow-dot{
  left:-9px;
  right:auto;
}

/* Content Box */
.ph-flow-content{
  background:#ffffff;
  padding:28px 30px;
  border-radius:20px;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  border:1px solid rgba(3,91,166,0.08);
  transition:.35s ease;
}

.ph-flow-content:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

/* Icon */
.ph-flow-icon{
  width:46px;
  height:46px;
  background:#035ba6;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
}

.ph-flow-icon img{
  width:22px;
  filter:brightness(0) invert(1);
}

/* Title */
.ph-flow-content h5{
  color:#035ba6;
  font-weight:600;
  margin-bottom:8px;
  font-size:1.05rem;
}

/* Text */
.ph-flow-content p{
  margin:0;
  font-size:0.95rem;
  color:#555;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width: 992px){

  .ph-flow-track::before{
    left:20px;
  }

  .ph-flow-item{
    width:100%;
    padding-left:60px;
    padding-right:20px;
    text-align:left;
    left:0 !important;
  }

  .ph-flow-dot{
    left:12px !important;
    right:auto;
  }

}

@media(max-width: 576px){

  .ph-flow-title{
    font-size:1.8rem;
  }

  .ph-flow-content{
    padding:22px 22px;
  }

}


/* ================= PROGRAM INFO – KNOWLEDGE PANELS ================= */

.program-knowledge{
  background:#f9fbfd;
  padding:90px 0;
}

/* Wrapper */
.pk-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

/* Panel */
.pk-panel{
  position:relative;
  background:#ffffff;
  padding:60px 45px 45px;
  border-radius:26px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  border:1px solid rgba(3,91,166,0.08);
}

/* Floating Header */
.pk-header{
  position:absolute;
  top:-22px;
  left:40px;
  background: rgba(3, 91, 166, 0.1)!important;
  color: #035ba6 !important;
  padding:10px 26px;
  border-radius:30px;
  font-weight:600;
  font-size:1.05rem;
  letter-spacing:.3px;
}

/* Intro Text */
.pk-intro{
  margin-bottom:25px;
  color:#555;
  font-size:1rem;
}

/* Content List */
.pk-content{
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* Row Item */
.pk-row{
  display:flex;
  gap:16px;
  align-items:flex-start;
}

/* Marker */
.pk-marker{
  min-width:14px;
  height:14px;
  margin-top:6px;
  border-radius:50%;
  background:#f38020;
}

/* Text */
.pk-text{
  font-size:0.95rem;
  line-height:1.6;
  color:#333;
}

/* Responsive */
@media(max-width: 992px){
  .pk-wrapper{
    grid-template-columns:1fr;
  }

  .pk-panel{
    padding:55px 30px 35px;
  }

  .pk-header{
    left:25px;
  }
}

@media(max-width: 576px){
  .pk-header{
    font-size:0.95rem;
    padding:8px 20px;
  }
}

/* ================= DRIVE FUTURE – PREMIUM MODERN ================= */

.btech-drive-future-section{
  background: linear-gradient(135deg,#f4f9ff,#eef6fd);
  padding: 70px 0;
}

/* Section Heading */
.btech-drive-future-section h2{
  color: #065ba7;
  font-weight: 600;
  font-size: 34px;
  text-align:center;
  position: relative;
}

/* Carousel spacing */
.btech-drive-carousel .owl-stage{
  display: flex;
}

.btech-drive-carousel .owl-item{
  display: flex;
  justify-content: center;
}

/* Program Card */
.btech-drive-card{
  background:#fff;
  border-radius:22px;
  padding:35px 26px;
  min-height:340px;
  max-width:300px;
  width:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  text-align:center;
  box-shadow:0 12px 32px rgba(6,91,167,0.08);
  transition:.4s;
  position:relative;
  overflow:hidden;
}

/* Gradient overlay hover */
.btech-drive-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:0;
  background:linear-gradient(180deg,#065ba7,#f4801e);
  opacity:.08;
  transition:.4s;
}
.btech-drive-card:hover::before{
  height:100%;
}

.btech-drive-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 45px rgba(6,91,167,0.18);
}

/* Icon */
.btech-drive-icon{
  width:95px;
  height:95px;
  margin:0 auto 20px;
  border-radius:50%;
  background:#f4801e;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.4s;
}
.btech-drive-icon img{
  width:50px;
  filter:brightness(0) invert(1);
}
.btech-drive-card:hover .btech-drive-icon{
  transform:rotate(8deg) scale(1.08);
}

/* Title */
.btech-drive-card h4{
  color:#065ba7;
  font-weight:600;
  font-size:1.1rem;
}

/* Description */
.btech-drive-card p{
  color:#555;
  font-size:.92rem;
}

/* Arrow */
.btech-drive-arrow a{
  width:45px;
  height:45px;
  border-radius:50%;
  border:2px solid #065ba7;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:.3s;
}
.btech-drive-arrow a:hover{
  background:linear-gradient(135deg,#065ba7,#f4801e);
  border:none;
}
.btech-drive-arrow a:hover svg{
  stroke:#fff;
}

/* ================= DEAN SECTION – PREMIUM ================= */

.btech-dean-section{
  padding:80px 0;
  background: linear-gradient(135deg,#f4f9ff,#eef6fd);
}

.btech-dean-content{
  background:#fff;
  padding:45px;
  border-radius:26px;
  display:flex;
  gap:40px;
  align-items:center;
  box-shadow:0 20px 50px rgba(6,91,167,0.08);
  transition:.4s;
}
.btech-dean-content:hover{
  transform:translateY(-6px);
}

/* Image */
.btech-dean-img{
  position:relative;
}
.btech-dean-img::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border:3px solid #f4801e;
  border-radius:50%;
  top:-8px;
  left:-8px;
  z-index:-1;
}
.btech-dean-img img{
  width:270px;
  border-radius:50%;
  border:4px solid #065ba7;
}

/* Text */
.btech-dean-title{
  color:#065ba7;
  font-weight:600;
  font-size:26px;
}

.btech-dean-welcome-highlight{
  color:#f4801e;
  font-weight:600;
  font-size:17px;
  display:block;
  margin-bottom:10px;
}

.btech-dean-desc-short,
.btech-dean-desc-full{
  color:#444;
  line-height:1.7;
}

.btech-dean-readmore{
  color:#f4801e;
  font-weight:600;
  transition:.3s;
  text-decoration:none;
}
.btech-dean-readmore:hover{
  letter-spacing:.5px;
}

.btech-dean-sign{
  color:#065ba7;
  font-weight:600;
}

/* Mobile */
@media(max-width:768px){
  .btech-dean-content{
    flex-direction:column;
    text-align:center;
    padding:30px;
  }
  .btech-drive-card{
    max-width:260px;
  }
}



/* ================= FACULTY – PORTRAIT SHOWCASE ================= */

.faculty-showcase{
  background: #fafafa;
  padding: 100px 0;
}

/* Header */
.faculty-showcase-header{
  text-align: center;
  margin-bottom: 70px;
}

.faculty-showcase-header span{
    display: inline-block !important;
    background: rgba(3, 91, 166, 0.1)!important;
    color: #035ba6 !important;
    font-weight: 600 !important;
    padding: 6px 14px !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    margin-bottom: 18px !important;
    letter-spacing: .5px !important;
}

.faculty-showcase-header h2{
  color: #065ba7;
  font-size: 2.8rem;
  font-weight: 600;
}

/* Grid */
.faculty-showcase-grid{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px 40px;
}

/* Item */
.faculty-showcase-item{
  text-align: center;
  position: relative;
}

/* Image Wrap */
.faculty-img-wrap{
  position: relative;
  width: 220px;
  height: 220px;
  margin: auto;
}

/* Image */
.faculty-img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #065ba7;
  position: relative;
  z-index: 2;
}

/* Orange Halo */
.faculty-img-wrap::before{
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 4px solid #f4801e;
  z-index: 1;
}

/* Info Panel */
.faculty-info-box{
  background: #ffffff;
  margin-top: -40px;
  padding: 60px 24px 26px;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  min-height: 180px;
}

/* Hover */
.faculty-showcase-item:hover .faculty-info-box{
  background: #065ba7;
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.12);
}

.faculty-showcase-item:hover h6,
.faculty-showcase-item:hover p{
  color: #ffffff;
}

/* Name */
.faculty-info-box h6{
  color: #065ba7;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* Role */
.faculty-info-box p{
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.45;
}

/* Mobile */
@media(max-width:768px){

  .faculty-img-wrap{
    width: 180px;
    height: 180px;
  }

  .faculty-showcase-header h2{
    font-size: 2.1rem;
  }

}


/* ================= NEWS SHOWCASE LAYOUT ================= */

.news-showcase-layout{
  background:#fafafa;
  padding:90px 0;
  position:relative;
}

/* ===== HEADER ===== */
.news-showcase-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:50px;
  border-left:6px solid #f38020;
  padding-left:20px;
}

.news-showcase-header h2{
  color:#035ba6;
  font-weight:600;
  margin:0;
}

.news-showcase-header span{
  color:#f38020;
  font-size:14px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
}

/* ===== LAYOUT GRID ===== */
.news-showcase-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:30px;
}

/* ===== FEATURED BLOCK ===== */
.news-feature-block{
  grid-column:span 2;
  background:#fff;
  border-radius:22px;
  box-shadow:0 18px 45px rgba(0,0,0,0.08);
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
}

.news-feature-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.news-feature-content{
  padding:35px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.news-feature-content h3{
  color:#035ba6;
  font-weight:600;
  margin-bottom:15px;
}

.news-feature-content p{
  color:#555;
  line-height:1.7;
}

.news-feature-tag{
  display:inline-block;
  border:1.5px solid #f38020;
  color:#f38020;
  padding:6px 16px;
  border-radius:20px;
  font-size:12px;
  font-weight:600;
  width:max-content;
  margin-bottom:15px;
}

/* ===== STACKED NEWS ===== */
.news-stack{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.news-mini-card{
  background:#fff;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  display:flex;
  align-items:center;
  padding:14px;
  gap:14px;
  transition:.3s;
  border-left:4px solid #035ba6;
}

.news-mini-card:hover{
  transform:translateY(-5px);
  border-left-color:#f38020;
}

.news-mini-card img{
  width:85px;
  height:85px;
  object-fit:cover;
  border-radius:12px;
}

.news-mini-card a{
  text-decoration:none;
  color:#035ba6;
  font-weight:600;
  line-height:1.4;
  display:block;
}

.news-mini-card a:hover{
  color:#f38020;
}

/* ===== BOTTOM STRIP ===== */
.news-bottom-strip{
  margin-top:60px;
  padding:25px 30px;
  background:#035ba6;
  border-radius:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.news-bottom-strip span{
  color:#fff;
  font-weight:600;
}

.news-bottom-strip a{
  background:#f38020;
  color:#fff;
  text-decoration:none;
  padding:10px 22px;
  border-radius:25px;
  font-weight:600;
  transition:.3s;
}

.news-bottom-strip a:hover{
  background:#fff;
  color:#035ba6;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){

  .news-showcase-grid{
    grid-template-columns:1fr;
  }

  .news-feature-block{
    grid-column:span 1;
    grid-template-columns:1fr;
  }

  .news-showcase-header{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  .news-bottom-strip{
    flex-direction:column;
    gap:15px;
    text-align:center;
  }

}

/* ================= TECH VISION PANEL ================= */

.tech-vision-panel{
  background:#fafafa;
  padding:100px 0;
  position:relative;
}

/* ===== GRID SYSTEM ===== */
.tech-vision-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* ===== IMAGE ZONE ===== */
.tech-vision-media{
  position:relative;
  padding:25px;
  border-radius:26px;
  background:#fff;
  box-shadow:0 18px 45px rgba(0,0,0,0.10);
}

.tech-vision-media::after{
  content:"";
  position:absolute;
  bottom:-18px;
  right:-18px;
  width:70%;
  height:70%;
  border:4px solid #035ba6;
  border-radius:26px;
  z-index:-1;
}

.tech-vision-media img{
  width:100%;
  border-radius:20px;
  display:block;
}

/* ===== CONTENT ZONE ===== */
.tech-vision-content{
  background:#ffffff;
  padding:55px;
  border-radius:28px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  position:relative;
  overflow:hidden;
}

/* Decorative bar */
.tech-vision-content::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:8px;
  background:#f38020;
}

/* Tag */
.tech-vision-label{
    display: inline-block !important;
    background: rgba(3, 91, 166, 0.1)!important;
    color: #035ba6 !important;
    font-weight: 600 !important;
    padding: 6px 14px !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    margin-bottom: 18px !important;
    letter-spacing: .5px !important;
}

/* Title */
.tech-vision-heading{
  color:#035ba6;
  font-weight:600;
  line-height:1.25;
  margin-bottom:22px;
}

/* Text */
.tech-vision-text{
  color:#444;
  font-size:16px;
  line-height:1.75;
}

/* Accent shape */
.tech-vision-accent{
  position:absolute;
  bottom:-40px;
  left:-40px;
  width:120px;
  height:120px;
  border-radius:50%;
  border:6px solid #f38020;
  opacity:0.15;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){

  .tech-vision-grid{
    grid-template-columns:1fr;
  }

  .tech-vision-content{
    padding:40px 30px;
    text-align:center;
  }

  .tech-vision-label{
    margin:0 auto 18px auto;
  }

  .tech-vision-accent{
    display:none;
  }

}

/* ================= HOW TO APPLY – FLOW DESIGN ================= */

.apply-flow-section{
  background:#ffffff;
  padding:100px 0;
  position:relative;
}

/* Header */
.apply-flow-header{
  text-align:center;
  margin-bottom:70px;
}

.apply-flow-badge{
    display: inline-block !important;
    background: rgba(3, 91, 166, 0.1)!important;
    color: #035ba6 !important;
    font-weight: 600 !important;
    padding: 6px 14px !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    margin-bottom: 18px !important;
    letter-spacing: .5px !important;
}

.apply-flow-title{
  color:#035ba6;
  font-weight:600;
  font-size:2.6rem;
  margin:0;
}

/* ================= TIMELINE ================= */

.apply-flow-wrapper{
  max-width:900px;
  margin:0 auto;
  position:relative;
}

.apply-flow-line{
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  width:3px;
  height:100%;
  background:#035ba6;
  opacity:0.15;
}

/* Step Row */
.apply-flow-step{
  display:grid;
  grid-template-columns:1fr 80px 1fr;
  align-items:center;
  margin-bottom:80px;
  position:relative;
}

/* Middle Circle */
.apply-flow-circle{
  width:70px;
  height:70px;
  background:#ffffff;
  border:3px solid #f38020;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  color:#035ba6;
  font-size:1.1rem;
  z-index:2;
  margin:auto;
}

/* Content Box */
.apply-flow-box{
  background:#fafafa;
  padding:35px 40px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  position:relative;
}

.apply-flow-box h4{
  color:#035ba6;
  font-weight:600;
  margin-bottom:12px;
}

.apply-flow-box p{
  color:#444;
  font-size:0.95rem;
  line-height:1.6;
  margin:0;
}

/* Left / Right alignment */
.apply-left{
  grid-column:1/2;
  text-align:right;
}

.apply-right{
  grid-column:3/4;
  text-align:left;
}

/* Apply Now link */
.apply-flow-btn{
  background:none;
  border:none;
  color:#f38020;
  font-weight:600;
  padding:0;
  cursor:pointer;
}

.apply-flow-btn:hover{
  text-decoration:underline;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
  .apply-flow-line{
    left:30px;
  }

  .apply-flow-step{
    grid-template-columns:60px 1fr;
    gap:20px;
  }

  .apply-flow-circle{
    grid-column:1/2;
  }

  .apply-left,
  .apply-right{
    grid-column:2/3;
    text-align:left;
  }

  .apply-flow-title{
    font-size:2rem;
  }
}