/* Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');


/* basic */

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

a {
  text-decoration: none;
  transition: .2s ease-in-out;
  font-family: 'Montserrat', sans-serif;
}

img {
  max-width: 100%;
}

p {
  margin: 10px 0;
  font-family: 'Montserrat', sans-serif;
}

ul,
ol {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}

h1 {
  font-size: 30px;
  font-weight: 700;
}

h2 {
  font-size: 24px;
  font-weight: 700;
}

h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

h5 {
  font-size: 18px;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: none;
  box-shadow: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

table {
  border-collapse: collapse;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


/* =========================
   MAIN HEADER
========================= */

.ku-container{
  width:100%;
  max-width:1300px;
  margin:auto;
  padding:0 15px;
}

.ku-main-header{
  background:#fff;
  padding:18px 0;
}

.ku-main-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

/* =========================
   LOGO AREA
========================= */

.ku-logo-area{
  display:flex;
  align-items:center;
  gap:16px;
}

.ku-logo img{
  width:90px;
}

.ku-logo-text h2{
  color:#0d2f5b;
  font-size:22px;
  margin-bottom:5px;
}

.ku-logo-text p{
  color:#666;
  font-size:14px;
  margin-bottom:6px;
}



/* =========================
   NAVBAR
========================= */

.ku-navbar{
  background:#0d2f5b;
}

.ku-nav-wrapper{
  position:relative;
}

.ku-nav-links{
  display:flex;
  align-items:center;
  list-style:none;
}

.ku-nav-links li{
  position:relative;
}

.ku-nav-links li a{
  color:#fff;
  padding:18px 14px;
  display:block;
  font-size:15px;
  transition:0.3s;
}

.ku-nav-links li a:hover{
  background:rgba(255,255,255,0.08);
}

/* =========================
   DROPDOWN
========================= */

.ku-dropdown-link{
  display:flex !important;
  align-items:center;
  gap:6px;
}

.ku-dropdown-link i{
  font-size:12px;
}

.ku-drop-menu{
  position:absolute;
  top:100%;
  left:0;
  min-width:220px;
  background:#fff;
  list-style:none;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);

  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:0.3s;
  z-index:999;
}

.ku-drop-menu li a{
  color:#111;
  border-bottom:1px solid #eee;
  padding:13px 16px;
}

.ku-drop-menu li a:hover{
  background:#f5f5f5;
}

.ku-dropdown:hover .ku-drop-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* =========================
   MOBILE NAVBAR
========================= */

.ku-mobile-navbar{
  display:none;
}

#ku-menu-btn{
  display:none;
}

.ku-menu-btn,
.ku-close-btn{
  display:none;
}

/* =========================
   MOBILE
========================= */

@media(max-width:970px){

  /* topbar */
  .ku-topbar-flex{
    flex-direction:column;
    justify-content:center;
    padding:10px 0;
  }

  .ku-topbar-left{
    justify-content:center;
    text-align:center;
    line-height:1.8;
  }

  .ku-topbar-right{
    width:100%;
    display:flex;
    justify-content:center;
  }

  /* main header */
  .ku-main-flex{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .ku-logo-area{
    align-items:center;
    justify-content:center;
  }

  .ku-logo img{
    width:115px;
  }

  .ku-logo-text{
    text-align:left;
  }

  .ku-logo-text h2{
    font-size:15px;
  }

  .ku-logo-text p{
    font-size:11px;
  }

  .ku-logo-text span{
    font-size:11px;
    line-height:1.5;
  }

  /* hide audio */
  .ku-desktop-right{
    display:none;
  }

  /* mobile navbar */
  .ku-mobile-navbar{
    display:block;
    background:#0d2f5b;
    border-bottom:3px solid #ff6a00;
  }

  .ku-mobile-nav-flex{
    min-height:58px;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  /* menu btn */
  .ku-menu-btn{
    display:flex;
    color:#fff;
    font-size:24px;
    cursor:pointer;
  }

  /* admission */
  .ku-admission-btn{
    color:#fff;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:20px;
  }

  .ku-admission-btn i{
    font-size:18px;
  }

  /* search */
  .ku-search-btn{
    color:#ff6a00;
    font-size:22px;
    cursor:pointer;
  }

  /* desktop navbar becomes sidebar */
  .ku-navbar{
    position:relative;
  }

  .ku-nav-links{
    position:fixed;
    top:0;
    left:-100%;
    width:290px;
    height:100vh;
    background:#0d2f5b;
    flex-direction:column;
    align-items:flex-start;
    overflow-y:auto;
    transition:0.4s;
    padding-top:70px;
    z-index:9999;
  }

  #ku-menu-btn:checked ~ .ku-nav-links{
    left:0;
  }

  .ku-nav-links li{
    width:100%;
  }

  .ku-nav-links li a{
    width:100%;
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding:15px 20px;
  }

  /* close */
  .ku-close-btn{
    display:block;
    position:absolute;
    top:18px;
    right:20px;
    color:#fff;
    font-size:22px;
    cursor:pointer;
  }

  /* dropdown mobile */
  .ku-drop-menu{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
    width:100%;
    background:#1a1a5b;
    box-shadow:none;
  }

  .ku-dropdown.active .ku-drop-menu{
    display:block;
  }

  .ku-drop-menu li a{
    color:#fff;
    border-bottom:1px solid rgba(255,255,255,0.05);
    padding-left:35px;
    font-size:14px;
  }

}


/* ===================================
   HERO SLIDER FINAL FIX
=================================== */

.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slider .item {
    height: 100vh;
    min-height: 700px;
}

/* ITEM */
.hero-slider .item{
    position: relative;
    overflow: hidden;
}

/* IMAGE */
.hero-slider .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* OVERLAY */
.hero-slider .item::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.45) 40%,
        rgba(0,0,0,0.10) 75%,
        rgba(0,0,0,0) 100%
    );
}

/* CONTENT */
.hero-slider .banner-content{
    position: absolute;
    inset: 0;

    z-index: 5;

    display: flex;
    align-items: center;
}

/* INNER */
.hero-slider .banner-inner{
    max-width: 720px;
    color: #fff;
}

/* TAG */
.hero-slider .tag{
    display: inline-block;

    padding: 8px 16px;
    margin-bottom: 18px;

    border-radius: 30px;

    background: linear-gradient(135deg,#ff512f,#f09819);

    color: #fff;

    font-size: 12px;
    font-weight: 700;
}

/* TITLE */
.hero-slider h1{
    font-size: clamp(38px,5vw,70px);
    line-height: 1.1;
    font-weight: 800;

    margin-bottom: 18px;

    color: #fff;
}

/* SUBTITLE */
.hero-slider p{
    font-size: clamp(18px,2vw,28px);

    margin-bottom: 18px;

    color: #f1f5f9;
}

/* INFO */
.hero-slider span{
    display: inline-block;

    padding: 10px 18px;
    margin-bottom: 28px;

    border-radius: 30px;

    background: rgba(255,255,255,0.12);

    color: #fff;

    font-size: 14px;
}

/* BUTTON */
.hero-slider .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 34px;

    border-radius: 50px;

    background: linear-gradient(135deg,#3b82f6,#06b6d4);

    color: #fff;
    text-decoration: none;

    font-weight: 600;
}

/* NAV */
.hero-slider .owl-prev,
.hero-slider .owl-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 22.64px !important;
    border-radius: 50% !important;

    background: rgba(0,0,0,0.4) !important;

    color: #fff !important;

    z-index: 20;
}

