/* =========================
   SKD GLOBAL RESET
========================= */
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
}


@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1240px;
    }
}

/* =========================
   SKD HERO SECTION
========================= */
.skd-hero-section {
    position: relative;
background: linear-gradient(135deg, rgb(1 23 47 / 96%) 40%, rgba(255, 156, 0, 0.75) 129%), url(../img/skdu-full-image.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 20px 0;
}


/* Top Logos */
.skd-top-logos img {
    max-height: 115px;
    border: 1px solid #fff;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 25px;
}

/* Admission Badge */
.skd-admission-badge {
  display: inline-block;
    background: #ffffff;
    color: #0a1c64;
    padding: 0px 28px;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 20px;
}

/* Main Title */
.skd-main-title {
    font-size: 41px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* Course List */
.skd-course-list ul {
    list-style: none;
    padding: 0;
}

.skd-course-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 16px;
}

.skd-course-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #ffd400;
    font-size: 12px;
}

/* Package Box */
.skd-package-box {
    margin-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 20px;
}

.skd-package-label {
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.skd-package-box h3 {
    font-size: 70px;
    font-weight: 800;
    margin: 0;
}

.skd-package-box h3 small {
    font-size: 22px;
    font-weight: 600;
}

.skd-package-box p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Right Logos */
.skd-right-logos img {
    max-height: 60px;
    margin-left: 20px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .skd-main-title {
        font-size: 50px;
    }

    .skd-right-logos {
        text-align: center;
        margin-top: 30px;
    }

    .skd-right-logos img {
        margin: 0 10px;
    }
}


/* =========================
   APPLY NOW SIDEBAR
========================= */

/* Vertical APPLY NOW button */
/* APPLY NOW BUTTON DEFAULT (form closed) */
/* Hide by default (desktop + tablet) */
@keyframes blinkBg {
    0%   { background-color: #002147; }
    50%  { background-color: #fdab20; }
    100% { background-color: #002147; }
}

.apply-now-btn {
    position: fixed;
    right: 30px;
    bottom: 10%;
    background: #002147;
    color: #fff;
    padding: 10px 15px;
    text-orientation: mixed;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
	border-radius:10px;
	
    transition: right 0.4s ease;
    animation: blinkBg 1.2s infinite ease-in-out;
}

/* Show ONLY on mobile */
@media (max-width: 768px) {
    .apply-now-btn {
        display: block;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        background: #002147;
        color: #fff;
		font-weight:400;
        font-size: 18px;
        text-align: center;
        padding: 18px 10px;
        cursor: pointer;
		border-radius:0px;
        z-index: 10000;
        writing-mode: horizontal-tb;
    }
	
	@keyframes blinkColor {
    0%   { color: #ffffff; }
    50%  { color: #fdab20; }
    100% { color: #ffffff; }
}

.blink-text {
    animation: blinkColor 1s infinite;
}

.apply-now-btn span{
	border:1px solid #fff;
	padding:10px 94px;
}
}

/* When form is open */
.apply-now-btn.form-open {
    right: 346px;
}


.apply-form.active {
    right: 0;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    background: #ffffff;
    color: #002147;
    border-radius: 50%;
    border: none;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header */
.form-header {
    background: #fff;
    color: #002147;
    text-align: center;
    font-weight: bold;
    padding: 12px;
    margin-bottom: 15px;
}

/* Form */
.apply-form form {
    background: #fff;
    padding: 15px;
}

.apply-form input,
.apply-form select {
    width: 100%;
    padding: 6px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
}

/* Mobile number group */
.mobile-group {
    display: flex;
    gap: 5px;
}

.mobile-group select {
    width: 30%;
}

.mobile-group input {
    width: 70%;
}

/* Two column */
.two-col {
    display: flex;
    gap: 8px;
}

/* Captcha */
.captcha {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.captcha span {
    background: #f0f0f0;
    padding: 8px 10px;
    font-weight: bold;
}

/* Checkbox */
.checkbox {
    font-size: 13px;
    margin-bottom: 12px;
    display: block;
}

/* Register button */
.register-btn {
    width: 100%;
    background: #002147;
    color: #fff;
    padding: 12px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

/* Existing user */
.existing-user {
    text-align: center;
    color: #1a4aa2;
    font-weight: bold;
    margin-top: 10px;
    cursor: pointer;
}


.apply-form input::placeholder,
.apply-form textarea::placeholder,
.apply-form select::placeholder {
    font-size: 13px;
    color: #666;
}

@media (max-width: 768px) {
    .apply-form input::placeholder {
        font-size: 12px;
    }
}

.apply-form input::-webkit-input-placeholder {
    font-size: 13px;
}

.apply-form input::-moz-placeholder {
    font-size: 13px;
}

.apply-form input:-ms-input-placeholder {
    font-size: 13px;
}

.apply-form input::placeholder {
    font-size: 13px;
}








/* =========================
   WHY B.TECH SECTION
========================= */

.skd-why-btech-section {
    background: #f2f2f2;
    padding-top: 60px;
	padding-bottom: 60px;
}

/* Header */
.skd-why-header h2 {
    color: #002147;
    font-weight: 800;
    line-height: 42px;
	font-size:35px;
	
}

.skd-why-header h2 span {
    color: #01172f;
}

.skd-why-header p {
    max-width: 872px;
    margin-top: 15px;
    color: #000000;
   line-height: 16px;
    font-size: 13px;
}

/* Labs */
.skd-labs-section {
    margin-top: 40px;
}

.skd-labs-title {
    color: #e11d2e;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Card */
.skd-lab-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 22px 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.skd-lab-card:hover{
	background: #4fb6dc;
    color: #ffffff;
}

/* Icon */
.skd-lab-icon {
    font-size: 12px;
    display: block;
    margin-bottom: 12px;
    color: #9aa3ab;
}

/* Text */
.skd-lab-card p {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.skd-lab-card p:hover{
color: #fff;	
}

/* Hover */
.skd-lab-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* Active / Highlighted Card */
.skd-lab-card.skd-active {
    background: #4fb6dc;
    color: #ffffff;
}

.skd-lab-card.skd-active p,
.skd-lab-card.skd-active .skd-lab-icon {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .skd-lab-icon {
        font-size: 28px;
    }

    .skd-lab-card p {
        font-size: 12px;
    }
}

/* Feature Bar */
.skd-feature-bar {
    display: flex;
    margin-top: 50px;
}

.skd-feature-item {
    flex: 1;
    padding: 25px;
    color: #ffffff;
    text-align: center;
}

.skd-feature-item h5 {
    font-weight: 800;
    margin-bottom: -4px;
    font-size: 43px;
}

/* Mobile */
@media (max-width: 768px) {
  .skd-feature-item h5 {
    font-size: 31px;
  }
}

.skd-feature-item p {
    margin: 0;
    font-size: 14px;
}

/* Colors */
.skd-feature-dark {
    background: #09539c;
}

.skd-feature-mid {
    background: #fea808;
}

.skd-feature-light {
   background: #09539c;
}

/* Responsive */
@media (max-width: 768px) {
    .skd-feature-bar {
        flex-direction: column;
    }

    .skd-why-header h2 {
        font-size: 26px;
		line-height: 29px;
    }
}









/* =========================
   GLOBAL IMMERSION PROGRAM
========================= */

.gip-section {
    padding: 60px 0;
    background: #ffffff;
}

.gip-title {
    font-size: 32px;
    font-weight: 800;
    color:#00a0df;
    margin-bottom: 15px;
}

.gip-dark {
    color: #01172f;
}

.gip-globe {
    font-size: 30px;
    margin: 0 3px;
}

.gip-desc {
    max-width: 900px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.4;
    color: #000000;
}

/* Cards */
.gip-card {
    padding: 25px 20px;
    height: 100%;
    border: 1px solid #00a0df24;
    border-radius: 10px;
}

.gip-icon {
    font-size: 38px;
    margin-bottom: 15px;
    color: #01172f;
}

.gip-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0b3c78;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.gip-card p {
font-size: 14px;
    color: #333;
    line-height: 1.4;
}

/* Mobile */
@media (max-width: 768px) {
    .gip-title {
        font-size: 26px;
    }

    .gip-desc {
        font-size: 14px;
    }
}




/* =========================
   FUTURISTIC LABS
========================= */

.futuristic-labs {
    background: #f4f4f4;
    padding: 40px 0;
}

.labs-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.labs-bar {
    width: 6px;
    height: 24px;
    background: #007bff;
}

.labs-header h4 {
    margin: 0;
    font-weight: 700;
    color: #fdab20;
    letter-spacing: 0.5px;
}

/* Lab Item */
.lab-item {
    display: flex;
    align-items: center;
    gap: 14px;
}


.lab-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #0a4fa3, #00b4ff);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.lab-icon img{
	width:67px;
}

.lab-item p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    line-height: 1.4;
}

/* Mobile */
@media (max-width: 576px) {
    .lab-item {
        gap: 12px;
    }

    .lab-icon {
        width: 42px;
        height: 42px;
    }
}




/* ============================
   PROGRAMS OFFERED
============================ */

.skd-programs-section {
background: linear-gradient(to right, #ffffffeb 60%, rgba(255, 255, 255, 0.85)), url(../img/skdu-full-image.png) right center / cover no-repeat;
    margin-top: -20px;

}

/* Title */
.skd-programs-title-wrap {
    text-align: center;
}

.skd-programs-title {
display: inline-block;
    background: #002147;
    color: #fff;
    padding: 11px 47px;
    border-radius: 50px;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: -48px;
}

/* Mobile */
@media (max-width: 768px) {
  .skd-programs-title {
    font-size: 16px;
  }
}


/* Program Box */
.skd-program-box {
    padding: 20px;
}

/* Header */
.skd-program-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.skd-program-icon {
    width: 46px;
    height: 46px;
    background: #fdad1b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.skd-program-icon img{
	height:35px;
}

.skd-program-head h4 {
    margin: 0;
    font-weight: 700;
}

.skd-program-head h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Badge */
.skd-badge {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    margin: 12px 0;
}

/* List */
.skd-program-list {
    padding-left: 16px;
    margin: 0;
}

.skd-program-list li {
    font-size: 14px;
    line-height: 1.7;
    color: #111;
}

/* Responsive */
@media (max-width: 991px) {
    .skd-programs-section {
        background: #fff;
    }
}





/* =========================
   BITS WILP IMPACT
========================= */

.skd-impact-section {
    background: #f3f3f3;
    padding: 70px 0;
}

/* Mobile */
@media (max-width: 768px) {
  .skd-impact-section {
    padding: 31px 0;
  }
}

.skd-impact-intro {
    max-width: 980px;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #1a2a7a;
}

.skd-impact-title {
    font-weight: 800;
    color: #1a2a7a;
    margin-top: 20px;
}

.skd-impact-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #1a2a7a;
    margin-bottom: 10px;
}

/* Stats */
.skd-impact-stats {
    border-top: 1px solid #ddd;
    padding-top: 40px;
}

.skd-impact-box {
    padding: 10px 20px;
}

.skd-impact-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1a2a7a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.skd-impact-icon img{
	 width: 80px;
    height: 80px;
}

.skd-impact-box h5 {
    font-size: 41px;
    font-weight: 700;
    color: #1a2a7a;
    margin-bottom: 5px;
}

.skd-impact-box p {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

/* Mobile */
@media (max-width: 767px) {
    .skd-impact-subtitle {
        font-size: 18px;
    }

    .skd-impact-icon {
        width: 70px;
        height: 70px;
    }
}



/* ===========================
   STUDENT ACHIEVEMENTS
=========================== */

.skd-achievements-section {
    background: #ffffff;
    padding: 80px 0;
}

.skd-achievements-title {
    text-align: center;
    font-weight: 800;
    color: #01172f;
    letter-spacing: 1px;
}

/* Card */
.skd-achievement-card {
    position: relative;
    background: #fff;
    border: 3px solid #0b2a6f;
    border-radius: 28px;
    padding: 40px 25px 35px;
    text-align: center;
    height: 100%;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Star */
.skd-star {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 42px;
    color: #f4c430;
}

/* Image */
.skd-student-img {
    width: 165px;
    height: 165px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 0px solid #01172f;
    overflow: hidden;
}

.skd-student-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text */
.skd-achievement-card h4 {
    font-weight: 700;
    color: #0b2a6f;
    margin-bottom: 5px;
}

.skd-achievement-card h6 {
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.skd-achievement-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .skd-star {
        top: -15px;
        left: -10px;
        font-size: 36px;
    }
}



/* ===========================
   RECOGNITIONS & APPROVALS
=========================== */

.skd-recognition-section {
    background: #ffffff;
    padding: 70px 0;
}

/* Mobile */
@media (max-width: 768px) {
 .skd-recognition-section {
    padding: 10px 0;
}
}

/* Header */
.skd-recognition-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.skd-recognition-header h2 {
    margin: 0;
    font-weight: 800;
    letter-spacing: 1px;
}

.skd-line {
    flex: 1;
    height: 2px;
    background: #cfcfcf;
}

/* Colors */
.text-red {
    color: #fba919;
}

.text-blue {
    color: #0b2a6f;
}

/* Logos */
.skd-recognition-logos {
    margin-bottom: 40px;
}

.skd-rec-logo {
max-width: 161px;
    max-height: 166px;
    object-fit: contain;
}

/* Divider lines */
.skd-divider {
    position: relative;
}

.skd-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #dcdcdc;
}

/* Footer Text */
.skd-recognition-footer {
    text-align: center;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 30px;
}


/* Mobile */
@media (max-width: 768px) {
  .skd-recognition-footer {
    font-size: 18px;
  }
}

/* Responsive */
@media (max-width: 767px) {
    .skd-recognition-header {
        flex-direction: column;
		text-align: center;
    }

    .skd-line {
        width: 60px;
    }

    .skd-divider::before {
        display: none;
    }

    .skd-rec-logo {
        margin-bottom: 25px;
    }
}


.faq-section {
  background: url("../img/faq.jpg") center/cover no-repeat;
  padding: 10px 0;
  position: relative;
}

.faq-overlay {
  padding: 60px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b2c6a;
  margin-bottom: 30px;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-title {
    font-size: 29px;
  }
}

/* Tabs */
.faq-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 10px 25px;
  border-radius: 25px;
  border: 1px solid #0b2c6a;
  background: transparent;
  color: #0b2c6a;
  font-weight: 600;
  cursor: pointer;
}

.tab-btn.active {
  background: #0b2c6a;
  color: #fff;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
    .faq-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .faq-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        flex-shrink: 0;
    }
}

/* FAQ Content */
.faq-content {
  display: none;
}

.faq-content.active {
  display: block;
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 18px 0;
  cursor: pointer;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #0b2c6a;
  position: relative;
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 16px;
	    font-weight: 400;
  }
  
  .faq-answer{
	  font-size: 12px;
	      font-weight: 400;
  }
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: #000000;
    line-height: 1.2;
    font-size: 14px;
}

.faq-item.active .faq-answer {
  display: block;
}



.admission-banner {
  background: #0b2c6a;
  padding: 40px 20px;
}

.admission-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admission-content {
  text-align: center;
  flex: 1;
}

.admission-content h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.apply-btn {
  display: inline-block;
  color: #fff;
  padding: 10px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.apply-btn:hover {
  background: #062b63;
}

.admission-logo img {
  max-height: 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .admission-inner {
    flex-direction: column;
    gap: 20px;
  }

  .admission-content h2 {
    font-size: 26px;
  }
}


.footer-copy {
  text-align: center;
  padding: 5px 0;
}

.footer-copy p {
  margin: 0;
}


.skd-program-wrapper{
    background: linear-gradient(135deg, #f4f9ff, #fffbe6);
    padding: 60px 20px;
    border-radius: 16px;
}

.skd-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:#0b3c8a;
    margin-bottom:30px;
}

.skd-program-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

.skd-program-table thead{
    background: linear-gradient(90deg, #0b3c8a, #1d4783);
    color: #fff;
}

.skd-program-table th{
    padding:14px;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:0.5px;
}

.skd-program-table td{
    padding:14px;
    font-size:14.5px;
    color:#333;
    border-bottom:1px solid #eee;
}

.skd-program-table tbody tr:nth-child(even){
    background:#f9fbff;
}

.skd-program-table tbody tr:hover{
    background:#fff6d1;
    transition:0.3s;
}

.skd-program-table td:nth-child(1){
    font-weight:600;
    color:#0b3c8a;
}

.skd-program-table td:nth-child(3){
    font-weight:600;
    color:#000;
}




/* ===== HERO IMAGE ===== */

.camsect{
	    background-color: #05176d;
		padding:13px 0px;
}


.campba{
	background-color:#fff;
	border-radius:20px 20px 0px 0px;
}
.campus-hero {
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #fff;
}
.campus-hero img {
    width: 100%;
    height: auto;
}

/* ===== TABS ===== */
.campus-tabs .nav-link {
    color: #000;
    font-weight: 600;
}
.campus-tabs .nav-link.active {
    background: #0b3b8c;
    color: #fff;
    border-radius: 0;
}

/* ===== IMAGE GRID ===== */
.campus-gallery img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #0b3b8c;
    transition: transform 0.3s ease;
}
.campus-gallery img:hover {
    transform: scale(1.05);
}





.placements-section {
    position: relative;
    padding-top: 100px;
    background: #f3f3f3;
    overflow: hidden;
}



/* ===== DECORATIVE LINES ===== */
.placements-section::before,
.placements-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: url('../img/counter_shape01.png') no-repeat center/contain;
    opacity: 0.25;
}
.placements-section::before {
    top: -50px;
    left: -80px;
}
.placements-section::after {
    bottom: -50px;
    right: -80px;
    transform: rotate(180deg);
}



/* ===== GRADIENT CIRCLE (TOP RIGHT) ===== */
.placements-section .gradient-circle {
    position: absolute;
    top: 60px;
    right: 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(
        circle at top left,
        #9cc7ff,
        #cde6ff,
        #ffffff
    );
    opacity: 0.9;
    animation: floatUpDown 6s ease-in-out infinite;
    z-index: 0;
}

/* ===== ANIMATION ===== */
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0);
    }
}

/* ===== HEADING ===== */
.placements-title small {
    color: #f6a300;
    font-weight: 600;
    letter-spacing: 1px;
}
.placements-title h2 {
    color: #141b6a;
    font-weight: 700;
    margin-top: 10px;
}

/* ===== STATS ===== */
.placement-box {
    text-align: center;
}
.placement-box img {
    width: 90px;
    margin-bottom:5px;
}
.placement-number {
    font-size: 38px;
    font-weight: 700;
    color: #141b6a;
}

.placement-number::after {
    content: "+";
    margin-left: 4px;
    font-weight: 700;
    color: #141b6a; /* same as number */
}

.placement-text {
    font-size: 16px;
    color: #444;
}



.journe{
	padding-top:30px;
	padding-bottom:30px;
}

.journe img{
	width:100%;
}


.desktop-journey {
    display: block;
}
.mobile-journey {
    display: none;
}

@media (max-width: 768px) {
    .desktop-journey {
        display: none;
    }
    .mobile-journey {
        display: block;
    }
}


.why-skd-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.why-skd-heading h2 {
    margin: 0;
}

.plane-img {
    max-width: 120px;   /* adjust as needed */
}








section#programHighlights {
    background: #00274c;
    padding-top: 50px !important;
}

h2.heading {
    font-size: 38px;
    color: #fff;
    font-weight: 500;
    line-height: 1.2em
}

h2.heading:after {
    content: '';
    background: #fff!important;
    display: block;
    width: 52px;
    height: 5px;
    margin: 0;
    position: relative;
    top: 13px;
    margin-bottom: 20px
}

h2.heading.one {
    color: #000
}

h2.heading.one:after {
    background: #000!important
}

section#aboutIISc h2.heading:after,section#testimonials h2.heading:after,section#highImpact h2.heading:after,section#eligibility h2.heading:after,section#outcomes h2.heading:after,section#careerAccelerator h2.heading:after,section#feeDetails h2.heading:after {
    display: none
}

h2.heading span {
    color: #053338
}

.unique-reasons ul li {
    position: relative;
    display: inline-block;
    width: 48%;
    font-size: 17px;
    margin-bottom: 26px;
    padding: 30px 40px;
    border-radius: 10px;
    min-height: 255px;
    box-shadow: 2px 2px 15px #0000001c;
    vertical-align: top;
    background: #00163873;
    margin-right: 10px;
    color: #fff;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .unique-reasons ul li  {
        width: 100%
    }
}



.unique-reasons ul li.one {
    width: 98%;
    min-height: 180px;
}

.unique-reasons ul li img {
    position: absolute;
    right: 10px;
    top: 74%;
    transform: translateY(-50%);
    height: 99px;
}

.unique-reasons ul li strong {
    font-size: 33px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #feac0b
}



.program-form {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 25px #00000012;
    margin-top: 0
}

.program-form form {
    padding: 0 15px 40px
}

.program-form h4 {
    font-size: 20px;
    background: #fff;
    border-radius: 10px 10px 0 0;
    color: #000;
    line-height: 1em;
    text-align: center;
    font-weight: 600;
}

.program-form h4 span.trigger-bottom {
    background: #01233C;
    padding: 2px 20px 3px 0;
    color: #fff;
    border-radius: 20px
}

.program-form h4 span.trigger-bottom a {
    color: #fff;
    font-weight: 400;
    font-size: 14px
}

.program-form h4 span.trigger-bottom svg {
    background: #DC5500;
    padding: 8px;
    border-radius: 50px;
    position: relative;
    left: -5px
}

.program-form h4 span.trigger-bottom svg path {
    fill: #fff
}

.form-header {
    position: relative;
}

.form-header h3 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 6px;
}

.form-header h3.cohort-trigger span {
    position: absolute;
    left: 15% ;
    right: 15%;
    background: #dc5500;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    padding: 2px 10px;
    border-radius: 20px;
    top: -40px;
}


form#TalentSprintAutonomousSystems .with-icon {
    display: block;
    padding: 1px 5px;
    vertical-align: top;
    margin-bottom: 2px;
    position: relative;
    padding-left: 0;
    width: 100%
}

