/* fonts */

@font-face {
    font-family: 'Montserrat';
    src: url('font/Montserrat-Regular.woff2') format('woff2'), 
    url('font/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
}

@font-face {
    font-family: 'Montserrat';
    src: url('font/Montserrat-ExtraBold.woff2') format('woff2'), 
    url('font/Montserrat-ExtraBold.woff') format('woff');
    font-weight: 800;
}
@font-face {
    font-family: 'Catamaran-Regular';
    src: url('font/Catamaran-Regular.ttf');
    font-weight: 400;
  }
  @font-face {
    font-family: 'Catamaran-SemiBold';
    src: url('font/Catamaran-SemiBold.ttf');
    font-weight: 600;
  }
body {
    font-size: 14px;
    line-height: 24px;
    font-family: 'Montserrat';
    color: #53534C;
    font-weight: 400;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2F2F23;
}

h1 {
    font-size: 58px;
    line-height: 66px;
}

h2 {
    font-size: 38px;
    line-height: 45px;
}

h3 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 10px;
}

h4 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 18px;
}

h5 {
    font-size: 20px;
    line-height: 24px;
}

h6 {
    font-size: 14px;
    line-height: 21px;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
    color: #53534C;
    font-family: 'Montserrat';
}

img {
    max-width: 100%;
    height: auto;
}

img:focus {
    outline: none;
}

a {
    color: #B2001D;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    font-family: 'Montserrat';
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #444;
    outline: none;
}

.main-area ul li,
.main-area ol li {
    margin-bottom: 15px;
}

ul,
ol {
    padding-left: 0;
    margin-bottom: 0;
}

ul li {
    list-style: none;
}

.bg-img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.dark-bg {
    background-color: #224363;
}

.btn {
    color: #fff;
    background: #A30C13;
    border: solid 1px #B2001D;
    border-radius: 20px;
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    padding: 8px 10px;
    font-weight: 400;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.btn:hover,
.btn:focus {
    background: #fff;
    color: #B2001D;
}

header.page-header {
    /* position: fixed; */
    width: 100%;
    z-index: 100;
    top: 0;
    /* -webkit-transition: all .5s; */
    transition: all .5s;
}

/* .page-header {
    background-color: #fff;
    -webkit-transition: all .5s; 
    transition: all .5s;
} */


.logo{
  float: left;
  /* width: auto; */
  /* max-width: 500px; */
  margin: 10px 0 10px 0;
}

.element-title{
    position: relative;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 32px;
    font-family: 'Montserrat';
}
.element-title .dark-font {
    font-weight: 900;
    color: #B40F15;
}

.element-title span {
    color: #B40F15;
    font-weight: 400;
}

h2.element-title.left {
    text-align: left;
}
/* Header Wrapper */

#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 3px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
/* Logo */
.logo img {
  height: 60px;
  object-fit: contain;
}
.desktop-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
}

.desktop-nav ul li a {
  text-decoration: none;
  color: #02244A;
  font-size: 14px;
  font-weight: 500;
  padding: 0 12px;
  border-right: 1px solid #707070;
}

.desktop-nav ul li:last-child a {
  border-right: none;
}

.desktop-nav ul li a:hover {
  color: #C12125;
}
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #02244A;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 260px;
  height: 100%;
  background: #eb2024;
  padding: 20px;
  transition: 0.4s ease-in-out;
  z-index: 9999;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 40px 0;
}

.mobile-menu ul li {
  margin-bottom: 20px;
}

.mobile-menu ul li a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.registration-btn{
    display: none;
    background-color: #c52f33;
    border-radius: 20px;
    text-decoration:none;
    padding: 8px 0px;
    color:#ffffff;
    text-align: center;
    }

.registration-btn a{
    display:none;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-family: 'Montserrat-SemiBold';
}

.registration-btn:hover{
    color: #fff;
    font-family: 'Montserrat-Bold';
}

/* =========== Banner Section Start ============ */