.hero-slider .owl-prev{
    left: 20px;
}

.hero-slider .owl-next{
    right: 20px;
}

/* DOTS */
.hero-slider .owl-dots{
    position: absolute;
    bottom: 25px;
    width: 100%;
}

.hero-slider .owl-dot span{
    width: 10px;
    height: 10px;

    background: rgba(255,255,255,0.5);
}

.hero-slider .owl-dot.active span{
    width: 28px;

    border-radius: 20px;

    background: #fff;
}

/* MOBILE */
@media(max-width:768px){

    .hero-slider,
    .hero-slider .owl-stage-outer,
    .hero-slider .owl-stage,
    .hero-slider .owl-item,
    .hero-slider .item{
        height: 85vh;
        min-height: 560px;
    }

    .hero-slider .banner-content{
        padding: 0 20px;
    }

    .hero-slider h1{
        font-size: 34px;
    }

    .hero-slider p{
        font-size: 18px;
    }

    .hero-slider span{
        font-size: 13px;
        line-height: 1.6;
    }

    .hero-slider .owl-prev,
    .hero-slider .owl-next{
        width: 40px;
        height: 40px;
    }
}


.quick-actions {
  padding: 40px 0 20px;
  background: #f5f7fb;
}

/* Card */
.qa-card {
  display: block;
  text-align: center;
  padding: 25px 15px;
  background: #fff;
  border-radius: 14px;
  text-decoration: none;
  color: #222;
  margin-bottom: 25px;
  transition: 0.3s ease;
  border: 1px solid #eee;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.qa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* Icon Circle */
.qa-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #2f6fed;
}

/* Text */
.qa-card h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}



.about-college {
  padding: 70px 0;
  background: #f9fbff;
  position: relative;
}

/* Left */
.about-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.about-content h3 {
  font-size: 20px;
  margin-top: 25px;
}

.about-content p {
  color: #555;
  line-height: 1.7;
}

/* Button */
.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  background: #2f6fed;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  background: #1d4ed8;
}

/* Director Card */
.director-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.director-card:hover {
  transform: translateY(-6px);
}

/* Image */
.director-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.director-content {
  padding: 25px;
}

.director-content h3 {
  margin-bottom: 10px;
}

.director-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.director-content h4 {
  margin-top: 15px;
  margin-bottom: 3px;
}

.director-content span {
  color: #777;
  font-size: 14px;
}



.courses {
  padding: 70px 0;
  background: #fff;
}

/* Left Content */
.course-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.course-content h3 {
  font-size: 20px;
  margin-top: 25px;
}

.course-content p {
  color: #555;
  line-height: 1.7;
}

/* Right Info Cards */
.course-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Info Box */
.info-box {
  background: #f8faff;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #2f6fed;
  transition: 0.3s;
}

.info-box:hover {
  transform: translateX(5px);
  background: #eef4ff;
}

.info-box h4 {
  margin-bottom: 8px;
  font-size: 18px;
}

.info-box p {
  margin: 0;
  color: #555;
}


/* Section */
.why-choose {
  padding: 70px 0;
  background: #f9fbff;
}

/* Header */
.section-header {
  margin-bottom: 50px;
}

.sub-title {
  font-size: 14px;
  letter-spacing: 2px;
  color: #2f6fed;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sub-title span {
  width: 40px;
  height: 2px;
  background: #2f6fed;
  display: inline-block;
}

.main-title {
  font-size: 30px;
  margin: 15px 0;
}

.main-title span {
  color: #2f6fed;
}

.desc {
  max-width: 600px;
  margin: auto;
  color: #666;
  line-height: 1.6;
}

/* Cards */
.wc-card {
  text-align: center;
  padding: 25px 20px;
  background: #fff;
  border-radius: 14px;
  margin-bottom: 25px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.wc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Icon */
.wc-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #2f6fed;
}

/* Text */
.wc-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.wc-card p {
  font-size: 14px;
  color: #666;
}


/* ===== SECTION ===== */
.work-process {
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
}

/* ===== HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

/* subtitle */
.sub-title {
  font-size: 13px;
  font-weight: 600;
  color: #3b82f6;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* subtitle lines */
.sub-title span {
  width: 30px;
  height: 2px;
  background: #3b82f6;
  display: inline-block;
}

/* main title */
.main-title {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  margin: 12px 0;
  line-height: 1.3;
}

/* highlighted word */
.main-title span {
  color: #3b82f6;
  position: relative;
}

/* underline */
.main-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,#3b82f6,#06b6d4);
  border-radius: 2px;
  transition: 0.3s;
}

/* description */
.desc {
  max-width: 650px;
  margin: 0 auto;
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* hover underline */
.section-header:hover .main-title span::after {
  height: 5px;
}

/* ===== PROCESS ROW ===== */
.process-row {
  display: flex;
  justify-content: space-between;
  position: relative;
}

/* connecting line */
.process-row::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 5%;
  width: 90%;
  border-top: 2px dashed #cbd5e1;
  z-index: 0;
}

/* ===== STEP BOX ===== */
.process-box {
  width: 22%;
  text-align: center;
  position: relative;
  transition: 0.4s ease;
  z-index: 1;
}

/* circle */
.circle {
  width: 110px;
  height: 110px;
  margin: auto;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

/* glow layer */
.circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg,#3b82f6,#06b6d4);
  opacity: 0;
  transition: 0.4s;
  z-index: -1;
}

/* icon */
.circle img {
  width: 42px;
  transition: 0.4s ease;
}

/* step number badge */
.circle span {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #0f172a;
  color: #fff;
  font-size: 12px;
  padding: 6px 9px;
  border-radius: 50%;
}

/* text */
.process-box h4 {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  transition: 0.3s;
}

.process-box p {
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
}

/* ===== HOVER EFFECT ===== */
.process-box:hover {
  transform: translateY(-10px);
}

.process-box:hover .circle {
  box-shadow: 0 20px 50px rgba(59,130,246,0.25);
}

.process-box:hover .circle::before {
  opacity: 0.15;
}

.process-box:hover .circle img {
  transform: scale(1.2) rotate(5deg);
}