.autocomplete {
    position: relative;
    display: inline-block
}

.autocomplete-active {
    color: #fff;
    background: #348adc
}

.with-icon .floating-label {
    font-size: 12px;
    color: #848484;
    position: absolute;
    pointer-events: none;
    top: 12px;
    left: 12px;
    transition: all .1s ease
}

.with-icon label {
    font-weight: 400
}

.with-icon input:focus~.floating-label,.with-icon input:not(:focus):valid~.floating-label {
    top: -18px;
    font-size: 13px;
    opacity: 1;
    color: #404040;
    height: 20px
}

.with-icon input:invalid:not(:focus)~.floating-label {
    top: -10px!important;
    background: #e6e6e6;
    padding: 0 10px;
    border-radius: 50px;
    color: #525252;
    height: 25px
}

.with-icon span.floating-label.mob {
    top: -15px;
    font-size: 12px;
    opacity: 1;
    color: #404040;
    height: 20px
}

.form-inner {
    padding: 40px 40px 60px;
    background: #ebf1f3;
    border-radius: 14px
}

form#TalentSprintAutonomousSystems .with-icon.full,form#TalentSprintAutonomousSystems .with-icon.full,form#TalentSprintAutonomousSystems .with-icon.full {
    width: 96%!important
}

h2.form-heading {
    padding-bottom: 60px;
    position: relative;
    font-size: 28px;
    line-height: 130%
}

