

/* ================= 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;
}


/* ================= IOT HIGHLIGHTS FLOW ================= */

.iot-highlights-flow{
  background:#fafafa;
  padding:100px 0;
  position:relative;
}

/* ===== HEADER ===== */
.iot-flow-header{
  max-width:750px;
  margin:0 auto 70px auto;
  text-align:center;
}

.iot-flow-pill{
    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;
}

.iot-flow-title{
  color:#035ba6;
  font-weight:600;
  font-size:2.8rem;
}

/* ===== FLOW LAYOUT ===== */
.iot-flow-track{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px 60px;
  position:relative;
}

/* Center line */
.iot-flow-track::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  width:3px;
  height:100%;
  background:#035ba6;
  opacity:0.15;
}

/* ===== ITEM ===== */
.iot-flow-item{
  position:relative;
  display:flex;
  gap:22px;
  background:#ffffff;
  padding:26px 28px;
  border-radius:22px;
  box-shadow:0 14px 35px rgba(0,0,0,0.08);
}

/* Connector dot */
.iot-flow-item::before{
  content:"";
  position:absolute;
  top:32px;
  width:14px;
  height:14px;
  border-radius:50%;
  background:#f38020;
}

/* Left column dot */
.iot-flow-item.left::before{
  right:-7px;
}

/* Right column dot */
.iot-flow-item.right::before{
  left:-7px;
}

/* Icon */
.iot-flow-icon{
  min-width:54px;
  height:54px;
  border-radius:16px;
  border:2px solid #035ba6;
  display:flex;
  align-items:center;
  justify-content:center;
}

.iot-flow-icon img{
  width:24px;
}

/* Text */
.iot-flow-text h5{
  color:#035ba6;
  font-weight:600;
  margin-bottom:6px;
  font-size:1.05rem;
}

.iot-flow-text p{
  margin:0;
  font-size:0.95rem;
  color:#555;
  line-height:1.6;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){

  .iot-flow-track{
    grid-template-columns:1fr;
  }

  .iot-flow-track::before{
    display:none;
  }

  .iot-flow-item::before{
    display:none;
  }

}

@media(max-width:576px){
  .iot-flow-title{
    font-size:1.8rem;
  }
}


/* ================= PROGRAM INFO – ACADEMIC PANEL DESIGN ================= */

.program-panel-section{
  background:#ffffff;
  padding:100px 0;
}

/* Panel Wrapper */
.program-panel{
  background:#fafafa;
  border-radius:24px;
  overflow:hidden;
  margin-bottom:50px;
  box-shadow:0 10px 28px rgba(0,0,0,0.06);
}

/* Header Bar */
.program-panel-header{
  background:#035ba6;
  padding:22px 35px;
  display:flex;
  align-items:center;
  gap:15px;
}

.program-panel-indicator{
  width:14px;
  height:14px;
  background:#f38020;
  border-radius:50%;
}

.program-panel-header h2{
  color:#ffffff;
  font-weight:600;
  margin:0;
}

/* Body */
.program-panel-body{
  padding:45px 45px 50px;
}

/* Subtitle */
.program-panel-body p{
  color:#555;
  margin-bottom:22px;
}

/* ================= CONTENT GRID ================= */

.program-panel-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px 40px;
}

/* Item */
.program-panel-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  font-size:0.95rem;
  color:#333;
  line-height:1.6;
}

/* Bullet */
.program-panel-bullet{
  min-width:10px;
  height:10px;
  background:#f38020;
  border-radius:50%;
  margin-top:7px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
  .program-panel-list{
    grid-template-columns:1fr;
  }

  .program-panel-body{
    padding:35px 30px 40px;
  }
}

@media(max-width:576px){
  .program-panel-header{
    padding:18px 25px;
  }

  .program-panel-body{
    padding:30px 22px 35px;
  }
}

/* ================= 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;
  }

}

/* ================= LATEST NEWS FLOW DESIGN ================= */

.latest-news-flow{
  background:#fafafa;
  padding:90px 0;
  position:relative;
}

/* Header */
.news-flow-header{
  text-align:left;
  margin-bottom:60px;
  display:flex;
  justify-content:space-between;
  align-items:end;
  flex-wrap:wrap;
  gap:20px;
}

.news-flow-left h2{
  color:#035ba6;
  font-weight:600;
  margin:0;
  font-size:2.8rem;
}

.news-flow-left span{
  display:inline-block;
  color:#f38020;
  font-weight:600;
  letter-spacing:2px;
  font-size:12px;
  margin-bottom:10px;
  text-transform:uppercase;
}

.news-flow-line{
  width:120px;
  height:4px;
  background:#f38020;
  border-radius:10px;
}

/* Layout */
.news-flow-layout{
  display:grid;
  grid-template-columns: 1fr 2fr;
  gap:50px;
  align-items:start;
}

/* Left Vertical News */
.news-vertical{
  display:flex;
  flex-direction:column;
  gap:30px;
  position:relative;
  padding-left:25px;
  border-left:3px solid #035ba6;
}

.news-vertical-card{
  position:relative;
  background:#fff;
  border-radius:18px;
  padding:18px;
  box-shadow:0 10px 28px rgba(0,0,0,0.07);
  display:flex;
  gap:15px;
  align-items:center;
  transition:.3s;
}

.news-vertical-card::before{
  content:"";
  position:absolute;
  left:-34px;
  width:16px;
  height:16px;
  background:#f38020;
  border-radius:50%;
}

.news-vertical-card:hover{
  transform:translateX(6px);
}

.news-vertical-card img{
  width:85px;
  height:85px;
  border-radius:12px;
  object-fit:cover;
}