.process-box:hover h4 {
  color: #3b82f6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .process-row {
    flex-direction: column;
  }

  .process-row::before {
    display: none;
  }

  .process-box {
    width: 100%;
    margin-bottom: 35px;
  }
}

/* Section */
.campus-facilities {
  padding: 70px 0;
  background: #fff;
}

/* Card */
.facility-card {
  text-align: center;
  padding: 35px 20px;
  border-radius: 14px;
  margin-bottom: 25px;
  transition: 0.3s;
  background: #f9fbff;
  border: 1px solid #eef1f5;
}

.facility-card:hover {
  background: #2f6fed;
  transform: translateY(-6px);
}

/* Icon */
.facility-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #2f6fed;
  transition: 0.3s;
}

.facility-card:hover .facility-icon {
  background: #ffffff;
  color: #2f6fed;
}

/* Text */
.facility-card h4 {
  font-size: 16px;
  margin: 0;
  color: #222;
  transition: 0.3s;
}

.facility-card:hover h4 {
  color: #fff;
}
/* Add this only */
.facility-card p {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
  transition: 0.3s;
}

.facility-card:hover p {
  color: #eaeaea;
}



.gallery {
  padding: 70px 0;
  background: #f9fbff;
}

/* Filter */
.gallery-filter {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-filter button {
  border: none;
  background: #eef4ff;
  padding: 8px 18px;
  margin: 5px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-filter button:hover {
  background: #2f6fed;
  color: #fff;
}

/* Masonry */
.gallery-grid {
  column-count: 3;
  column-gap: 15px;
}

.gallery-item {
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 12px;
  break-inside: avoid;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: 0.4s;
}

/* Hover */
.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    column-count: 1;
  }
}




/* SECTION */
.placement-final {
  padding: 80px 0;
  background: #f9fbff;
}

/* LEFT LIST */
.pl-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.pl-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.pl-list i {
  color: #2f6fed;
  font-size: 20px;
  margin-top: 5px;
}

.pl-list h4 {
  margin-bottom: 5px;
  font-size: 16px;
}

.pl-list p {
  font-size: 14px;
  color: #666;
}

/* TESTIMONIAL CARD */
.pl-testimonial {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* TOP STRIP */
.pl-head {
  background: linear-gradient(90deg, #2f6fed, #4facfe);
  padding: 10px 20px;
}

.pl-head span {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
}

/* CONTENT */
.pl-item {
  padding: 25px;
}

/* PROFILE */
.pl-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 15px;
}

.pl-top img {
  width: 55px !important;
  height: 55px;
  border-radius: 50%;
}

.pl-top h5 {
  margin: 0;
}

.pl-top span {
  font-size: 13px;
  color: #777;
}

/* TEXT */
.pl-text {
  font-style: italic;
  color: #555;
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.pl-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 100%;
  background: #2f6fed;
  border-radius: 2px;
}

/* DECOR SHAPE */
.pl-testimonial::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: rgba(47,111,237,0.08);
  border-radius: 50%;
}

/* NAV */
.pl-testimonial .owl-nav {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 8px;
}

.pl-testimonial .owl-nav button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef4ff;
  border: none;
}

.pl-testimonial .owl-nav button span {
  color: #2f6fed;
}

.pl-testimonial .owl-nav button:hover {
  background: #2f6fed;
}

.pl-testimonial .owl-nav button:hover span {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pl-testimonial {
    margin-top: 30px;
  }
}