p.highlights-quote {
    color: #fff;
    font-size: 17px;
}
h2.form-heading:after {
    content: "";
    background: #f38600;
    position: absolute;
    height: 4px;
    width: 45px;
    bottom: 43px;
    text-align: left;
    margin: auto;
    left: 0;
    right: 0;
    margin-left: 0
}

form#TalentSprintAutonomousSystems .with-icon input[type=file],form#TalentSprintAutonomousSystems .with-icon input[type=file],form#TalentSprintAutonomousSystems .with-icon input[type=file] {
    padding: 10px 0
}

button#form-submit-button {
    background: #09A965;
    padding: 8px 36px;
    color: #fff;
    border: 1px solid transparent;
    width: 100%;
    font-size: 18px;
    font-weight: 500
}

p.terms-condition-label input[type=checkbox] {
    float: left;
    margin-right: 6px;
    margin-top: 2px;
    margin-bottom: 28px
}

p.terms-condition-label label {
    position: relative;
    top: -2px;
    font-size: 11px;
    display: inherit;
    line-height: 1.4;
    font-weight: 400
}

input[type=text]:disabled {
    background: #dedede!important;
    border: 2px solid #dedede!important;
    color: #000
}

input#Phone {
    padding-left: 50px!important
}


input:-webkit-autofill,input:-webkit-autofill:hover,input:-webkit-autofill:focus,textarea:-webkit-autofill,textarea:-webkit-autofill:hover,textarea:-webkit-autofill:focus,select:-webkit-autofill,select:-webkit-autofill:hover,select:-webkit-autofill:focus {
    border-color: #c21734;
    transition: background-color 5000s ease-in-out 0
}