#banner{
    margin: 0 !important;
  }
  .banner_section{
    padding: 0;
  }
  .banner_box {
    background-image: url(../images/banner-img.webp);     
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    background-color: #fff;
    /* padding: 25px 0; */
    min-height:637px;
    width: 100%;
  }
  
  .home_banner_slider {
    float: left;
    width: 100%;
    min-height: 630px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #050a10;
  }
  .banner-content h1,
  .banner-content h3 {
    color: #fff;
    font-family: 'Montserrat-Medium';
  } 
  
  .banner-content h1 span {
    color: #9c0b0d;
    font-family: 'Montserrat-Medium';
  }
  .banner4-content{
    margin-left:-30px !important;
  }
  .heading_banner {
    color: #FFF;
    font-size: 26px;
    line-height: 30px;
  }
  
  .heading_banner1 {
    color: #FFF;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
  }
  
  .heading_banner span {
    color: #9c0b0d;
    font-weight: 700;
  }
  
  /* banner section end */
  
  /* <!------------------------form section start--------------------------> */
  .form-mainbox .form-heading {
    color: #000000;
    font-family: 'Montserrat';
    font-size: 30px;
    margin: 0 0 33px 0;
    text-align: center;
    font-weight: 900;
  }
  .form-mainbox {
    /* box-shadow: 0px 5px 28px #0000001A; */
    padding: 30px 20px 10px 20px;
    background-color: #f9f9f9;
    /* border-radius: 41px; */
    margin: 10px 0 0 0;
  }
  
  .form-box {
    position: relative;
    margin: 0 0 30px 0;
  }
  .form-label {
    background-color: #f9f9f9;
    font-family: 'Montserrat';
    position: absolute;
    top: -12px;
    left: 20px;
    color: #000;
    padding: 0 2px;
    font-size: 13px;
    margin: 0;
    font-weight: 400;
  }
  .form-box textarea, .banner-form-popup textarea{
    background-color: #f9f9f9;
    width: 100%;
    border: 1px solid #e4e4e4;
    line-height: normal;
    padding: 15px;
    border-radius: 5px;
    color: #707070;
    font-size: 12px;
    font-family: 'Montserrat';   
  }
  .form-control {
    background: #f9f9f9 0% 0% no-repeat padding-box !important;
    border: 0.5px solid #707070;
    border-radius: 7px;
    height: 45px;
  }
  select.form-control {
    background: url("../images/arrow.png") no-repeat 97% #f9f9f9 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #707070;
  }
  .form-mainbox .btn_submit{
    background-color: #c12125;
    color: #FFF;
    border-radius: 25px;
    font-size: 16px;
    border: 1px solid;
    font-family: 'Montserrat';
    padding: 5px 30px;
    transition-duration: 0.3s;
    font-weight: 800;
  }
  .form-mainbox .btn_submit:hover{
    background-color: #FFF;
    color: #c12125;
    border: 1px solid #c12125;
  }
  input:-internal-autofill-selected {
    background-color: #FFFF;
  }
  .loader { 
    display: none; 
    border: 4px solid rgba(255, 255, 255, 0.3); 
    border-top: 4px solid #c12125; 
    border-radius: 50%; 
    width: 15px; 
    height: 15px; 
    animation: spin 1s linear infinite; 
    margin-left: 10px; 
  } 
  
  @keyframes spin { 
    0% { 
        transform: rotate(0deg); 
    } 
  
    100% { 
        transform: rotate(360deg); 
    } 
  } 
  
  .loading { 
    background-color: #ccc; 
    pointer-events: none; 
  }
  .form{
    border-bottom: 1px solid;
    background: #f9f9f9;
  }

  .banner-form-wrap, .banner-form-popup .banner-form-wrap {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-top: 45px;
}
.banner-form-popup{
    max-width: 510px;
    position: relative;
    background-color: #9d0c00;
    border-radius: 40px;
    z-index: 1;
}
/* =========== form section ends ============ */

/*------------------ specialization-section starts------------------*/
/* Wrapper */
.spec-wrapper {
  font-family: 'Inter', sans-serif;
}

/* HERO IMAGE SECTION */
.spec-hero {
  background-image: url('../images/spl-bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 460px 0 0 0;
  color: #fff;
}

/* .spec-hero::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  transform: skewY(-3deg);
  transform-origin: top left;
} */

.spec-hero-content {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.spec-hero h2 {
  font-size: 36px;
  /* font-weight: 700; */
  margin-bottom: 10px;
}

.spec-hero p {
  font-size: 18px;
  max-width: 600px;
}

/* TIMELINE SECTION */
.specialization-section {
  padding: 0px 20px 60px;
  background: #fdfbfc;
  margin: -30px 0 0 0;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  border-top: 2px dashed #eb2024;
}

.timeline-item {
  width: 18%;
  text-align: center;
  position: relative;
}

.dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(#11468f 0px, #1e1d3f 143.73%);
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 0 0 4px rgba(235,32,36,0.15); */
  margin: 0 auto 20px auto;
}

.dot img {
  width: 30px;
  height: 30px;
}


.timeline-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0b3d2e;
  font-family: 'Montserrat';
}

.timeline-item p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}
.hide-desk{
  display: none;
}
.hide-mob{
  display: block;
}

/*------------ specialization-section ends ------------------*/

/* --------------------Recognition-section starts----------------------------- */
.sit-bg-wrapper {
  background:
    radial-gradient(circle at 15% 20%, rgba(235,32,36,0.08), transparent 35%),
    radial-gradient(circle at 85% 60%, rgba(17,70,143,0.08), transparent 40%),
    linear-gradient(180deg, #ffffff, #f5f7fb);
    padding: 30px 0;
}

.recognition-section {
  padding:40px 0;
  background: transparent;
  font-family: 'Montserrat';  
}

.rec-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.rec-left h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #1e1d3f;
  font-family: 'Montserrat';
}

.rec-subtitle {
  font-size: 18px;
  color: #444;
}

/* RIGHT */
.rec-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.rec-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}

.rec-card:hover {
  transform: translateY(-6px);
}