/* SECTION */
.news-alt {
  padding: 80px 0;
  background: linear-gradient(180deg, #f9fbff, #ffffff);
}

/* FEATURE CARD */
.news-feature {
  background: linear-gradient(135deg, #2f6fed, #4facfe);
  color: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(47,111,237,0.2);
}

.news-feature .badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}

.news-feature h3 {
  margin: 10px 0;
}

.news-feature p {
  opacity: 0.9;
}

.news-feature .date {
  display: block;
  margin-top: 15px;
  font-size: 13px;
  opacity: 0.8;
}

/* RIGHT SIDE LIST */
.news-side {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ROW */
.news-row {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 15px 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eef2ff;
  transition: 0.3s;
}

.news-row:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* LEFT COLOR LINE */
.news-row .line {
  width: 4px;
  height: 40px;
  border-radius: 2px;
}

/* COLORS */
.line.exam { background: #ff8c00; }
.line.circular { background: #555; }
.line.event { background: #00a86b; }
.line.admission { background: #2f6fed; }

/* TEXT */
.news-row h4 {
  margin: 0;
  font-size: 15px;
}

.news-row small {
  color: #777;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .news-feature {
    margin-bottom: 25px;
  }
}




















/* footer */

footer .footer-Nav {
  background: #0f172a;
  padding: 60px 0 30px;
  color: #cbd5e1;
}

/* Logo + Info */
footer .footer-Nav .clg-info img {
  max-width: 160px;
  margin-bottom: 15px;
}

.footer-Nav .clg-info p {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
}

/* Headings */
footer .footer-Nav h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

footer .footer-Nav h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #3b82f6;
  position: absolute;
  left: 0;
  bottom: -6px;
}

/* Links */
footer .footer-Nav ul {
  list-style: none;
  padding: 0;
}

footer .footer-Nav ul li {
  margin-bottom: 8px;
}

footer .footer-Nav ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

footer .footer-Nav ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Contact Icons */
footer .footer-Nav .clg-info ul li a i {
  margin-right: 8px;
  color: #3b82f6;
}

/* Social Icons */
footer .footer-Nav .Social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

footer .footer-Nav .Social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #1e293b;
  border-radius: 50%;
  color: #cbd5e1;
  transition: 0.3s;
}

footer .footer-Nav .Social li a:hover {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-3px);
}

footer .footer-Copy {
  text-align: center;
  padding: 20px 0;
  background: #111;
}
footer .footer-Copy p {
  font-size: 14px;
  color: #bbb;
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

/* SCROLL TOP BUTTON */
#scrollTopBtn {
  position: fixed;
  right: 20px;
  bottom: 20px;

  width: 45px;
  height: 45px;

  border: none;
  border-radius: 50%;

  background: linear-gradient(135deg, #2f6fed, #4facfe);
  color: #fff;

  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(47,111,237,0.3);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s;
  z-index: 999;
}

/* SHOW BUTTON */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

/* HOVER */
#scrollTopBtn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(47,111,237,0.4);
}




/* Contact Page */

/* SECTION */
.contact-banner {
  position: relative;
  overflow: hidden;
  padding: 120px 0 90px;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
}

/* SHAPES */
.banner-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.shape-1 {
  width: 250px;
  height: 250px;
  background: rgba(79,172,254,0.25);
  top: -60px;
  left: -60px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  bottom: -50px;
  right: -50px;
}

/* CONTENT */
.banner-content {
  position: relative;
  z-index: 2;
}

.banner-subtitle {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* TITLE */
.banner-content h1 {
  font-size: 56px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}

.banner-content h1 span {
  color: #4facfe;
}

/* TEXT */
.banner-content p {
  max-width: 520px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* BREADCRUMB */
.breadcrumb-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.breadcrumb-box a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb-box span,
.breadcrumb-box p {
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* RIGHT SIDE */
.banner-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

/* GLASS CARD */
.glass-card {
  width: 100%;
  max-width: 340px;
  padding: 35px 30px;

  border-radius: 24px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.15);

  box-shadow: 0 20px 50px rgba(0,0,0,0.2);

  text-align: center;
}

/* ICON */
.glass-card i {
  width: 70px;
  height: 70px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 20px;

  background: rgba(255,255,255,0.12);

  color: #fff;
  font-size: 28px;
}

/* CARD TEXT */
.glass-card h4 {
  color: #fff;
  margin-bottom: 12px;
}

.glass-card p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* PHONE */
.glass-card a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .contact-banner {
    padding: 100px 0 70px;
    text-align: center;
  }

  .banner-content p {
    margin: auto auto 30px;
  }

  .banner-image {
    margin-top: 40px;
  }

  .banner-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {

  .banner-content h1 {
    font-size: 34px;
  }

  .glass-card {
    padding: 28px 22px;
  }
}





/* SECTION */
.contact-info-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
}

/* CARD */
.contact-card {
  position: relative;

  height: 100%;

  padding: 35px 28px;

  border-radius: 22px;

  background: rgba(255,255,255,0.9);

  border: 1px solid #eef2ff;

  box-shadow: 0 15px 40px rgba(0,0,0,0.05);

  overflow: hidden;

  transition: 0.4s;
}

/* TOP GLOW EFFECT */
.contact-card::before {
  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  background: rgba(47,111,237,0.08);

  border-radius: 50%;

  top: -40px;
  right: -40px;

  transition: 0.4s;
}

/* HOVER */
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-card:hover::before {
  transform: scale(1.2);
}

/* ICON */
.contact-icon {
  width: 68px;
  height: 68px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #2f6fed, #4facfe);

  margin-bottom: 22px;

  box-shadow: 0 12px 30px rgba(47,111,237,0.25);
}

/* ICON */
.contact-icon i {
  color: #fff;
  font-size: 26px;
}

/* LABEL */
.contact-label {
  display: inline-block;

  font-size: 12px;
  letter-spacing: 1px;

  color: #2f6fed;

  margin-bottom: 12px;

  text-transform: uppercase;
}

/* TITLE */
.contact-card h4 {
  font-size: 18px;
  line-height: 1.5;

  margin-bottom: 12px;

  color: #111827;
}

/* TEXT */
.contact-card p {
  font-size: 14px;
  line-height: 1.8;

  color: #6b7280;

  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .contact-info-section {
    padding: 70px 0;
  }

  .contact-card {
    padding: 30px 24px;
  }

}

@media (max-width: 576px) {

  .contact-card {
    border-radius: 18px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
  }

  .contact-icon i {
    font-size: 22px;
  }

}



/* SECTION */
.contact-form-section {
  padding: 90px 0;
  background: #f9fbff;
}

/* LEFT CONTENT */
.form-content {
  padding-right: 40px;
}

.form-subtitle {
  display: inline-block;

  padding: 6px 14px;

  border-radius: 30px;

  background: rgba(47,111,237,0.1);

  color: #2f6fed;

  font-size: 13px;
  letter-spacing: 1px;

  margin-bottom: 20px;
}

/* TITLE */
.form-content h2 {
  font-size: 42px;
  line-height: 1.3;

  margin-bottom: 20px;

  color: #111827;
}

.form-content h2 span {
  color: #2f6fed;
}

/* TEXT */
.form-content p {
  color: #6b7280;
  line-height: 1.8;

  margin-bottom: 35px;
}

/* MINI CONTACT */
.mini-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ITEM */
.mini-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mini-item i {
  width: 52px;
  height: 52px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #2f6fed, #4facfe);

  color: #fff;

  font-size: 18px;
}

/* TEXT */
.mini-item small {
  display: block;
  color: #6b7280;
  margin-bottom: 3px;
}

.mini-item h5 {
  margin: 0;
  font-size: 16px;
}

/* FORM BOX */
.contact-form-box {
  background: rgba(255,255,255,0.9);

  padding: 40px;

  border-radius: 24px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.06);

  border: 1px solid #eef2ff;
}

/* GROUP */
.form-group {
  margin-bottom: 22px;
}

/* LABEL */
.form-group label {
  display: block;

  margin-bottom: 10px;

  font-size: 14px;
  font-weight: 500;

  color: #111827;
}

/* INPUT */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  border: 1px solid #dbe3f3;

  background: #fff;

  height: 56px;

  border-radius: 14px;

  padding: 0 18px;

  font-size: 14px;

  color: #111827;

  outline: none;

  transition: 0.3s;
}

/* TEXTAREA */
.form-group textarea {
  height: auto;
  padding-top: 15px;
  resize: none;
}

/* FOCUS */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2f6fed;
  box-shadow: 0 0 0 4px rgba(47,111,237,0.08);
}

/* BUTTON */
.submit-btn {
  border: none;

  padding: 16px 32px;

  border-radius: 14px;

  background: linear-gradient(135deg, #2f6fed, #4facfe);

  color: #fff;

  font-size: 15px;
  font-weight: 600;

  transition: 0.3s;
}

/* HOVER */
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(47,111,237,0.25);
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .form-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .form-content h2 {
    font-size: 34px;
  }

}