form#TalentSprintAutonomousSystems .with-icon input,form#TalentSprintAutonomousSystems .with-icon select,form#TalentSprintAutonomousSystems .with-icon input,form#TalentSprintAutonomousSystems .with-icon select,form#TalentSprintAutonomousSystems .with-icon input,form#TalentSprintAutonomousSystems .with-icon select {
    padding: 5px 15px;
    transition: all .3s ease;
    font-size: 13px;
    color: #000;
    margin-bottom: 4px;
    border-radius: 4px;
    background-color: #fff;
    width: 100%;
    outline: 0;
    display: block;
    border: 1px solid #cacaca;
    height: 40px
}

.pay-application-fee-sec {
    text-align: left
}

.pay-application-fee-sec .submit-btn button#form-submit-button {
    width: 95%
}

.pay-application-fee-sec form#TalentSprintAutonomousSystems .with-icon.full-width,.pay-application-fee-sec form#TalentSprintAutonomousSystems .with-icon.full-width,.pay-application-fee-sec form#TalentSprintAutonomousSystems .with-icon.full-width {
    width: 96%
}










section#outcomes ul li strong {
    font-weight: 500;
}

section#outcomes {
    background: #070b1e url(../img/outcomes-bg.webp) no-repeat;
    position: relative;
    background-size: cover;
    background-position: -457px 100%!important;
}