.rec-card.dark {
  background: linear-gradient(180deg, #11468f 0%, #1e1d3f 143.73%);
  color: #fff;
  font-family: 'Montserrat';
}

.rec-card img {
  max-height: 45px;
  margin-bottom: 18px;
}

.rec-card h3 {
  font-size: 16px;
  margin-bottom: 20px;
  font-family: 'Montserrat';
}

/* RANK BOX */
.rank-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-family: 'Montserrat';
}

.rank-box span {
  font-size: 36px;
  font-weight: 700;
  color: #eb2024;
      font-family: 'Montserrat';
}

.rank-box p {
  margin: 0;
  font-size: 15px;
  font-family: 'Montserrat';
}

/* QS LIST */
.qs-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qs-points li {
  padding: 6px 0;
  font-size: 15px;
}

.qs-points strong {
  color: #eb2024;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .rec-container {
    grid-template-columns: 1fr;
  }

  .rec-right {
    grid-template-columns: 1fr;
  }

  .rec-left h2 {
    font-size: 28px;
  }
}
/* --------------------Recognition-section ends-------------------- */

/*------------- Why SIT section ---------------*/
.why-sit {
  padding: 60px 20px;
  font-family: Montserrat;
  background: transparent;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #1e1d3f;
  font-family: 'Montserrat';
}

.section-title span {
  color: #eb2024;
}