@media (max-width: 576px) {

  .contact-form-box {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .form-content h2 {
    font-size: 28px;
  }

}




/* SECTION */
.map-section {
  padding: 90px 0 0;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
}

/* MAP WRAPPER */
.map-wrapper {
  position: relative;
  margin-top: 50px;
}

/* MAP */
.map-wrapper iframe {
  width: 100%;
  height: 520px;

  border: none;

  display: block;

  filter: grayscale(0.2);
}

/* FLOATING INFO CARD */
.map-info-card {
  position: absolute;

  top: 40px;
  left: 50%;

  transform: translateX(-50%);

  z-index: 2;

  width: 100%;
  max-width: 420px;

  display: flex;
  gap: 18px;

  padding: 24px;

  border-radius: 22px;

  background: rgba(255,255,255,0.92);

  backdrop-filter: blur(14px);

  box-shadow: 0 20px 50px rgba(0,0,0,0.12);

  border: 1px solid rgba(255,255,255,0.4);
}

/* ICON */
.map-icon {
  min-width: 65px;
  height: 65px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #2f6fed, #4facfe);

  box-shadow: 0 15px 30px rgba(47,111,237,0.25);
}

.map-icon i {
  color: #fff;
  font-size: 26px;
}

/* CONTENT */
.map-info-content h4 {
  margin-bottom: 8px;
  color: #111827;
}

.map-info-content p {
  margin-bottom: 14px;

  color: #6b7280;
  line-height: 1.7;
}

/* BUTTON */
.map-info-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  text-decoration: none;

  padding: 12px 18px;

  border-radius: 12px;

  background: linear-gradient(135deg, #2f6fed, #4facfe);

  color: #fff;

  font-size: 14px;
  font-weight: 500;

  transition: 0.3s;
}

/* HOVER */
.map-info-content a:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(47,111,237,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .map-wrapper iframe {
    height: 450px;
  }

  .map-info-card {
    position: relative;

    top: auto;
    left: auto;

    transform: none;

    margin: 0 auto 20px;

    flex-direction: column;
    text-align: center;
  }

  .map-icon {
    margin: auto;
  }

}




/* SECTION */
.admission-cta {
  position: relative;

  overflow: hidden;

  padding: 70px 0;

  background: linear-gradient(135deg, #0f172a, #1e3a8a);
}

/* SHAPES */
.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.shape-1 {
  width: 220px;
  height: 220px;

  background: rgba(79,172,254,0.18);

  top: -50px;
  left: -50px;
}

.shape-2 {
  width: 180px;
  height: 180px;

  background: rgba(255,255,255,0.08);

  bottom: -40px;
  right: -40px;
}

/* CONTENT */
.cta-content {
  position: relative;
  z-index: 2;
}

/* TAG */
.cta-tag {
  display: inline-block;

  padding: 7px 15px;

  border-radius: 30px;

  background: rgba(255,255,255,0.1);

  color: #fff;

  font-size: 12px;
  letter-spacing: 1px;

  margin-bottom: 18px;
}

/* TITLE */
.cta-content h2 {
  font-size: 42px;
  line-height: 1.3;

  color: #fff;

  margin-bottom: 18px;
}

.cta-content h2 span {
  color: #4facfe;
}

/* TEXT */
.cta-content p {
  max-width: 620px;

  color: rgba(255,255,255,0.78);

  line-height: 1.8;
}

/* BUTTON WRAPPER */
.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  flex-wrap: wrap;

  position: relative;
  z-index: 2;
}

/* BUTTON */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 170px;

  padding: 16px 24px;

  border-radius: 16px;

  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  transition: 0.3s;
}

/* CALL BUTTON */
.call-btn {
  background: #fff;
  color: #111827;

  box-shadow: 0 15px 35px rgba(255,255,255,0.12);
}

/* WHATSAPP */
.whatsapp-btn {
  background: rgba(255,255,255,0.08);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.15);

  color: #fff;
}

/* HOVER */
.cta-btn:hover {
  transform: translateY(-4px);
}

.call-btn:hover {
  box-shadow: 0 20px 40px rgba(255,255,255,0.18);
}

.whatsapp-btn:hover {
  background: rgba(255,255,255,0.15);
}

/* ICON */
.cta-btn i {
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .admission-cta {
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
    margin-top: 35px;
  }

  .cta-content h2 {
    font-size: 34px;
  }

}

@media (max-width: 576px) {

  .admission-cta {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-btn {
    width: 100%;
  }

}


/* FACULTY */

/* ===================================
   FACULTY HERO SECTION
=================================== */

.faculty-hero{
  position:relative;

  padding:140px 20px;

  background:url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;

  overflow:hidden;
}

/* OVERLAY */

.faculty-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    rgba(4,15,35,0.82),
    rgba(4,15,35,0.82)
  );
}

/* CONTENT */

.faculty-hero-content{
  position:relative;
  z-index:2;

  text-align:center;

  max-width:900px;
  margin:auto;
}

/* TAG */

.faculty-tag{
  display:inline-block;

  color:#d4a017;

  font-size:18px;
  font-weight:600;
  letter-spacing:1px;

  margin-bottom:20px;
}

/* TITLE */

.faculty-hero-content h1{
  color:#fff;

  font-size:78px;
  font-weight:700;

  line-height:1.1;

  margin-bottom:20px;
}

/* DESCRIPTION */

.faculty-hero-content p{
  color:rgba(255,255,255,0.85);

  font-size:22px;
  line-height:1.7;

  max-width:850px;
  margin:auto;
}

/* BREADCRUMB */

.faculty-breadcrumb{
  margin-top:40px;

  display:inline-flex;
  align-items:center;
  gap:18px;

  background:#072b67;

  padding:18px 35px;

  border-radius:60px;

  list-style:none;
}

.faculty-breadcrumb li{
  color:#fff;

  font-size:20px;
  font-weight:500;
}

.faculty-breadcrumb li a{
  display:flex;
  align-items:center;
  gap:10px;

  color:#fff;

  text-decoration:none;

  transition:0.4s;
}

.faculty-breadcrumb li a:hover{
  color:#d4a017;
}

.faculty-breadcrumb li.active{
  color:#d4a017;
}

/* RESPONSIVE */

@media(max-width:992px){

  .faculty-hero-content h1{
    font-size:58px;
  }

  .faculty-hero-content p{
    font-size:18px;
  }

}

@media(max-width:768px){

  .faculty-hero{
    padding:110px 20px;
  }

  .faculty-hero-content h1{
    font-size:40px;
  }

  .faculty-hero-content p{
    font-size:16px;
  }

  .faculty-breadcrumb{
    gap:12px;
    padding:15px 25px;
  }

  .faculty-breadcrumb li{
    font-size:16px;
  }

}
/* =========================
   FACULTY INTRO
========================= */

