

/* ================= 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,
    #065ba7,
    #0b3f73,
    #f4801e
  );
}
.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: #f4801e;
}

.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: #065ba7;
  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: #f4801e;
  color: #fff;
}

/* Outline button */
.hero-btns .btn-student.outline{
  
  border: 2px solid #065ba7;
  
}

.hero-btns .btn-student.outline:hover{
 background: #f4801e;
  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 – FEATURE WALL ================= */

.program-highlights-wall{
  background:#fafafa;
  padding:90px 0;
}

/* Header */
.ph-wall-header{
  text-align:center;
  margin-bottom:70px;
}

.ph-wall-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-wall-title{
  color:#035ba6;
  font-weight:600;
  font-size:2.8rem;
}

/* ================= WALL LAYOUT ================= */

.ph-wall-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* Block */
.ph-wall-item{
  background:#fff;
  border-radius:22px;
  padding:32px 30px;
  position:relative;
  box-shadow:0 12px 32px rgba(0,0,0,0.08);
  transition:.35s;
  overflow:hidden;
}

/* Side bar */
.ph-wall-item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:5px;
  background:#f38020;
}

/* Hover */
.ph-wall-item:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* Icon box */
.ph-wall-icon{
  width:56px;
  height:56px;
  border-radius:14px;
  background:#035ba6;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
}

.ph-wall-icon img{
  width:26px;
  height:26px;
  filter:brightness(0) invert(1);
}

/* Title */
.ph-wall-item h5{
  color:#035ba6;
  font-weight:600;
  margin-bottom:10px;
  font-size:1.05rem;
}

/* Text */
.ph-wall-item p{
  margin:0;
  font-size:0.95rem;
  color:#555;
  line-height:1.6;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
  .ph-wall-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .ph-wall-grid{
    grid-template-columns:1fr;
  }
  .ph-wall-title{
    font-size:1.8rem;
  }
}
/* ================= PROGRAM INFO – SPLIT PANEL DESIGN ================= */

.program-split{
  background:#f7f9fb;
  padding:90px 0;
}

/* GRID LAYOUT */
.program-split-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
}

/* PANEL */
.program-panel{
  background:#ffffff;
  border-radius:22px;
  padding:45px 40px;
  position:relative;
  overflow:hidden;
  border:1px solid #e6e6e6;
  transition:all 0.3s ease;
}

.program-panel:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

/* HEADER BAR */
.program-panel-header{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:25px;
  padding-bottom:18px;
  border-bottom:2px dashed rgba(3,91,166,0.15);
}

.program-icon{
  width:52px;
  height:52px;
  border-radius:14px;
  background:#f38020;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:22px;
  font-weight:600;
}

.program-title{
  font-size:1.5rem;
  font-weight:600;
  color:#035ba6;
  margin:0;
}

/* DESCRIPTION */
.program-desc{
  color:#555;
  margin-bottom:22px;
  font-size:0.95rem;
}

/* LIST STYLE */
.program-points{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.program-points li{
  background:#f9fbfd;
  border-left:4px solid #f38020;
  padding:14px 16px 14px 18px;
  border-radius:10px;
  font-size:0.95rem;
  color:#333;
  line-height:1.6;
  position:relative;
}


/* RESPONSIVE */
@media(max-width: 992px){
  .program-split-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width: 576px){
  .program-panel{
    padding:35px 25px;
  }

  .program-title{
    font-size:1.3rem;
  }
}
/* ================= 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 – SPLIT PANEL DESIGN ================= */

.news-split-panel{
  background:#f9fbfd;
  padding:90px 0;
}

/* HEADER */
.news-panel-head{
  text-align:center;
  margin-bottom:60px;
}

.news-panel-tag{
    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;
}

.news-panel-title{
  color:#035ba6;
  font-weight:600;
  font-size:2.1rem;
  margin:0;
}

/* LAYOUT */
.news-panel-layout{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:0;
  min-height:520px;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,0.06);
}

/* LEFT FEATURE PANEL */
.news-panel-feature{
  position:relative;
  overflow:hidden;
}

.news-panel-feature img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.news-panel-overlay{
  position:absolute;
  inset:0;
  background:rgba(3,91,166,0.15);
}

/* FEATURE CONTENT FLOAT */
.news-panel-feature-content{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:40px;
  background:#ffffff;
  border-top-right-radius:40px;
}

.news-panel-feature-title{
  color:#035ba6;
  font-size:1.4rem;
  font-weight:600;
  text-decoration:none;
  display:block;
}

.news-panel-feature-title:hover{
  color:#f38020;
}

.news-panel-feature-desc{
  margin-top:12px;
  color:#555;
  font-size:0.95rem;
  line-height:1.6;
}

/* RIGHT FLOATING STACK */
.news-panel-stack{
  background:#ffffff;
  padding:35px 30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:22px;
}