.dtr-py-100 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}


p.outcomes-by-line {
    font-size: 19px;
    font-weight: 400;
    color: #fff;
    line-height: 1.4em
}

section#outcomes h4 {
    font-size: 21px;
    font-weight: 500;
    line-height: 1.3;
}

ul.immerse-list {
    list-style: none;
    padding: 0;
    width: 100%;
}

ul.immerse-list li {
    color: #fff;
    opacity: .9;
    display: inline-block;
    width: 47%;
    font-size: 15px;
    margin-bottom: 18px;
    vertical-align: top;
    margin-right: 12px;
}

ul.immerse-list li img {
    height: 50px;
    margin-right: 20px;
    float: left;
}

img.certificate {
    width: 80%;
    float: right;
    margin-top: 110px;
}


.landform input,
.landform select {
    width: 100%;
    padding: 6px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
}



/* Desktop – normal behavior */
.journey-scroll {
    text-align: center;
}

.journey-scroll img {
    max-width: 100%;
    height: auto;
}

/* Mobile only */
@media (max-width: 768px) {
    .journey-scroll {
        overflow-x: scroll;   /* force scrollbar */
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
		
    }

    .journey-scroll img {
        width: auto;
        max-width: none;
        display: inline-block;
		height:170px;
    }

    /* Scrollbar styling (Chrome, Edge, Safari) */
    .journey-scroll::-webkit-scrollbar {
        height: 6px;
    }

    .journey-scroll::-webkit-scrollbar-track {
        background: #e0e0e0;
    }

    .journey-scroll::-webkit-scrollbar-thumb {
        background: #002147;
        border-radius: 10px;
    }
}