.why-header {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
  background: linear-gradient(180deg, #11468f 0%, #1e1d3f 140%);
  padding: 30px;
  border-radius: 12px;
  color: #fff;
}

.why-header h2 {
  margin: 0;
  font-size: 32px;
}

.why-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(180deg, #11468f 0%, #1e1d3f 143.73%);
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-icon img{
    width: 30px;
    height: 30px;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1e1d3f;
}

.why-card ul {
  padding-left: 18px;
  margin: 0;
}

.why-card ul li {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #444;
}
.why-card ul {
  list-style: none;
  padding-left: 0;
}

.why-card ul li {
  position: relative;
  padding-left: 18px;
}

.why-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #eb2024;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

/* Responsive */
@media (max-width: 768px) {
  .why-header h2 {
    font-size: 24px;
  }
}
/*---------------------- Why SIT section -------------------*/

/*----------------------Placement section starts------------------------  */
/* Section heading */
.placement-stats{
  padding: 60px 0 ;
}
.placement-stats h2 {
  /* font-weight: 700; */
  font-size: 36px;
  color: #1e1d3f;
  margin-bottom: 40px;
  font-family: 'Montserrat';
}
.placement-stats h2 span{
  color: #eb2024;
}

/* Card base */
.stat-card {
  position: relative;
  padding: 30px 15px;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  clip-path: polygon(0% 0%, 67.31% 0%, 100% 31.66%, 100% 100%, 0% 100%);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform .3s ease, box-shadow .3s ease;
  font-family: 'Montserrat';
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

/* Typography */
.stat-card h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 14px;
  margin: 0;
  opacity: 0.95;
  color: #fff;
}

/* BRAND COLOR VARIANTS */
.bg-brand-blue {
  background: linear-gradient(180deg, #11468f 0%, #1e1d3f 140%);
}

.bg-brand-dark {
  background: #1e1d3f;
}

.bg-brand-red {
  background: linear-gradient(180deg, #eb2024 0%, #b91518 120%);
}

/* Optional red accent strip */
.stat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #eb2024;
}
/* --------------------Placement section ends----------------------- */

/* -----------------Recruitments section start ----------------*/ 
 .our_recruiters_section{
    width: 100%;
    padding: 20px 0px 40px 0;  
  }

.our_recruiters_section h2 {
  /* font-weight: 700; */
  font-size: 36px;
  color: #1e1d3f;
  margin-bottom: 20px;
  font-family: 'Montserrat';
  text-align: center;
}
.our_recruiters_section h2 span{
  color: #eb2024;
}
  .our_recruiters_section .item{
    max-width: 200px;
  }
  .our_recruiters_section img{
    max-width: 200px;
  }

  /* .our_recruiters_section .owl-nav{
    display: none !important;
  } */
  .our_recruiters_section .hide-nav .owl-controls {
    display: none;
  }
  .our_recruiters_section .owl-dot{
    display: none;
  }
  .our_recruiters_section .item img{
    max-width:120px;
    margin: 0 auto;
  }
  .our_recruiters_section .item{
    padding: 8px;
    border-radius: 27px;
    border: 1px solid #DDd;
    max-width: 80%;
    margin: 0 auto;
    height: 130px;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
  }
  .our_recruiters_section .owl-nav{
    float: left;
    width: 100%;
    margin: -7% 0 0 0;
    position: relative;
    z-index: 5;
    padding: 0 0px;
  }
  .our_recruiters_section .owl-nav button{
      float: left;
      width: 40px;
      background-image: url(../images/black_arrow.png) !important;
      background-repeat: no-repeat !important;
      background-position: center !important;
      background-size: 46% !important;
      height: 40px;
      border: 1px solid #ccc !important;
      background-color: #fff !important;
      border-radius: 100px;
    }
  .our_recruiters_section .owl-nav .owl-next{
      float: right;
      transform: rotate(180deg);
  }
  .our_recruiters_section .owl-nav button span{
      display: none;
  } 
 
/* ---------------Recruitments section end---------------------- */

/* --------------------- Our Programmes section starts ----------------------- */
.programmes-section {
  background: #f5f7fb;
  font-family: 'Montserrat', sans-serif;
}

/* Intro Box */
.program-intro {
  background: linear-gradient(180deg, #11468f 0%, #1e1d3f 140%);
  color: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.program-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
}

/* Programme Stack */
.programme-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Cards */
.programme-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.programme-card:hover {
  transform: translateY(-6px);
}

.programme-card h4 {
  font-size: 20px;
  color: #1e1d3f;
  margin-bottom: 10px;
}

.programme-card p {
  font-size: 14.8px;
  color: #444;
  line-height: 1.6;
}

/* Visual hierarchy */
.programme-card.primary {
  border-left: 5px solid #eb2024;
}

.programme-card.secondary {
  border-left: 5px solid #11468f;
}

/* Responsive */
@media (max-width: 768px) {
  .program-intro {
    padding: 25px;
  }
}

/* --------------------Our Programmes section ends ----------------------------- */

/***************** Admission Process Section starts********************/
.admission-steps {
  /* background: #f7f9ff; */
  font-family: Montserrat;
  padding: 60px 0 60px 0;
}

.admission-steps h2 {
  font-size: 36px;
  color: #1e1d3f;
}
.admission-steps h2 span{
   color: #eb2024;
}
.subtitle {
  color: #555;
}

.step-card {
  background: #fff;
  padding: 25px 22px 10px 22px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
  text-align: center;
  border-top: 5px solid #eb2024;
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  background: #11468f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.step-card h3 {
  margin-top: 28px;
  font-size: 18px;
  color: #1e1d3f;
}

.step-card h3 span{
  font-size: 14px;
}
  
.step-card p {
  color: #555;
  line-height: 1.6;
}
/************** Admission Process Section ends***************/

/*************** Footer Section starts*******************/
.footer-block h6 {
    text-transform: uppercase;
    color: #f7f7f7;
    font-size: 20px;
    line-height: 26px;
    margin: 0 auto 15px;
    font-family: 'Montserrat';
    font-weight: 800;
}

.footer-block address {
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    font-family: 'Montserrat';
}

.footer {
    font-family: 'Montserrat';
    background: #eb2024;
    padding: 80px 0 0 0;
}

.footer-block {
    padding-bottom: 10px;
}

.footer-menu,.footer-menu-links {
    display: block;
}

.footer-menu li, .footer-menu-links {
    padding: 0 0 10px;
}

.footer-menu li a{
    color: #fff;
    /* display: block; */
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
}
.footer-menu-links h4, .footer-menu h4{
    color: #fff;
    /* display: block; */
    font-size: 20px;
    font-family: 'Montserrat';
    font-weight: 800;
    line-height: 25px;
}
.footer-menu-links li a{
    color: #fff;
    /* display: block; */
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}
.footer-menu li a:hover,
.footer-menu li a:focus,
.footer-menu-links li a:hover,
.footer-menu-links li a:focus {
    color: #11468f;
    text-decoration: none;
}

.footer-block p{
    color: #fff;
    font-size: 16px;
    line-height: 29px;
    font-weight: 700;
}

.made_by_text {
    padding: 5px 0;
    display: block;
    font-family: 'Montserrat';
    /* border-top: 1px solid #ddd; */
}
/*************** Footer Section ends*******************/

/* Top Button starts */
#myBtn {
    display: none;
    position: fixed;
    bottom: 0;
    right: 15px;
    z-index: 99;
    border: none;
    outline: 0;
    background-color: #c30005;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    border-radius: 40px;
    font-size: 22px;
    opacity: 0.9;
    height: 40px;
    width: 40px;
    opacity: 0.5;
  }
#myBtn:hover {
    /* background-color: #555; */
    opacity: 1;
}
/* Top Button ends */


/* ===========PopUp section starts============  */
.login-popup{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1099;
	background-color:rgba(0,0,0,0.6);
	visibility: hidden;
	opacity: 0;
	transition: all 1s ease;
  overflow: scroll;
}
.login-popup.show{
	visibility:visible;
	opacity: 1;
}
.login-popup .box{
    position: fixed;
    /* left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);*/
    display: flex;
    flex-wrap: wrap; 
    opacity: 0;
    transition: all 0.5s ease;
}
.login-popup.show .box{
	opacity: 1;
	margin-left: 0;
}
.login-popup .box .img-area{
	flex:0 0 50%;
	max-width: 50%;
	position: relative;
	overflow: hidden;
	padding:30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.login-popup .box .img-area h1{
	font-size: 30px;
}
.login-popup .box .img-area .img{
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	background-image: url(../images/banner-img.webp);
	background-size: cover;
	background-position: center;
	animation: zoomInOut 7s linear infinite;
	z-index: -1;
    background-repeat: no-repeat;
}
@keyframes zoomInOut{
	0%,100%{
		transform: scale(1);
	}
	50%{
		transform: scale(1.1);
	}
}
.login-popup .box .form{
	flex:0 0 50%;
	max-width: 50%;
	padding:40px 30px;
}

.login-popup .box .form h1{
	color:#000000;
	font-size: 30px;
	margin:0 0 30px;
}
.login-popup .box .form .form-control{
	height: 45px;
	margin-bottom: 30px;
	width: 100%;
	border:none;
	border-bottom:1px solid #cccccc;
	font-size: 15px;
	/* color:#000000; */
}
.login-popup .box .form .form-control:focus{
	outline: none;
}
.login-popup .box .form label{
	font-size: 15px;
	color:#555555;
}

.login-popup .box .form .btn:focus{
	outline: none;
}

.login-popup .close{
  position: absolute;
  /* top: 35px;
  left: 20px; */
  top: 50px;
  left: 30%;
  font-size: 40px;
  cursor: pointer;
  float: left;
  color: #fff;
  z-index: 100;
  width: 3%;
}

.login-popup select.form-control {
  background: url("../images/arrow1.png") 97% no-repeat #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #000000ab;
  cursor: pointer
}
.login-popup h3{
  text-align: center;
 }
 
 /* webinar form */
  /* .banner-form-popup{
    max-width: 510px;
    position: fixed;
    background-color: #9d0c00;
    border-radius: 40px;
    z-index: 1;
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);
} */
.banner-form-popup form {
    z-index: 2;
    position: relative;
    padding: 10px 20px 30px 20px
}

 .webinar-img{
    padding: 0 0 20px 0;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}
.banner-form-popup h4 {
    text-align: center;
    font-size: 25px;
    color: #fff;
    margin: 15px 0;
    font-family: 'Montserrat';
}
.banner-form-popup h6 {
    text-align: center;
    font-size: 22px;
    background: #fff;
    font-family: 'Montserrat';
    color:#950304;
    border: 2px solid;
    border-radius: 25px;
    padding: 10px 20px;
    width: 80%;
    margin: 10px auto;
    font-weight: 700;
}
.banner-form-popup p {
    color: #fff;
    text-align: center;
    font-family: 'Montserrat';
     font-size: 22px;
}
.banner-form-popup p span {
    color: #fff;
    text-align: center;
    font-family: 'Montserrat';
    font-size: 22px;
    line-height: normal;
}
.banner-form-popup lable {
  color: #fff
} 
.banner-form-popup select.form-control {
  background: url("../images/arrow1.png") 100% no-repeat #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #707070;
  cursor: pointer
}
.banner-form-popup .banner-form-wrap {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-top: 50px
} 
.banner-form-popup .form-control  {
  font-size: 11px;
  line-height: 18px;
  border-radius: 4px;
  height: auto;
  min-height: auto;
  padding: 8px;
  max-height: 60px;
  margin:0 0 10px 0;
  color: #000;
}
.banner-form-popup .btn_submit {
    background-color: #d4b35c;
    color: #FFF;
    border-radius: 25px;
    font-size: 16px;
    border: 1px solid;
    font-family: 'Montserrat';
    padding: 5px 30px;
    transition-duration: 0.3s;
    font-weight: 800;
  }
.banner-form-popup .btn_submit:hover {
    background-color: #FFF;
    color: #c12125;
    border: 1px solid #c12125;
  }
    .loader { 
    display: none; 
    border: 4px solid rgba(255, 255, 255, 0.3); 
    border-top: 4px solid #c12125; 
    border-radius: 50%; 
    width: 15px; 
    height: 15px; 
    animation: spin 1s linear infinite; 
    margin-left: 10px; 
  } 
  
  @keyframes spin { 
    0% { 
        transform: rotate(0deg); 
    } 
  
    100% { 
        transform: rotate(360deg); 
    } 
  } 
  
  .loading { 
    background-color: #ccc; 
    pointer-events: none; 
  }
/* ===========PopUp section end============  */

/* Responsive Section Starts */
@media screen and (min-width:1600px) and (max-width:2000px) {
     .banner_box{
        background-image: url(../images/banner-img.webp);
        background-repeat: no-repeat;
        background-position: top;
        background-size: contain;
        background-color: #fff;
        margin: 75px 0 0 0;
        min-height: 855px;
        width: 100%;
    }
    .banner-wrap {    
        background-size: cover;
        padding-bottom: 231px;
    }
    .enquire-form-wrap {
        display: flex;
        margin: 0 0 0 200px;
        justify-content: space-around;
    }
    .logo img {
        height: 60px !important;
        object-fit: contain;
    }
    .desktop-nav ul li a {
        font-size: 16px;
    }
}
@media screen and (min-width:1300px) and (max-width:1599px) {
    .banner_box {
        background-image: url(../images/banner-img.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-color: #fff;
        /* padding: 25px 0; */
        margin: 75px 0 0 0;
        min-height: 610px;
        width: 100%;
   }
    .banner-wrap {    
        background-size: cover;
        padding-bottom: 31px;
    }
    .enquire-form-wrap {
        display: flex;
        margin: 0 0 0 200px;
    }
    .desktop-nav ul li a {
        font-size: 16px;
    }
}

@media (max-width: 1400px) {
.banner_box {
        background-image: url(../images/banner-img.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-color: #fff;
        /* padding: 25px 0; */
        margin: 108px 0 0 0;
        min-height: 574px;
        width: 100%;
    }
    .container {
        max-width: 1170px;
    }
    .banner-wrap {   
            background-size: cover;
            /* padding-bottom: 161px; */
    }
    .enquire-form-wrap {
        display: flex;
        /* margin-left: 40px; */
        margin: 0px 0 0 195px;
    }
}
@media screen and (max-width:1200px) {   
.banner_box {
        background-image: url(../images/banner-img.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-color: #fff;
        /* padding: 25px 0; */
        margin: 75px 0 0 0;
        min-height: 574px;
        width: 100%;
    }
    /* -------TOP-MENU-START------ */
    .mainmenu{
        position: relative;
        z-index: 500;
    }
    .toggle_menu{
      display: block;
      position: fixed;
      right: 0;
      margin: 10px 10px 0 0;
      cursor: pointer;
    }
    .toggle_menu img{
      border-radius: 7px;
      max-width: 40px;
    }
    .top_rightmenu{
      position: fixed;
      background-color: #b40f15;
      margin: 70px -560px 0 0px;
      max-width: 300px;
      right: 0;
      padding: 30px 20px;
      transition-duration: 0.3s;
    }
    .mainmenu_open .top_rightmenu{
      margin: 50px 0 0 0;
    }
    
    .toggle_menu_close{
      display: none;
    }
    .mainmenu_open .toggle_menu_close{
      display: block;
    }
    .top_rightmenu ul{
      margin: 0;
    }
    .top_rightmenu li{
      width: 100%;
    }
    .top_rightmenu li a{
      width: 100%;
      color: #fff;
      font-size: 15px;
      text-align: center;
      border-bottom: 1px dashed;
      border-radius: 0;
    }
    /* -------TOP-MENU-END------ */
    .banner-wrap {
        background-size: contain;
    } 
    .navbar ul li a{
        font-size: 13px;
    }
}
@media screen and (max-width:1024px) {
    .image-teaser-section {
        margin: 0 !important;
        padding: 0 !important;
    }
    .process {
        font-size: 15px;
    }
    .our_recruiters_section .owl-nav {
        margin: -9% 0 0 0;
    }
    .our_recruiters_section .owl-nav button {
        width: 30px;
        height: 30px;
    }
    .enquire-form-wrap {
        display: flex;
        margin-left: 77px;
        justify-content: flex-end;
    }
    .banner_box {
        background-image: url(../images/banner-img.webp);
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;
        background-color: #fff;
        /* padding: 25px 0; */
        min-height: 463px;
        margin: 85px 0 0 0;
        width: 100%;
    }
    .navbar, .apply-btn {
        display: none !important;
    }
    .menu-toggle {
        display: block !important;        
        background: #c12125;
        color: #fff;
        padding: 0 5px;
        border-radius: 8px;
        font-size: 22px;
        width: 3%;
        height: 25%;
    }
    .header-container{
        display: flex;
        justify-content: space-between;
        padding: 12px 20px ;
        flex-direction: row;
        align-items: center;
    }
    .spec-hero {
        padding: 360px 0 0 0;
    }
}

@media screen and (max-width:992px) {
 
.banner-content{
  max-width: 100%;
  text-align: center;
  margin: 0;
  padding: 0 40px;
}

.enquire-form .form-inner{
  width: 100%;
}
.admission-img{
    display: none;
}
.admission-img-wrap .process{
  top: 0;
  left: 0;
  position: relative;
  width: 33%;
  float: left;
  min-height: 110px;
  text-align: center;
  background-color: #f4f4f4;
  border: 5px solid #fff;
  padding: 34px 0 10px 0;
  border-radius: 10px;
}
/* .image-teaser {
    padding: 80px 0;
} */
    .program_offered .nav a {
        color: #000;
        background-color: #eee;
        border-radius: 30px;
    }
    .our_recruiters_section .owl-nav button {
        width: 40px;
        height: 40px;
    }
     .banner_box {
        background-image: url(../images/banner-mobile-img.webp) !important;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
        margin: 75px 0 0 0;
        min-height: 715px !important;
        background-color: #f9f9f9;
    }
    .enquire-form-wrap {
        margin: 0 0 0 0;
        /* margin-left: 77px; */
    }
    .enquire-form-wrap {
        display: flex;
        margin-left: 0;
        justify-content: space-around;
    }
    #mngmt-grad {
        max-height: 465px;
    }
    .spl-section{
        display: block;
    }
    .login-popup .close {
        position: absolute;
        top: 50px;
        left: 27%;
    }
    .login-popup .box {
        position: absolute;
        /* left: 50%;
        top: 320px !important; */
    }
    .spec-hero {
        padding: 291px 0 0 0;
    }
    .specialization-section {
        padding: 0px 20px 0px;
    }
    .recognition-section {
        padding: 0px 0;
    }
    .admission-steps {
        padding: 40px 20px;
    }
    .sit-bg-wrapper {
        padding: 0px 0;
    }
    .desktop-nav {
      display: none;
    }

    .menu-toggle {
      display: block;
    }

    .logo img {
      height: 60px;
    }
    .registration-btn{
        display: block;
        overflow: hidden;
        background-color: #c52f33;
        color: #fff;
        position: fixed !important;
        bottom: 0;
        z-index: 999999;
        margin-bottom: 0;
        width: 100%;
        min-height: auto;
        border-radius: 0;
        left: 0px;
        font-family: 'Montserrat';
        padding: 5px;
        font-weight: 600;
    }
    .registration-btn a{
        display: block;
        color: #fff;
        text-align: center;
        text-decoration: none;
        font-size: 15px;
        text-align: center;
        align-items: center;
        font-family: 'Montserrat';
    }   
    .registration-btn a:hover{
      color: #fff;
      text-decoration: none;
      font-family: 'Montserrat';
  }
  .made_by_text {
    margin-bottom: 30px;
    /* border-top: 1px solid #ddd; */
}
}

@media screen and (max-width:768px) {
    .image-teaser-section {
        margin: 0 !important;
        padding: 0 !important;
    }
    .pl-highlts{
        margin: 0;
    }
    .image-teaser-content p {
        max-width: 100%;
        padding: 0 10px;
        text-align: center;
        margin-bottom: 0px;
    }
    .image-teaser-section.right-bg {
        background: none;
        border-top: solid 3px #C2161C
    }
    h2 {
        font-size: 32px;
        line-height: 40px;
    }
    .table.process-table td,
    .table.process-table th {
        padding: 12px 10px;
    }
    .banner-content h1{
        font-size: 40px;
    }
    .admission-img-wrap .process{
        width: 100%;
        min-height: inherit;
        padding: 20px 0;
    }
    footer{
        text-align: center;
    }
    .image-teaser {
        /* padding: 80px 0 !important; */
        width: 50%;
        /* margin-bottom: 30px; */
    }
    .pl-highlts .section-heading {
        font-size: 31px;
    }
    .date-section {
        padding: 30px 0 0 0;
    }
    .our_recruiters_section .owl-nav {
        margin: -11% 0 0 0;
    }
    .our_recruiters_section {
        padding: 0px 0px 20px 0px;
    }
    .artboard .board_list:hover .board_name {
        margin-top: 0 !important;
        background-position: 100% 100%;
    }
    .artboard .board_list {
        margin: 25px auto 0 auto;
    }
    .pl-content {
        padding: 8px 15px;
    }
    .pl-content h3 {
        font-size: 17px;
    }
    .pl-content p {
        font-size: 15px;
    }
    .table-responsive>.table>tbody>tr>td, .table-responsive>.table>tbody>tr>th, .table-responsive>.table>tfoot>tr>td, .table-responsive>.table>tfoot>tr>th, .table-responsive>.table>thead>tr>td, .table-responsive>.table>thead>tr>th {
        /* white-space: nowrap; */
        white-space: normal !important;
    }
    .tabbing-contentbox p{
        margin-bottom: 0px;
    }
    .tabbing-contentbox .text-para{
        margin-bottom: 20px;
    }
    .bba-content .text-head, .bba-content .text-content {
        text-align: center;
        line-height: 25px;
    }
    .bba-content{
        margin-bottom: 20px;
    }
    .banner_box {
        background-image: url(../images/banner-mobile-img.webp) !important;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
        margin: 65px 0 0 0;
        min-height: 610px !important;
        background-color: #f9f9f9;
    }
    .wave-section {
        position: relative;
        padding: 50px 0 40px;
    }
    #mngmt-grad {
        max-height: 495px;
    }
    .eligibility-box {
        margin: 0 0;
    }
    #adm-process{
        padding-bottom: 20px;
    }
    .menu-toggle {
        display: block !important;        
        background: #c12125;
        color: #fff;
        padding: 0 5px;
        border-radius: 8px;
        font-size: 22px;
        width: 4%;
        height: 25%;
    }
    .login-popup .close {
        position: absolute;
        top: 50px;
        left: 19%;
    }
    .spec-hero h2 {
    font-size: 26px;
  }
  .close-menu{
    background: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 24px;
  }
  /* .timeline {
    flex-direction: column;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    width: 100%;
    margin-bottom: 30px;
  } */
}

@media screen and (max-width: 580px) {

a.logo {
    width: 84%;
}
.enquire-form{
    padding: 20px;
}
.highlight-img img{
    max-width: 100%;
}
.heighlight-wrap{
    padding: 30px 0px 20px 0px;
}
.banner-content{
    padding: 0 20px;
}
.banner-content h1{
  font-size: 28px;
  line-height: 40px;
}
.banner-content h2{
  font-size: 21px;
  padding: 20px;
  line-height: normal;
}
.heighlight-block{
    width: 100%;
}
.heighlight-block h6{
    font-size: 16px;
}
.footer-block {
  /* border-bottom: 1px dashed #6f6f6f; */
  margin: 0 0 20px 0;
}
.image-teaser {
    /* padding: 105px 0px !important; */
    width: 100%;
    /* margin-bottom: 30px; */
}
.banner-wrap {    
    padding: 230px 0 0 0 !important;
}

.pl-timeline::after {
    left: 31px;
}
.prog-right {
    left: 0%;
}
.prog-left::after, .prog-right::after{
    left: 3px;
    top: 20px;
}
/* .prog-right::after {
    left: -163px;
    top: 20px;
} */
.tm-container::before {
    left: 36px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}
.tm-container {
    width: 100%;
    padding-left: 46px;
    padding-right: 0px;
}
.pl-content h3 {
    font-size: 21px;
}
.pl-content p {
    font-size: 18px;
}
.tab-content {
    border-top: none;
    border-bottom: none;
}
.program_offered {
    margin-bottom: 0;
}
.date-section {
    padding: 0px 0;
}
.our_recruiters_section .owl-nav {
    margin: -18% 0 0 0;
}
.our_recruiters_section .owl-nav button {
    width: 25px;
    height: 25px;
}
 .banner_box {
    /* background-image: url(../images/banner-mob-img.webp); */
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-color: #f9f9f9;
    padding: 25px 0;
    min-height: 340px !important;
    width: 100%;
    margin: 90px 0 0 0;
}
/* .logo img {
    height: 15px;
    object-fit: contain;
} */
.header-container {
    padding: 12px 15px;
    align-items: center;
}
.wave-bg {
    height: 330px;
}
.wave-section {
    padding: 40px 0 40px;
}
#mngmt-grad {
    background-color: #9a0601;
    width: 100%;
    height: auto !important;
    padding: 30px 0 0 0;
    max-height: fit-content;
    margin-bottom: 0;
}
.menu-toggle {
    display: block !important;
    background: #c12125;
    color: #fff;
    padding: 0 5px;
    border-radius: 8px;
    font-size: 22px;
    width: 8%;
    height: 25%;
}
.mngmt-grad .pl-num-txt,  .mngmt-grad .pl-reimaging_text span{
    color: #fff;
}
.login-popup .close{
        position: absolute;
        top: 73px;
        left: 8%;
    }
    .login-popup .box {
        position: absolute;
        /* left: 50%;
        top: 421px !important;
        width: 435px !important; */
    }
     .banner-form-popup {
        /* max-width: 285px; */
        position: relative;
        top: 0px;
    }
    .spec-hero {
        padding: 0px 0 0 0;
    }
    .hide-desk{
      display: block;
    }
    .hide-mob{
      display: none;
    }
    .form-box{
      text-align: center;
    }
    .spec-hero {
      background-image: none;
    }
    .spec-hero h2 {
     font-size: 30px;
      /* font-weight: 700; */
      margin: 40px 20px 0 20px;
      color: #000;
      text-align: center;
      padding-bottom: 55px;
      font-family: 'Montserrat';
    }
   
 .specialization-section {
  padding: 0px 0 20px 0;
  background: #f9fbfd;
}
.placement-stats {
    padding: 30px 0;
}

.timeline-item {
  position: relative;
  background: #fff;
  padding: 30px 24px 30px 70px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  height: 100%;
  width: 100%;
  text-align: center;
}
.timeline-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #02244A;
  margin: 0;
}

/* Icon Dot */
.timeline-item .dot {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #C12125;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-item .dot img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
}

/* Hover */
.timeline-item:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
}

  .timeline-item {
    padding-left: 24px;
    text-align: center;
  }

  .timeline-item .dot {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto 12px;
  }
  .spec-hero-content h2 span {
      color: #eb2024;
  }
  }