.faculty-intro{
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.section-title span{
  color: #d4a017;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title h2{
  font-size: 40px;
  margin: 12px 0 20px;
  color: #0d2f5b;
}

.faculty-intro p{
  max-width: 850px;
  margin: auto;
  line-height: 1.9;
  color: #666;
  font-size: 17px;
}

@media(max-width:768px){

  .section-title h2{
    font-size: 30px;
  }

}
/* =========================
   FACULTY GRID
========================= */

.faculty-grid-section{
  padding: 80px 20px;
  background: #f8f9fc;
}

.faculty-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.faculty-card{
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.faculty-card:hover{
  transform: translateY(-10px);
}

.faculty-img img{
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.faculty-content{
  padding: 25px;
}

.faculty-content h3{
  font-size: 24px;
  color: #0d2f5b;
  margin-bottom: 10px;
}

.designation{
  display: inline-block;
  color: #d4a017;
  font-weight: 600;
  margin-bottom: 18px;
}

.faculty-content ul{
  padding: 0;
  margin: 0;
  list-style: none;
}

.faculty-content ul li{
  margin-bottom: 12px;
  color: #666;
  line-height: 1.7;
}

@media(max-width:992px){

  .faculty-grid{
    grid-template-columns: repeat(2,1fr);
  }

}

@media(max-width:768px){

  .faculty-grid{
    grid-template-columns: 1fr;
  }

}

/* =========================
   WHY FACULTY
========================= */

.why-faculty{
  padding: 80px 20px;
  background: #fff;
}

.text-center{
  text-align: center;
}

.why-grid{
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

.why-card{
  background: #f8f9fc;
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s;
}

.why-card:hover{
  transform: translateY(-8px);
}

.why-card img{
  height: 60px;
  margin: 0 auto 20px auto;
}

.why-card h3{
  font-size: 22px;
  color: #0d2f5b;
}

@media(max-width:992px){

  .why-grid{
    grid-template-columns: repeat(2,1fr);
  }

}

@media(max-width:768px){

  .why-grid{
    grid-template-columns: 1fr;
  }

}


/* =========================
   FACULTY CTA
========================= */

.faculty-cta{
  padding: 80px 20px;
  background: #0d2f5b;
}

.faculty-cta-box{
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.faculty-cta-box h2{
  color: #fff;
  font-size: 42px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.faculty-btn{
  display: inline-block;
  background: #d4a017;
  color: #fff;
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
}

.faculty-btn:hover{
  transform: translateY(-5px);
}

@media(max-width:768px){

  .faculty-cta-box h2{
    font-size: 28px;
  }

}


/* Gallary */
/* ===================================
   GALLERY HERO SECTION
=================================== */

.gallery-hero{
  position:relative;

  padding:140px 20px;

  background:url("https://images.unsplash.com/photo-1562774053-701939374585?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;

  overflow:hidden;
}

/* OVERLAY */

.gallery-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    rgba(4,15,35,0.82),
    rgba(4,15,35,0.82)
  );
}

/* CONTENT */

.gallery-hero-content{
  position:relative;
  z-index:2;

  text-align:center;

  max-width:900px;
  margin:auto;
}

/* TAG */

.gallery-tag{
  display:inline-block;

  color:#d4a017;

  font-size:18px;
  font-weight:600;
  letter-spacing:1px;

  margin-bottom:20px;
}

/* TITLE */

.gallery-hero-content h1{
  color:#fff;

  font-size:78px;
  font-weight:700;

  line-height:1.1;

  margin-bottom:20px;
}

/* DESCRIPTION */

.gallery-hero-content p{
  color:rgba(255,255,255,0.85);

  font-size:22px;
  line-height:1.7;

  max-width:850px;
  margin:auto;
}

/* BREADCRUMB */

.breadcrumb{
  margin-top:40px;

  display:inline-flex;
  align-items:center;
  gap:18px;

  background:#072b67;

  padding:18px 35px;

  border-radius:60px;

  list-style:none;
}

.breadcrumb li{
  color:#fff;

  font-size:20px;
  font-weight:500;
}

.breadcrumb li a{
  display:flex;
  align-items:center;
  gap:10px;

  color:#fff;

  text-decoration:none;

  transition:0.4s;
}

.breadcrumb li a:hover{
  color:#d4a017;
}

.breadcrumb li.active{
  color:#d4a017;
}

/* RESPONSIVE */

@media(max-width:992px){

  .gallery-hero-content h1{
    font-size:58px;
  }

  .gallery-hero-content p{
    font-size:18px;
  }

}

@media(max-width:768px){

  .gallery-hero{
    padding:110px 20px;
  }

  .gallery-hero-content h1{
    font-size:40px;
  }

  .gallery-hero-content p{
    font-size:16px;
  }

  .breadcrumb{
    gap:12px;
    padding:15px 25px;
  }

  .breadcrumb li{
    font-size:16px;
  }

}

/* ===================================
   GALLERY SECTION
=================================== */

.gallery-section{
  padding:100px 20px;
  background:#fff;
}

.gallery-title{
  text-align:center;
  max-width:850px;
  margin:auto;
}

.sub-title{
  position:relative;
  display:inline-block;
  color:#c58b12;
  font-size:15px;
  font-weight:600;
  letter-spacing:1px;
  margin-bottom:20px;
}

.sub-title::before,
.sub-title::after{
  content:"";
  position:absolute;
  top:50%;
  width:70px;
  height:2px;
  background:#c58b12;
}

.sub-title::before{
  left:-90px;
}

.sub-title::after{
  right:-90px;
}

.gallery-title h2{
  font-size:64px;
  color:#0d2f5b;
  margin-bottom:20px;
  font-weight:700;
}

.gallery-title p{
  color:#666;
  line-height:1.9;
  font-size:18px;
}

/* FILTERS */

.gallery-filters{
  margin-top:50px;

  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;

  gap:18px;
}

.filter-btn{
  border:1px solid #e6e6e6;
  background:#fff;

  padding:18px 32px;

  border-radius:60px;

  display:flex;
  align-items:center;
  gap:12px;

  color:#0d2f5b;

  font-size:16px;
  font-weight:600;

  cursor:pointer;

  transition:0.4s;
}

.filter-btn i{
  font-size:18px;
}

.filter-btn:hover,
.filter-btn.active{
  background:#072b67;
  color:#fff;

  border-color:#072b67;

  transform:translateY(-5px);

  box-shadow:0 12px 30px rgba(7,43,103,0.20);
}

/* GALLERY GRID */

.gallery-grid{
  margin-top:60px;

  display:grid;
  grid-template-columns:repeat(4,1fr);

  gap:25px;
}

/* ITEM */

.gallery-item{
  position:relative;

  overflow:hidden;

  border-radius:18px;

  cursor:pointer;
}

.gallery-item img{
  width:100%;
  height:280px;

  object-fit:cover;

  transition:0.6s;
}

.gallery-item:hover img{
  transform:scale(1.1);
}

/* OVERLAY */

.overlay{
  position:absolute;

  left:0;
  bottom:0;

  width:100%;

  padding:25px;

  background:
  linear-gradient(
    transparent,
    rgba(0,0,0,0.85)
  );
}

.overlay h3{
  color:#fff;
  font-size:22px;
  font-weight:600;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .gallery-section{
    padding:80px 20px;
  }

  .gallery-title h2{
    font-size:42px;
  }

  .gallery-title p{
    font-size:15px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-item img{
    height:260px;
  }

  .filter-btn{
    width:100%;
    justify-content:center;
  }

  .sub-title::before,
  .sub-title::after{
    display:none;
  }

}

/* GALLERY GRID */

.gallery-grid{
  margin-top: 60px;

  display: grid;
  grid-template-columns: repeat(3,1fr);

  gap: 30px;
}

/* ITEM */

.gallery-item{
  position: relative;

  overflow: hidden;

  border-radius: 24px;

  cursor: pointer;
}

.gallery-item img{
  width: 100%;
  height: 350px;

  object-fit: cover;

  transition: 0.6s;
}

.gallery-item:hover img{
  transform: scale(1.1);
}

/* OVERLAY CONTENT */

.gallery-content{
  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;

  padding: 30px;

  background:
  linear-gradient(
    transparent,
    rgba(0,0,0,0.85)
  );
}

.gallery-content span{
  color: #d4a017;
  font-size: 14px;
  font-weight: 600;
}

.gallery-content h3{
  color: #fff;
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.4;
}

/* RESPONSIVE */

@media(max-width:992px){

  .gallery-grid{
    grid-template-columns: repeat(2,1fr);
  }

}

@media(max-width:768px){

  .gallery-section{
    padding: 80px 20px;
  }

  .section-title h2{
    font-size: 36px;
  }

  .section-title p{
    font-size: 15px;
  }

  .gallery-grid{
    grid-template-columns: 1fr;
  }

  .gallery-item img{
    height: 300px;
  }

}

/* =========================
   PREMIUM GALLERY GRID
========================= */

.premium-gallery{
  padding: 20px 20px 100px;
  background: #fff;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.gallery-item{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
}

.gallery-item img{
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.6s;
}

.gallery-item:hover img{
  transform: scale(1.1);
}

.gallery-content{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px;
  background:
  linear-gradient(
    transparent,
    rgba(0,0,0,0.85)
  );
}

.gallery-content span{
  color: #d4a017;
  font-size: 14px;
  font-weight: 600;
}

.gallery-content h3{
  color: #fff;
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.4;
}

@media(max-width:992px){

  .gallery-grid{
    grid-template-columns: repeat(2,1fr);
  }

}

@media(max-width:768px){

  .gallery-grid{
    grid-template-columns: 1fr;
  }

  .gallery-item img{
    height: 300px;
  }

  .gallery-breadcrumb-content h1{
    font-size: 38px;
  }

}



/* =========================
   GALLERY CTA
========================= */

.gallery-cta{
  padding: 100px 20px;
  background: #0d2f5b;
}

.gallery-cta-box{
  text-align: center;
  max-width: 850px;
  margin: auto;
}

.gallery-cta-box h2{
  color: #fff;
  font-size: 48px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.gallery-cta-box p{
  color: rgba(255,255,255,0.80);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.gallery-btn{
  display: inline-block;
  padding: 16px 36px;
  background: #d4a017;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
}

.gallery-btn:hover{
  transform: translateY(-5px);
}

@media(max-width:768px){

  .gallery-cta-box h2{
    font-size: 32px;
  }

  .gallery-cta-box p{
    font-size: 16px;
  }

}



/* about */
/* ===================================
   ABOUT HERO SECTION
=================================== */

.about-hero{
  position:relative;
  padding:140px 20px;
  background:url("https://images.unsplash.com/photo-1562774053-701939374585?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
}

.about-overlay{
  position:absolute;
  inset:0;
  background:rgba(4,15,35,0.82);
}

.about-hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:900px;
  margin:auto;
}

.about-tag{
  color:#d4a017;
  font-size:18px;
  font-weight:600;
}

.about-hero-content h1{
  color:#fff;
  font-size:72px;
  line-height:1.2;
  margin:20px 0;
}

.about-hero-content p{
  color:rgba(255,255,255,0.82);
  font-size:20px;
  line-height:1.8;
}

.about-breadcrumb{
  margin-top:35px;
  display:inline-flex;
  gap:18px;
  align-items:center;
  background:#072b67;
  padding:18px 35px;
  border-radius:60px;
  list-style:none;
}

.about-breadcrumb li{
  color:#fff;
}

.about-breadcrumb li a{
  color:#fff;
  text-decoration:none;
}

.about-breadcrumb .active{
  color:#d4a017;
}


/* ===================================
   ABOUT COLLEGE
=================================== */

.about-college{
  padding:100px 20px;
}

.about-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-image img{
  width:100%;
  border-radius:20px;
}

.sub-title{
  color:#d4a017;
  font-weight:600;
}

.about-content h2{
  font-size:52px;
  color:#0d2f5b;
  margin:20px 0;
}

.about-content p{
  color:#666;
  line-height:1.9;
  margin-bottom:20px;
}

.about-points{
  margin-top:30px;
}

.point{
  display:flex;
  gap:12px;
  margin-bottom:18px;
  color:#0d2f5b;
  font-weight:500;
}

.point i{
  color:#d4a017;
}


/* ===================================
   MISSION VISION
=================================== */

.mission-vision{
  padding:100px 20px;
  background:#f7f9fc;
}

.mv-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}

.mv-card{
  background:#fff;
  padding:50px;
  border-radius:24px;
  box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.mv-icon{
  width:80px;
  height:80px;
  background:#072b67;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  margin-bottom:30px;
}

.mv-card h3{
  font-size:34px;
  color:#0d2f5b;
  margin-bottom:20px;
}

.mv-card p{
  color:#666;
  line-height:1.9;
}

/* ===================================
   WHY COLLEGE
=================================== */

.why-college{
  padding:100px 20px;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:52px;
  color:#0d2f5b;
  margin-top:15px;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.why-card{
  background:#fff;
  border-radius:24px;
  padding:40px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.4s;
}

.why-card:hover{
  transform:translateY(-10px);
}

.why-card i{
  font-size:42px;
  color:#d4a017;
  margin-bottom:20px;
}

.why-card h3{
  color:#0d2f5b;
  font-size:24px;
}
/* ===================================
   PRINCIPAL MESSAGE
=================================== */

.principal-message{
  padding:100px 20px;
  background:#f7f9fc;
}

.principal-wrapper{
  display:grid;
  grid-template-columns:400px 1fr;
  gap:60px;
  align-items:center;
}

.principal-image img{
  width:100%;
  border-radius:24px;
}

.principal-content h2{
  font-size:52px;
  color:#0d2f5b;
  margin:20px 0;
}

.principal-content p{
  color:#666;
  line-height:1.9;
  margin-bottom:25px;
}

.principal-content h4{
  color:#0d2f5b;
  font-size:28px;
}

.designation{
  color:#d4a017;
  font-weight:600;
}


/* facility */
/* ===================================
   FACILITIES HERO
=================================== */

.facilities-hero{
  position:relative;
  padding:140px 20px;
  background:url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
}

.facilities-overlay{
  position:absolute;
  inset:0;
  background:rgba(4,15,35,0.82);
}

.facilities-content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:900px;
  margin:auto;
}

.facilities-tag{
  color:#d4a017;
  font-size:18px;
  font-weight:600;
}

.facilities-content h1{
  color:#fff;
  font-size:72px;
  line-height:1.2;
  margin:20px 0;
}

.facilities-content p{
  color:rgba(255,255,255,0.82);
  font-size:20px;
  line-height:1.8;
}

.facilities-breadcrumb{
  margin-top:35px;
  display:inline-flex;
  align-items:center;
  gap:18px;
  background:#072b67;
  padding:18px 35px;
  border-radius:60px;
  list-style:none;
}

.facilities-breadcrumb li{
  color:#fff;
}

.facilities-breadcrumb li a{
  color:#fff;
  text-decoration:none;
}

.facilities-breadcrumb .active{
  color:#d4a017;
}

/* ===================================
   FACILITIES INTRO
=================================== */

.facilities-intro{
  padding:100px 20px 40px;
}

.section-title{
  text-align:center;
  max-width:850px;
  margin:auto;
}

.sub-title{
  color:#d4a017;
  font-weight:600;
  letter-spacing:1px;
}

.section-title h2{
  font-size:56px;
  color:#0d2f5b;
  margin:20px 0;
}

.section-title p{
  color:#666;
  line-height:1.9;
  font-size:18px;
}

/* ===================================
   FACILITY SECTION
=================================== */

.facility-section{
  padding:100px 20px;
}

.gray-bg{
  background:#f7f9fc;
}

.facility-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.reverse{
  direction:rtl;
}

.reverse .facility-content{
  direction:ltr;
}

.facility-image img{
  width:100%;
  border-radius:24px;
}

.facility-tag{
  color:#d4a017;
  font-weight:600;
  letter-spacing:1px;
}

.facility-content h2{
  font-size:52px;
  color:#0d2f5b;
  margin:20px 0;
}

.facility-content p{
  color:#666;
  line-height:1.9;
  margin-bottom:25px;
}

.facility-content ul{
  list-style:none;
}

.facility-content ul li{
  margin-bottom:18px;
  color:#0d2f5b;
  font-weight:500;
  display:flex;
  gap:12px;
}

.facility-content ul li i{
  color:#d4a017;
}

/* RESPONSIVE */

@media(max-width:992px){

  .facility-wrapper{
    grid-template-columns:1fr;
  }

  .reverse{
    direction:ltr;
  }

}

@media(max-width:768px){

  .facilities-content h1{
    font-size:42px;
  }

  .section-title h2,
  .facility-content h2{
    font-size:36px;
  }

}


/* Training */
/* ===================================
   TRAINING HERO
=================================== */

.training-hero{
  position:relative;
  padding:140px 20px;
  background:url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
}

.training-overlay{
  position:absolute;
  inset:0;
  background:rgba(4,15,35,0.82);
}

.training-content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:950px;
  margin:auto;
}

.training-tag{
  color:#d4a017;
  font-size:18px;
  font-weight:600;
}

.training-content h1{
  color:#fff;
  font-size:72px;
  line-height:1.2;
  margin:20px 0;
}

.training-content p{
  color:rgba(255,255,255,0.82);
  font-size:20px;
  line-height:1.9;
}

.training-breadcrumb{
  margin-top:35px;
  display:inline-flex;
  align-items:center;
  gap:18px;
  background:#072b67;
  padding:18px 35px;
  border-radius:60px;
  list-style:none;
}

.training-breadcrumb li{
  color:#fff;
}

.training-breadcrumb li a{
  color:#fff;
  text-decoration:none;
}

.training-breadcrumb .active{
  color:#d4a017;
}

/* ===================================
   PREMIUM WORKSHOP
=================================== */

.premium-workshop{
  padding:120px 20px;
}

.workshop-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.workshop-tag{
  display:inline-block;
  padding:10px 22px;
  background:rgba(212,160,23,0.12);
  color:#d4a017;
  border-radius:50px;
  font-weight:600;
  margin-bottom:25px;
}

.workshop-content h2{
  font-size:58px;
  color:#0d2f5b;
  line-height:1.2;
  margin-bottom:25px;
}

.workshop-content p{
  color:#666;
  line-height:1.9;
  font-size:18px;
}

.workshop-features{
  margin-top:40px;
}

.feature-box{
  display:flex;
  gap:20px;
  margin-bottom:30px;
}

.feature-box i{
  width:70px;
  height:70px;
  background:#072b67;
  color:#fff;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
}

.feature-box h4{
  font-size:24px;
  color:#0d2f5b;
  margin-bottom:8px;
}

.workshop-image{
  position:relative;
}

.workshop-image img{
  width:100%;
  border-radius:30px;
}

.floating-card{
  position:absolute;
  bottom:30px;
  left:-30px;
  background:#fff;
  padding:30px;
  border-radius:24px;
  box-shadow:0 20px 50px rgba(0,0,0,0.10);
}

.floating-card h3{
  color:#072b67;
  font-size:42px;
}

.floating-card p{
  color:#666;
}

@media(max-width:992px){

  .workshop-grid{
    grid-template-columns:1fr;
  }

}


/* ===================================
   PREMIUM INTERNSHIP
=================================== */

.premium-internship{
  padding:120px 20px;
  background:#f7f9fc;
}

.internship-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.internship-images{
  position:relative;
}

.main-img{
  width:100%;
  border-radius:30px;
}

.small-img{
  position:absolute;
  width:280px;
  bottom:-40px;
  right:-40px;
  border-radius:24px;
  border:8px solid #fff;
}

.internship-tag{
  color:#d4a017;
  font-weight:600;
}

.internship-content h2{
  font-size:56px;
  color:#0d2f5b;
  margin:20px 0;
  line-height:1.2;
}

.internship-content p{
  color:#666;
  line-height:1.9;
  font-size:18px;
}

.internship-stats{
  margin-top:40px;
  display:flex;
  gap:25px;
}

.stat-box{
  background:#fff;
  padding:30px;
  border-radius:24px;
  min-width:220px;
  box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.stat-box h3{
  color:#072b67;
  font-size:42px;
}

.stat-box span{
  color:#666;
}

@media(max-width:992px){

  .internship-wrapper{
    grid-template-columns:1fr;
  }

  .small-img{
    display:none;
  }

}
/* ===================================
   PREMIUM PLACEMENT
=================================== */

.premium-placement{
  padding:120px 20px;
}

.placement-title{
  text-align:center;
  margin-bottom:70px;
}

.placement-title span{
  color:#d4a017;
  font-weight:600;
}

.placement-title h2{
  font-size:58px;
  color:#0d2f5b;
  margin-top:20px;
  line-height:1.2;
}

.placement-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.placement-card{
  background:#fff;
  padding:50px 40px;
  border-radius:30px;
  box-shadow:0 20px 50px rgba(0,0,0,0.05);
  transition:0.4s;
}

.active-card{
  background:#072b67;
}

.active-card h3,
.active-card p{
  color:#fff !important;
}

.placement-card:hover{
  transform:translateY(-10px);
}

.placement-icon{
  width:85px;
  height:85px;
  background:#f4f7fc;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:30px;
}

.placement-icon i{
  color:#072b67;
  font-size:34px;
}

.placement-card h3{
  color:#0d2f5b;
  font-size:28px;
  margin-bottom:18px;
}

.placement-card p{
  color:#666;
  line-height:1.9;
}


@media(max-width:992px){

  .placement-grid{
    grid-template-columns:1fr;
  }

}