.ai-banner {
    position: relative;
    background: url("../img/skd-banner.jpg") center center / cover no-repeat;
    min-height: 640px;
    display: flex;
    align-items: center;
    color: #fff;
}

/* Mobile Banner */
@media (max-width: 767px) {
    .ai-banner {
        background: url("../img/skdmobile.jpg") center center / cover no-repeat;
        min-height: 800px; /* Optional: adjust height for mobile */
    }
}

/* Light black transparent layer */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* light black */
    z-index: 1;
}

/* Content above overlay */
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 1155px;
}

/* Mobile Banner */
@media (max-width: 767px) {
    .banner-content {
    margin-top: 14px;
}
}


/* Logo */
.banner-logo {
    max-width: 354px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .banner-logo {
        max-width: 290px;
        margin-bottom: 20px;
    }
}

/* Heading */
.ai-banner h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
	margin-top:40px;
	color: #adadad;
}

.ai-banner h1 span {
    color: #e7bf7c;
	 font-size: 32px;
	 
}

@media (max-width: 768px) { 
.ai-banner h1 span {
    color: #e7bf7c;
    font-size: 39px;
}
.ai-banner h1 {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 40px;
	color:#adadad;
}

}

/* Text */
.ai-banner p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
	color:#adadad;
}

/* Mobile Banner */
@media (max-width: 767px) {
    .ai-banner p {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 30px;
}
}