/* CARD */
.news-float-card{
  display:grid;
  grid-template-columns: 85px 1fr;
  gap:16px;
  align-items:center;
  background:#f9fbff;
  border:1px solid rgba(3,91,166,0.12);
  border-radius:18px;
  padding:14px;
  transition:.3s ease;
}

.news-float-card:hover{
  transform:translateX(6px);
  border-color:#f38020;
}

.news-float-card img{
  width:85px;
  height:70px;
  object-fit:cover;
  border-radius:12px;
}

.news-float-title{
  color:#035ba6;
  font-weight:600;
  font-size:0.95rem;
  text-decoration:none;
  line-height:1.4;
}

.news-float-title:hover{
  color:#f38020;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .news-panel-layout{
    grid-template-columns:1fr;
  }

  .news-panel-feature-content{
    border-top-right-radius:0;
  }
}

@media(max-width: 576px){
  .news-panel-feature-content{
    padding:25px;
  }

  .news-panel-stack{
    padding:20px;
  }

  .news-panel-title{
    font-size:1.6rem;
  }
}

/* ================= TECH EXCELLENCE – VERTICAL SPINE DESIGN ================= */

.tech-vision-spine{
  background:#f9fbfd;
  padding:100px 0;
  position:relative;
}

/* Spine Line */
.tech-vision-spine::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:2px;
  background:rgba(3,91,166,0.15);
  transform:translateX(-50%);
}

/* Layout */
.tech-vision-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:80px;
  align-items:center;
  position:relative;
  z-index:2;
}

/* Left Card */
.tech-vision-card{
  background:#ffffff;
  padding:50px 45px;
  border-radius:26px;
  box-shadow:0 18px 45px rgba(0,0,0,0.08);
  position:relative;
}

/* Corner Accent */
.tech-vision-card::after{
  content:"";
  position:absolute;
  bottom:-12px;
  right:-12px;
  width:90px;
  height:90px;
  border:3px solid #f38020;
  border-radius:18px;
}

/* Tag */
.tech-vision-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;
}

/* Title */
.tech-vision-title{
  color:#035ba6;
  font-weight:600;
  font-size:2rem;
  margin-bottom:20px;
  line-height:1.3;
}

/* Text */
.tech-vision-text{
  font-size:1rem;
  line-height:1.8;
  color:#444;
}

/* Right Media Panel */
.tech-vision-media{
  position:relative;
  background:#ffffff;
  padding:18px;
  border-radius:28px;
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* Image Frame Accent */
.tech-vision-media::before{
  content:"";
  position:absolute;
  top:-14px;
  right:-14px;
  width:100%;
  height:100%;
  border:3px solid #035ba6;
  border-radius:28px;
  z-index:-1;
}

.tech-vision-media img{
  width:100%;
  border-radius:20px;
  display:block;
}

/* Mobile */
@media(max-width: 992px){

  .tech-vision-spine::before{
    display:none;
  }

  .tech-vision-wrap{
    grid-template-columns:1fr;
    gap:50px;
  }

  .tech-vision-card{
    text-align:center;
  }

  .tech-vision-card::after{
    display:none;
  }

}

@media(max-width: 576px){

  .tech-vision-card{
    padding:35px 28px;
  }

  .tech-vision-title{
    font-size:1.6rem;
  }

}



/* ================= HOW TO APPLY – MODERN ================= */

.apply-modern-section{
  background:#fafafa;
  padding:80px 0;
}

/* Header */
.apply-header{
  margin-bottom:60px;
}

.apply-tag{
    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-title{
  color:#065ba7;
  font-weight:600;
  font-size:2.5rem;
}


/* ================= STEPS GRID ================= */

.apply-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}


/* ================= CARD ================= */

.apply-step-card{
  background:#fff;
  padding:40px 30px;
  border-radius:22px;
  text-align:center;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  position:relative;
  transition:all 0.35s ease;
}

.apply-step-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 45px rgba(0,0,0,0.12);
}


/* Icon */
.apply-icon{
  width:70px;
  height:70px;
  background:rgba(6,91,167,0.08);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
}


/* Step Number */
.apply-step-no{
  display:inline-block;
  font-size:0.85rem;
  font-weight:600;
  color:#f4801e;
  margin-bottom:10px;
}


/* Title */
.apply-step-card h4{
  color:#065ba7;
  font-weight:600;
  margin-bottom:12px;
}


/* Text */
.apply-step-card p{
  font-size:0.95rem;
  color:#555;
  line-height:1.6;
}


/* Apply Now Button */
.apply-now-btn{
  background:none;
  border:none;
  color:#f4801e;
  font-weight:600;
  padding:0;
  cursor:pointer;
}

.apply-now-btn:hover{
  text-decoration:underline;
}


/* ================= RESPONSIVE ================= */

@media(max-width:992px){
  .apply-steps{
    grid-template-columns:1fr;
  }

  .apply-title{
    font-size:2rem;
  }
}