body {
    margin: 0;
    font-family: Roboto, Sans-serif;
}

/* HEADER */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #ffffff;
}

.logo {
    text-align: center;
}

.logo img {
    height: 150px;
}

.logo h2 {
    margin: 5px 0 0;
    color: #004b6b;
	font-weight:800;
}

/* TOP LINKS */
.top-links {
    text-align: right;
    font-size: 16px;
	line-height: 30px;
}

.top-links a {
    text-decoration: none;
    color: #333;
}

/* APPLY BUTTON */
.apply-btn {
    background: #f26522;
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
	color:#fff!important;
}

/* RED NOTICE BAR */
.notice-bar {
    background: red;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

.notice-bar span {
    background: yellow;
    color: black !IMPORTANT;
    padding: 5px 10px;
    margin-left: 10px;
}

/* SIDE FLOAT BUTTONS */
.side-buttons {
    position: fixed;
    right: 0;
    top: 40%;
    display: flex;
    flex-direction: column;
	z-index:99999;
}

.side-buttons a {
    background: #17a43b ;
    color: #fff;
    padding: 10px;
    margin: 2px 0;
    text-align: center;
    text-decoration: none;
    writing-mode: vertical-rl;
	    border-radius: 4px;
}

.side-buttons1 {
    background: #17a43b;
    color: #fff;
    padding: 10px;
    margin: 2px 0;
    text-align: center;
    text-decoration: none;
    writing-mode: vertical-rl;
    border-radius: 4px;
}
.offcanvas-start { width:320px!important; }
/* MENU ICON */
 .menu-icon  ul {
    list-style: none;
    padding: 0;
    width: 100%;
	font-size:16px!important;
  }

  .menu-icon li {
    position: relative;
    padding: 5px 10px;
    margin-bottom: 5px;
    cursor: pointer;
	list-style:none!important;
	font-size:16px!important;
	font-weight:500;
  }

  .menu-icon li:hover {
  }

  .menu-icon .submenu {
    display: none;
    margin-left: 16px;
  }

  .menu-icon .arrow {
    float: right;
    transition: transform 0.3s;
	font-size:12px;
  }

  .menu-icon .open > .arrow {
    transform: rotate(90deg);
	font-size:12px;
  }
/* Top Header */
.marqee {
    background: #fff;
    text-align: center;
    padding: 10px;
    color: red;
    font-weight: bold;
}

/* Hero Section */
.hero-bar {
    background: #5f837d;
    padding: 40px 20px;
    text-align: center;
}

.hero label {
    background: #ddd;
    padding: 10px 20px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Form Row */
.form-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

select {
    padding: 15px;
    border-radius: 10px;
    border: none;
    /* min-width: 250px; */
    /* font-size: 16px; */
    background: #e6d3a3;
}

button {
    padding: 15px 25px;
    background: #0d4d6c;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}

/* Logos Section */
.logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.logo-item img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.logo-item p {
    max-width: 150px;
    font-size: 14px;
}

/* Bottom Title */
.section-title {
    text-align: center;
    font-size: 40px;
    color: #1e5b6b;
    padding: 30px;
    font-weight: bold;
}

.slider {
                width: 100%;
                overflow: hidden;
                position: relative;
            }

            .slides {
                display: flex;
                transition: transform 0.6s ease-in-out;
            }

            .slide {
                min-width: 100%;
                position: relative;
            }

            .slide img {
                width: 100%;
                /* object-fit: cover; */
                height: 728px;
            }

            /* Overlay Content */
            .content {
                position: absolute;
                top: 50%;
                left: 8%;
                transform: translateY(-50%);
                color: white;
            }

            .content h1 {
                font-size: 50px;
                margin-bottom: 10px;
            }

            .content p {
                font-size: 20px;
            }

            /* Arrows */
            .prev,
            .next {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                font-size: 30px;
                color: white;
                background: rgba(0, 0, 0, 0.4);
                padding: 12px;
                cursor: pointer;
                border-radius: 50%;
            }

            .prev {
                left: 20px;
            }
            .next {
                right: 20px;
            }

            /* Dots */
            .dots {
                position: absolute;
                bottom: 25px;
                width: 100%;
                text-align: center;
            }

            .dots span {
                height: 12px;
                width: 12px;
                background: white;
                margin: 5px;
                display: inline-block;
                border-radius: 50%;
                opacity: 0.5;
                cursor: pointer;
            }

            .dots .active {
                opacity: 1;
            }
/* Top Nav */
.programs { background:#5f837d; }
.top-nav {
    text-align: center;
    color: #fff;
    padding: 20px;
    font-size: 18px;
}

/* Container */
.container-new {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    flex-wrap: wrap;
}

/* Card */
.container-new .card {
    background: #fff;
    width: 430px;
    border-radius: 12px;
    padding: 20px;
}

.container-new .card-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
	padding: 0px;
	background: #fff;
}
.container-new .imagediv{
		width:100%;
		height:250px;
		overflow:hidden;
}
.container-new  .card-header img {
    width: 72px;
    height: 72px;
}

.container-new .card-title {
    font-size: 22px;
    font-weight: bold;
}

.container-new  .card-sub {
    color: gray;
    margin: 10px 0;
}

/* Image */
.container-new  .card img.banner {
    width: 100%;
    border-radius: 6px;
    margin-top: 10px;
}

/* Tag */
.tag {
    background: #ff7a00;
    color: #fff;
    display: inline-block;
    padding: 5px 10px;
    font-size: 14px;
	width: fit-content;
    margin-top: -16px;
}

/* Description */
.desc {
    margin: 15px 0;
    font-size: 16px;
	font-weight: bold;
}

/* Buttons */
.btns {
    display: flex;
    gap: 10px;
}

.btn {
    border-radius: 5px 5px 5px 5px;
    padding: 8px 11px;
    border: none;
    cursor: pointer;
	font-weight:bold;
	font-size:16px;
}

.btn-outline {
    border: 1px solid #ff7a00;
    background: transparent;
    color: #ff7a00;
}

.btn-primary {
    background: #ff7a00;
    color: #fff;
}

.btn-dark {
    background: #fff!important;
    color: #212121!important;
    font-size: 24px;
}
 .postgraduate  {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
      text-align: center;
    }

    .postgraduate h1 {
      color: #1f5c6b;
      font-size: 40px;
      margin-bottom: 50px;
    }

    .postgraduate .cards {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .postgraduate .card {
      flex: 1;
      min-width: 250px;
      padding: 30px 20px;
      border-radius: 12px;
      color: #fff;
      font-size: 20px;
      font-weight: bold;
    }

    .ai {
      background-color: #5b8db8;
    }

    .ba {
      background-color: #e8772e;
    }

    .ds {
      background-color: #6fa844;
    }

    .specialization {
      margin-left: 20px;
      font-size: 20px;
      font-weight: 600;
      color: #333;
      position: relative;
    }

    .specialization::before {
      content: "";
      position: absolute;
      left: -15px;
      top: 0;
      height: 100%;
      width: 4px;
      background-color: #e8772e;
      border-radius: 2px;
    }

.section-title {
            text-align: center;
            font-weight: 700;
            color: #1f4e5f;
            margin-bottom: 40px;
        }

        .team-card {
            background: #fff;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            text-align: center;
            transition: 0.3s;
        }

        .team-card:hover {
            transform: translateY(-5px);
        }

        .team-card img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .team-name {
                font-size: 22px;
    line-height: 32px;
    font-weight: bold;
    text-align: center;
    color: #092D53;
	padding: 20px 0px 30px; 
        }

.senction-head{
    color: #094f6c;
    font-family: Roboto, Sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
}
.wpcf7-submit {
    background: #094F6D;
    border: 1px solid #000000;
    border-radius: 8px;
    align-items: center;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    color: #F9E6C4;
    padding: 8px 16px;
}
.searchfrm select {
    background-color: #F9E6C4;
    color: #051B2F;
    font-style: normal;
    border-radius: 8px;
    padding: 10px 15px 10px 15px !important;
    font-size: 20px;
    display: inline-block;
    margin-right: 10px;
    line-height: 36px;
}

#news-slider {
  margin-top: 0px;
}
.post-slide {
  background: #fff;
  margin: 20px 15px 20px;
  border-radius: 15px;
  padding-top: 10px;
}
.post-slide .post-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0px;
}
.post-slide .post-img img {
  width: 100%;
  height: auto;
  transform: scale(1, 1);
  transition: transform 0.2s linear;
}

.post-slide .over-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: linear-gradient(
    -45deg,
    rgba(6, 190, 244, 0.75) 0%,
    rgba(45, 112, 253, 0.6) 100%
  );
  transition: all 0.5s linear;
}
.post-slide:hover .over-layer {
  opacity: 1;
  text-decoration: none;
}
.post-slide .over-layer i {
  position: relative;
  top: 45%;
  text-align: center;
  display: block;
  color: #fff;
  font-size: 25px;
}
.post-slide .post-content {
  background: #fff;
  padding: 2px 20px 40px;
  border-radius: 15px;
}
.post-slide .post-title {
  font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    text-align: center;
    color: #092d53;
	padding:20px 0px;
}
.post-slide .post-title a {
  font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    text-align: center;
    color: #092d53;
	text-decoration: none;
	padding:20px 0px;
}

.post-slide .post-title a:hover {
  text-decoration: none;
  color: #3498db;
}
.post-slide .post-description {
  line-height: 24px;
  color: #808080;
  margin-bottom: 25px;
}
.post-slide .post-date {
  color: #a9a9a9;
  font-size: 14px;
}
.post-slide .post-date i {
  font-size: 20px;
  margin-right: 8px;
  color: #cfdace;
}
.post-slide .read-more {
 font-size: 14px;
    font-weight: 700;
    color: #43baff;
	display: flex;
    justify-content: center;
}

.title-text { color: #094f6c;
    font-family: Roboto, Sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
	background-color:#f3f3f3;
	margin-bottom: 0px!important;
}

.owl-controls .owl-buttons {
  text-align: center;
  margin-top: 20px;
}
.owl-controls .owl-buttons .owl-prev {
  position: absolute;
  top: 50%;
  left: 15px;
  padding: 0 18px 0 15px;
  border-radius: 50px;
  box-shadow: 3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-next {
  position: absolute;
  top: 50%;
  right: 15px;
  padding: 0 15px 0 18px;
  border-radius: 50px;
  box-shadow: -3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #333;
  font-size: 30px;
}
.owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
}



   .contact-section {
      background: #f2f2f2;
      padding: 40px 0;
      min-height: 100vh;
    }

    .vit-logo img {
      max-width: 130px;
    }

    .contact-box {
      max-width: 600px;
      margin: auto;
      background: transparent;
    }

    .section-title {
      font-size: 34px;
      font-weight: 700;
      color: #0a4d6b;
      margin-top: 30px;
      margin-bottom: 25px;
    }

    .info-title {
      font-weight: 700;
      font-size: 18px;
      color: #000;
    }

    .info-text {
      font-size: 16px;
      color: #000;
      margin-bottom: 8px;
    }

    .icon-box {
      font-size: 35px;
      color: #0a4d6b;
      margin-right: 15px;
    }

    .email-link {
      color: #7a2cbf;
      text-decoration: none;
      font-weight: 600;
    }

    .email-link:hover {
      text-decoration: underline;
    }

    .social-icons a {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      margin-right: 10px;
      text-decoration: none;
      color: #fff;
    }

    .social-icons a.instagram { background: #111; }
    .social-icons a.threads { background: #000; }
    .social-icons a.facebook { background: #3b5998; }
    .social-icons a.linkedin { background: #0077b5; }

    .footer-bar {
      background: #e76b1c;
      color: #fff;
      text-align: left;
      padding: 18px 10px;
      font-size: 16px;
	  padding-left:110px;
    }

.headspace { width:200px; }


/* Container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Main text */
.dropdown-btn {
  cursor: pointer;
}

/* Dropdown box */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #f5f5f5;
  min-width: 150px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links */
.dropdown-content a {
  display: block;
  padding: opx 5px;
  text-decoration: none;
  color: #333;
  text-align:left;
}

.dropdown-content a:hover {
  text-align:left; 
}

/* Show on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.thumbSwiper {
      width: 100%;
      height: 220px;
    }

    .thumbSwiper .swiper-slide {
      border-radius: 0px;
      overflow: hidden;
      cursor: pointer;
    }

    .thumbSwiper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
	
	
	.thumbSwiper1 {
      width: 100%;
      height: 420px;
    }

    .thumbSwiper1 .swiper-slide {
      border-radius: 0px;
      overflow: hidden;
      cursor: pointer;
	  width:420px!important;
    }

    .thumbSwiper1 img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
	
	
	.swiper-button-next, .swiper-button-prev {
    ::slotted(svg), svg {
        height: 20px;
        fill: rgb(255 255 255)!important;
		}
		
	}	


		.offcanvas-body ul {
      padding-left: 0;
      list-style: none;
    }

    .offcanvas-body ul li {
      padding: 12px 0;
      font-size: 18px;
      font-weight: 500;
    }

    .offcanvas-body ul li a {
      text-decoration: none;
      color: #000;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .submenu-arrow {
      font-size: 16px;
      color: #888;
    }
	.btn-dark1 {
    background: #fff!important;
    color: #212121!important;
    font-size: 24px;
}

















@media only screen and (max-width: 1280px) {
  .post-slide .post-content {
    padding: 0px 15px 25px 15px;
  }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1390px;
    }
}


    @media (max-width: 768px) {
      .cards {
        flex-direction: column;
      }

      .specialization {
        margin-left: 0;
        margin-top: 20px;
      }

      .specialization::before {
        display: none;
      }
    }
	

/* Responsive */
@media(max-width:768px){
    .container {
        flex-direction: column;
        align-items: center;
    }
	.top-links {
    text-align: center;
	}
	.top-header {
    display: flex;
    justify-content: space-between;
    align-items: unset;
    padding: 15px 30px;
    background: #ffffff;
    flex-direction: column;
}
.logo {
    text-align: center;
    margin-top: -85px;
}
.searchfrm select {
	width: 345px;
    margin-bottom: 10px;
}
	
}

.extraplan {
    background-color: #fff;
    width: 350px;
    padding: 5px 10px;
    margin: 10px auto;
}

div#form {
    width: 30% !important;
    position: absolute;
    top: 57%;
    right: 65px;
}
.notice-bar span a{
    color:inherit;
    text-decoration:none;
}