@media screen and (max-width: 380px){
    .banner-wrap {
        padding: 200px 0 0 0 !important;
    }
    .pl-highlts .section-heading:after {
       
        margin: 158px auto 0 auto;
    }
    .banner_box {
        background-image: url(../images/banner-mob-img.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-color: #f9f9f9;
        /* padding: 25px 0; */
        margin: 65px 0 0 0;
        min-height: 300px !important;
        width: 100%;
    }
    .logo img {
        height: 40px;
        object-fit: contain;
    }
    .section-title {
      font-size: 30px;
    } 
}

@media screen and (max-width: 320px){
    .banner_box {
        background-image: url(../images/banner-mob-img.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-color: #f9f9f9;
        /* padding: 25px 0; */
        margin: 65px 0 0 0;
        min-height: 255px !important;
        width: 100%;
    }
    .logo img {
        height: 30px;
        object-fit: cover;
    }
    .menu-toggle {
        display: block !important;
        background: #c12125;
        color: #fff;
        padding: 0 5px;
        border-radius: 8px;
        font-size: 22px;
        width: 10%;
        height: 25%;
    }
    .spl-box h4 {
        font-size: 15px;
    }
    .form-mainbox .form-heading {
        font-size: 25px;
    }
    .wave-box h4 {
        font-size: 16px;
    }
    .element-title, .mngmt-grad .element-title  {
        font-size: 28px;
    }
}