/* Button */
.apply-btn {
    display: inline-block;
    padding: 8px 28px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    color: #e7bf7c;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: #fdab20;
    color: #000;
}


.kushdaab {
    background: url("../img/aboutusbanner.jpg") center center / cover no-repeat;
    border-radius: 12px;
    position: relative;
}

/* Title */
.kushdaab-title {
    font-size: 36px;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 15px;
}

.kushdaab-title:after{
    content: '';
    background: #f5a623 !important;
    display: block;
    width: 52px;
    height: 5px;
    margin: 0;
    position: relative;
    top: 4px;
    margin-bottom: 21px;
}

@media (max-width: 767px) {
.kushdaab-title {
    font-size: 24px;
}	
}

/* Paragraph */
.kushdaab-text {
font-size: 14px;
    color: #204e79;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
	.kushdaab-text {
    font-size: 15px;
    color: #204e79;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 20px;
}
}

/* Highlight box */
.kushdaab-highlight {
    background: #133b7a;
    color: #fff;
    padding: 12px 16px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 25px;
}

.kushdaab-highlight span {
    display: block;
    font-weight: 400;
    font-size: 14px;
    margin-top: 5px;
}

/* Features */
.kushdaab-features .feature-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    margin-bottom: 15px;
    color: #222;
	font-weight: 500;
}

.kushdaab-features img {
    width: 46px;
    height: 46px;
    
}

/* Right image */
.kushdaab-image {
    max-width: 100%;
}



.proban {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0px;
    border-radius: 6px;
    color: #fff;
   
}

/* Label */
.proban-label {
    color: #e7bf7c;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

/* Program list */
.proban-list {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.proban-list li {
    font-size: 16px;
    font-weight: 600;
    padding: 0 16px;
    position: relative;
    color: #adadad;
}

@media (max-width: 767px) {
.proban-list li{
	font-size: 11px;
	color: #adadad;
}
}

/* Vertical separator */
.proban-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 4px;
    width: 2px;
    height: 22px;
    background: #f5b335;
}

/* (Hons.) text */
.proban-list small {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.85;
}