.news-vertical-title{
  color:#035ba6;
  font-weight:600;
  text-decoration:none;
  font-size:0.95rem;
}

.news-vertical-title:hover{
  color:#f38020;
}

/* Right Featured */
.news-featured-flow{
  background:#fff;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
  transition:.4s;
  display:grid;
  grid-template-rows:auto 1fr;
}

.news-featured-flow:hover{
  transform:translateY(-8px);
}

.news-featured-img img{
  width:100%;
  height:420px;
  object-fit:cover;
}

.news-featured-content{
  padding:35px;
  position:relative;
}

.news-featured-badge{
  position:absolute;
  top:-18px;
  left:35px;
  background:#f38020;
  color:#fff;
  padding:6px 16px;
  font-size:12px;
  border-radius:20px;
  font-weight:600;
}

.news-featured-title{
  font-size:1.6rem;
  font-weight:600;
  color:#035ba6;
  text-decoration:none;
  display:block;
  margin-bottom:12px;
}

.news-featured-title:hover{
  color:#f38020;
}

.news-featured-desc{
  color:#555;
  line-height:1.7;
  font-size:1rem;
}

/* Divider */
.news-flow-divider{
  margin-top:80px;
  height:3px;
  width:100%;
  background:#035ba6;
  opacity:0.12;
  border-radius:10px;
}

/* Responsive */
@media(max-width:992px){
  .news-flow-layout{
    grid-template-columns:1fr;
  }

  .news-vertical{
    border-left:none;
    padding-left:0;
  }

  .news-vertical-card::before{
    display:none;
  }

  .news-flow-header{
    flex-direction:column;
    align-items:flex-start;
  }
}


/* ================= TECH EXCELLENCE MODERN ================= */

.tech-excellence-modern{
  background:#fafafa;
  padding:80px 0;
  position:relative;
}


/* Content Box */
.tech-excellence-box{
  background:#fff;
  padding:45px;
  border-radius:20px;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  border-left:6px solid #f38020;
}


/* Tag */
.tech-tag{
  display:inline-block;
  background:#035ba6;
  color:#fff;
  padding:6px 18px;
  border-radius:25px;
  font-size:13px;
  font-weight:600;
  margin-bottom:15px;
}


/* Title */
.tech-excellence-title{
  color:#035ba6;
  font-weight:600;
  margin-bottom:20px;
  line-height:1.3;
}


/* Description */
.tech-excellence-desc{
  font-size:16px;
  line-height:1.7;
  color:#444;
}


/* Image Frame */
.tech-image-frame{
  position:relative;
  padding:15px;
  background:#fff;
  border-radius:22px;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
}


/* Accent Border Behind Image */
.tech-image-frame::before{
  content:"";
  position:absolute;
  top:-12px;
  left:-12px;
  width:100%;
  height:100%;
  border-radius:22px;
  border:3px solid #f38020;
  z-index:-1;
}


.tech-image-frame img{
  border-radius:16px;
  width:100%;
}


/* Mobile Responsive */
@media(max-width:768px){

  .tech-excellence-box{
    padding:30px;
    text-align:center;
    border-left:none;
    border-top:6px solid #f38020;
  }

  .tech-tag{
    margin:auto;
  }

}


/* ================= APPLY TIMELINE FLOW ================= */

.apply-timeline-flow{
  background:#fafafa;
  padding:100px 0;
  position:relative;
}

/* ===== HEADER ===== */
.apply-flow-header{
  text-align:center;
  max-width:720px;
  margin:0 auto 70px auto;
}

.apply-flow-pill{
    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.8rem;
}

/* ===== TIMELINE ===== */
.apply-flow-track{
  position:relative;
  max-width:900px;
  margin:0 auto;
}

/* vertical line */
.apply-flow-track::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  width:4px;
  height:100%;
  background:#035ba6;
  opacity:0.15;
}

/* ===== STEP ===== */
.apply-flow-step{
  position:relative;
  display:flex;
  margin-bottom:60px;
}

/* Left step */
.apply-flow-step.left{
  justify-content:flex-end;
  padding-right:60px;
}

/* Right step */
.apply-flow-step.right{
  justify-content:flex-start;
  padding-left:60px;
}

/* Connector dot */
.apply-flow-step::before{
  content:"";
  position:absolute;
  left:50%;
  top:22px;
  transform:translateX(-50%);
  width:16px;
  height:16px;
  border-radius:50%;
  background:#f38020;
  z-index:2;
}

/* ===== CARD ===== */
.apply-flow-card{
  background:#fff;
  width:380px;
  padding:28px 30px;
  border-radius:22px;
  box-shadow:0 14px 35px rgba(0,0,0,0.08);
  position:relative;
}

/* step badge */
.apply-flow-badge{
  display:inline-block;
  padding:6px 14px;
  background:#035ba6;
  color:#fff;
  font-size:12px;
  font-weight:600;
  border-radius:14px;
  margin-bottom:10px;
}

/* icon */
.apply-flow-icon{
  width:56px;
  height:56px;
  border:2px solid #f38020;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
}

/* title */
.apply-flow-card h4{
  color:#035ba6;
  font-weight:600;
  margin-bottom:10px;
}

/* text */
.apply-flow-card p{
  font-size:0.95rem;
  color:#555;
  line-height:1.6;
}

/* button */
.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:900px){

  .apply-flow-track::before{
    left:25px;
  }

  .apply-flow-step{
    justify-content:flex-start !important;
    padding:0 0 0 60px !important;
  }

  .apply-flow-step::before{
    left:25px;
  }

  .apply-flow-card{
    width:100%;
  }

}

@media(max-width:576px){
  .apply-flow-title{
    font-size:1.9rem;
  }
}