html {
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primaryClr: #992A38;
	--whiteClr: #ffffff;
	--blackClr: #000000;

}


body {
	font-family: "Montserrat", sans-serif;
	line-height: 1.5;
	color: var(--blackClr);
}

button,
input,
textarea,
select {
	font: inherit;
}

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
}
.container {
	max-width: 1720px;
	width: 95%;
	margin: 0 auto;
}
.btn {
	font-size: 16px;
	padding: 15px 36px;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
}
.btn-primary {
	background: #992A38;
	color: #ffffff;
}
.btn-primary:hover {
	background: var(--whiteClr);
	color: #2C2928;
	border: 1px solid #2C2928;
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.gap10{
	gap: 10px;
	display: flex;
}
/* ===================== HEADER ===================================*/
.mainHeader {
	background: var(--whiteClr);
	border-bottom: 1px solid #e5e7eb;
}

.headerContainer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}

.headerLogo {
	width: auto;
	height: 100px;
}

/* RIGHT SIDE */
.headerRight {
	display: flex;
	align-items: center;
	gap: 40px; /* space between second logo and button */
}

/* optional */
.headerLogoSmall {
	height: 70px;
	width: auto;
}
.heroWrap {
	position: relative;
	overflow: visible;
}
.heroSection {
	position: relative;
	width: 100%;
	padding: 0px 0;
	background: url(../images/students.webp) no-repeat right 25% bottom,url(../images/heroBanner.webp) no-repeat center center;
	background-size: 50% auto,cover;
	overflow: hidden;
	display: flex;
	align-items: center;
	max-width: 1920px;
	margin: 0 auto;
}
.heroContent {
	position: relative;
	z-index: 6;
	max-width: 675px;
	padding: 213px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.headerBtn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	position: relative;
	overflow: hidden;
	transition: all 0.35s ease;
	border: 1px solid #992A38;
}

.headerBtn .btnText {
	transition: transform 0.35s ease;
}
.headerBtn .btnIcon {
	display: flex;
	align-items: center;
	justify-content: center;

	opacity: 0;
	transform: translateX(-8px);
	transition: all 0.35s ease;
}

.headerBtn .btnIcon img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.headerBtn:hover .btnIcon {
	opacity: 1;
	transform: translateX(0);
}

.headerBtn:hover .btnText {
	transform: translateX(-2px);
}

/* ================= HERO CONTENT ================= */

.heroTitle {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--whiteClr);
	margin-bottom: 20px;
}

.heroDesc {
	font-size: 24px;
	color: var(--whiteClr);
	line-height: 1.3;
	font-weight: 400;
}

.heroDesc span {
	font-weight: 600;
	color: var(--whiteClr);
}

.heroDivider {
	margin: 30px 0;
}

.heroLine {
	width: 100%;
	max-width: 620px;
	height: 2px;
	background: var(--whiteClr);
	opacity: 10%;
	margin-bottom: 4px;
}

.heroSubText {
	font-size: 24px;
	color: var(--whiteClr);
	font-weight: 500;
	margin-bottom: 5px;
}

.heroHighlight {
	display: inline-block;
	background: linear-gradient(90deg, #992A38 0%, rgba(153, 42, 56, 0) 100%);
	color: var(--whiteClr);
	font-size: 32px;
	font-weight: 700;
	padding: 2px 16px;
	border-radius: 10px;
	margin-bottom: 32px;
	width: 570px;
}
.heroDownloadBtn {
	background: #ffffff;
	color: #002048;
	font-size: 16px;
	font-weight: 600;
	padding: 15px 43px;
	border-radius: 40px;
	width: fit-content;
	border: 1px solid var(--whiteClr);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
	transition: all 0.35s ease;
}
.heroDownloadBtn .btnText {
	transition: transform 0.35s ease;
}
.heroDownloadBtn .btnIcon {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateX(-10px);
	transition: all 0.35s ease;
}
.heroDownloadBtn .btnIcon img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}
.heroDownloadBtn:hover {
	background: transparent;
	color: var(--whiteClr);
	border: 1px solid var(--whiteClr);
}
.heroDownloadBtn:hover .btnIcon {
	opacity: 1;
	transform: translateX(0);
}
.heroDownloadBtn:hover .btnText {
	transform: translateX(-2px);
}

/* Form */
.form {
	width: 100%;
	height: auto;
	position: absolute;
	right: 75px;
	min-height: 550px;
	border-radius: 20px;
	max-width: 467px;
	top: 100px;
	text-align: center;
	padding: 20px;
	scroll-margin-top: 120px;
	background: #00000080;
	z-index: 9999;
}
.enquiryTitle {
	font-size: 16px;
	font-weight: 700;
	color: var(--whiteClr);
	margin-bottom: 5px;
}
/* ================= WHY MBA SECTION ================= */

.whyMbaWrap {
	position: relative;
}

.whyMbaSection {
	position: relative;
	padding: 120px 0 100px;
	background: url("../images/why-mba-bg.webp") no-repeat center;
	background-size: cover;
	text-align: center;
}

.whyMbaSection::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../images/why-mba-overlay.webp") no-repeat center;
	background-size: 500px;
	opacity: 3%;
	z-index: 1;
}

.whyMbaContent {
	position: relative;
	z-index: 2;
	margin: 0 auto;
}

.whyMbaTitle {
	font-size: 40px;
	font-weight: 600;
	color: var(--primaryClr);
	margin-bottom: 20px;
}


.whyMbaDesc p {
	font-size: 20px;
	line-height: 1.5;
	color: #555555;
	max-width: 1430px;
	margin: 0 auto 20px;

}

.whyMbaDesc span{
	font-weight: 700;
}
.whyMbaStats {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	margin-top: 35px;
}


.whyMbaCard {
	position: relative;
	text-align: center;
	padding: 20px 10px;
	z-index: 1;
}

.whyMbaCard:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	height: 64px;
	background: rgba(153, 42, 56, 0.3);
	transform: translateY(-50%);
}

.whyMbaCard::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../images/why-mba-card-bg.webp") no-repeat center;
}

.whyMbaNumber {
	font-size: 40px;
	font-weight: 600;
	color: var(--primaryClr);
}

.whyMbaNumber span {
	font-size: 24px;
	font-weight: 600;
}

.whyMbaLabel {
	font-size: 18px;
	font-weight: 500;
	color: var(--blackClr);
}



/* ================= PROGRAM SECTION ================= */

.programSection {
	padding: 90px 0;
}

.programBox {
	display: grid;
	grid-template-columns: 480px 1fr;
	background: #0b2343;
	border-radius: 30px 30px 0 0;
	overflow: hidden;
	gap: 50px;
	padding: 50px 15px 70px 40px;
}

.programLeft {
	color: #fff;
}

.programTitle {
	font-size: 40px;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 10px;
}

.programInfoItem {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 18px;
}

.programInfoItem img {
	width: 32px;
}

.programInfoItem p {
	font-size: 24px;
	font-weight: 400;
}

.programInfoItem p span {
	font-weight: 600;
}

.programDivider {
	margin: 30px 0;
}

.programLine {
	height: 1px;
	background: rgba(255, 255, 255, 0.2);
	margin-bottom: 4px;
}

.programSubTitle {
	font-size: 24px;
	margin-bottom: 10px;
	font-weight: 600;
}

.programList {
	padding-left: 15px;
}

.programList li {
	font-size: 18px;
	line-height: 2.2;
	font-weight: 600;
}

.programRight {
	width: 100%;
	min-width: 0;
}

.programRightTitle {
	color: #fff;
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 5px;
}

.programRightInner {
	border: 1px solid #ffffff;
	border-radius: 12px;
	width: 100%;
	overflow: hidden;
}


.programTabs {
	display: flex;
	background: #992A38;
	border-radius: 12px 12px 0 0;

	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	scrollbar-width: none;
}

.programTabs::-webkit-scrollbar {
	display: none;
}

.tabBtn {
	position: relative;
	padding: 10px 17px;
	color: #fff;
	background: transparent;
	border: none;
	cursor: pointer;
	white-space: nowrap;
	font-size: 16px;
	font-weight: 400;
	flex: 0 0 auto;
	text-wrap: auto;
	max-width: 150px;
	line-height: 1.3;
}

.tabBtn-wrap {
	max-width: 215px;
}

.tabBtn::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	height: 36px;
	background: rgba(255, 255, 255, 0.4);
	transform: translateY(-50%);
}

.tabBtn:last-child::after {
	display: none;
}

.tabBtn.active::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 20%;
	width: 60%;
	height: 5px;
	background: #fff;
}


.programTabBox {
	background: #f4f4f4;
	padding: 25px;
	border-radius: 0 0 12px 12px;
	overflow: hidden;
}

.tabContent {
	display: none;
	grid-template-columns: minmax(0, 1fr) 420px;
	gap: 20px;
	align-items: center;
	width: 100%;
	align-items: flex-start;
}

.tabContent.active {
	display: grid;
}

.tabContent ul {
	min-width: 0;
}

.tabContent ul li {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8;
	color: #555555;
	padding-left: 14px;
	position: relative;
	word-break: break-word;
}

.tabContent ul li::marker {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--primaryClr);
}

.tabImage {
	width: 100%;
	max-width: 420px;
}

.tabImage img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
}


.programEligibility {
	background: var(--whiteClr);
	border-radius: 0 0 30px 30px;
	padding: 15px 55px;
	border: 2px solid #D2D2D2;
}

.programEligibility p {
	font-weight: 400;
	font-size: 20px;
}

.programEligibility span {
	color: var(--primaryClr);
	font-weight: 600;
}

/* 
================================================================== */


    /* ── HERO SECTION ── */
    .every-program-section {
      position: relative;
      background: url('../images/program_bg.webp') center center / cover no-repeat;
	  background-size: cover;
      display: flex;
      flex-direction: column;
      justify-content: center;
	  padding: 57px 0 532px;
    }
 
    
 
    /* ── CONTAINER ── */
    .every-container {
      position: relative;
      z-index: 1;
      margin: 0 auto;
      padding: 0px;
      display: flex;
      gap: 40px;
      align-items: flex-start;
    }
 
    /* ── LEFT COLUMN ── */
    .every-col-left {
      max-width: 806px;
	  width: 100%;
      color: var(--white);
    }
 
    .every-col-left .every-tag {
      display: inline-block;
      background: var(--maroon);
      color: var(--white);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 3px;
      margin-bottom: 14px;
    }
 
    .every-col_h1 {
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      font-weight: 600;
      line-height: 1.2;
      color: #992A38;
      margin-bottom: 14px;
	  
    }
 
    .every-col_h1 span {
      color: var(--gold);
    }
 
   .every-subtitle {
      font-size: 20px;
      color: rgba(255,255,255,0.80);
      line-height: 1.5;
	  font-weight: 400;
      margin-bottom: 15px;
	  color: #555555;
    }
 
    /* program meta items */
    .every-meta-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
 
    .every-meta-list li {
      display: flex;
      align-items: center;
      gap: 14px;
      transition: background 0.2s;
    }

    .every-meta-icon {
      width: 74px;
      height: 74px;
      flex-shrink: 0;
      background: #ffffff;
      border-radius: 9999px;
      display: grid;
	  box-shadow: 0px 4px 24px 0px #0000000D;
	  border-left: 1px solid #992A381A;
	  border-right: 1px solid #992a3959;
	  border-top: 1px solid #992A381A;
	  border-bottom: 1px solid #992a3960;
      place-items: center;
    }
 
    .every-meta-icon img {
      width: 30px;
      height: 30px;
    }
 
    .every-meta-text strong {
      font-size: 26px;
      font-weight: 600;
	  color: #222222;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 2px;
    }
 
    .every-meta-text span {
      font-size: 26px;
      color: #222222;
      font-weight: 400;
    }
 
    /* ── RIGHT COLUMN ── */
    .every-col-right {
      max-width: 782px;
	  background-color: #F1F1F1;
	  border: 1px solid #D5D5D5;
	  margin-left: auto;
	  border-radius: 20px;
	  position: relative;
	  overflow: hidden;
    }
	.every-col-right::before{
		content: "";
		position: absolute;
		top: -10px;
		left: -20px;
		width: 90px;
		height: 90px;
		border-radius: 9999px;
		background: rgba(153, 42, 57, 0.1);
		pointer-events: none;
	}
	.every-col-right::after{
		content: "";
		position: absolute;
		bottom: -10px;
		right: -20px;
		width: 90px;
		height: 90px;
		border-radius: 9999px;
		background: rgba(153, 42, 57, 0.1);
		pointer-events: none;
	}
 
    .every-highlights-card {
      background: var(--card-bg);
      border-radius: 18px;
      padding: 32px 30px 28px;
      box-shadow: var(--shadow);
    }
 
    .every-highlights-card h2 {
		font-weight: 600;
		font-style: SemiBold;
		font-size: 28px;
		leading-trim: NONE;
		line-height: 150%;
		letter-spacing: -2%;
      margin-bottom: 20px;
	  color: #992A38;
    }
 
    .every-highlights-card h2::after {
      content: '';
      flex: 1;
      height: 2px;
      background: linear-gradient(90deg, var(--maroon-light), transparent);
      border-radius: 2px;
    }
 
    .every-highlights-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 17px;
      padding-bottom: 30px;
	  border-bottom: 1px solid #DADADA;
    }
 
    .every-highlights-list li {
		display: flex;
		align-items: flex-start;
		gap: 13px;
		font-weight: 500;
		font-size: 18px;
		line-height: 150%;
		letter-spacing: 0%;

    }
 
    .every-check-icon {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      background: var(--maroon);
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin-top: 1px;
    }
 
    .every-check-icon svg {
      width: 11px;
      height: 11px;
      stroke: white;
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    .every-highlights-list li strong {
      color: var(--maroon-dark);
    }
 
    .every-card-note {	
		font-weight: 400;
		font-style: Regular;
		font-size: 18px;
		line-height: 136%;
		letter-spacing: 0%;
		color: #555555;
		margin-bottom: 22px;
		margin-top: 30px;
    }
 
    .every-btn-curriculum {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 15px 24px;
      background: #992A38;
      color: #ffffff;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.15s;
      box-shadow: 0 4px 16px rgba(139,26,47,0.35);
    }
 
    .every-btn-curriculum:hover {
      opacity: 0.92;
      transform: translateY(-1px);
    }
 
    .every-btn-curriculum img {
      width: 30px;
      height: 30px;
    }
 
    /* ── ELIGIBILITY FOOTER STRIP ── */
    .every-eligibility-strip {
      background: #0A4CA8;
      color: #ffffff;
      text-align: center;
      padding: 18px 32px;
      font-size: 18px;
      line-height: 1.8;
    }
 
    .every-eligibility-strip strong {
      text-transform: uppercase;
    }
 
    /* ── RESPONSIVE ── */
	@media (max-width: 1560px) {
		.every-meta-text strong, .every-meta-text span{
			font-size: 25px;
		}
		.every-meta-icon img{
			width: 24px;
			height: 24px;
		}
		.every-meta-icon{
			width: 60px;
			height: 60px;
		}
	}
    @media (max-width: 820px) {
      .every-container {
        flex-direction: column;
      }
      .every-col-left,
      .every-col-right {
        flex: 1 1 100%;
      }
    }
	@media screen and (max-width: 768px) {
		.every-program-section{
			background: url(../images/program_bg_mb.webp) no-repeat center bottom, #ffffff;
			background-size: auto 352px;
			padding-bottom: 267px;
		}
		.every-col_h1{
			font-size: 28px;
		}
		.every-col-left .every-subtitle{
			font-size: 16px;
		}
		.every-meta-text strong, .every-meta-text span{
			font-size: 18px;
		}
		.every-card-note{
			font-size: 16px;
		}
	}



/* ================= GLOBAL SECTION ================= */

.globalSection {
	padding: 100px 0 60px;
	background: url("../images/global-bg.webp") no-repeat center / cover;
}

.globalTitle {
	text-align: center;
	font-size: 40px;
	font-weight: 600;
	color: var(--primaryClr);
	margin-bottom: 20px;
}

.globalCards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 60px;
}

.globalCard {
	display: flex;
	align-items: center;
	gap: 26px;
	padding: 50px 20px;
	border-radius: 20px;
	background: url("../images/card-bg.webp") no-repeat center / cover;
	box-shadow: 0px 0px 14px 0px #00000040;

}

.globalIcon {
	width: 100px;
	height: 100px;
	background: var(--primaryClr);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 14px 0px #00000040;
}

.globalIcon img {
	width: 60px;
}

.globalCard p {
	font-size: 24px;
	font-weight: 600;
}


.globalBottom {
	display: flex;
	align-items: center;
	gap: 10px;
}


.globalLeft {
	flex: 0 0 710px;
	max-width: 710px;
}

.globalSub {
	font-size: 32px;
	color: #555555;
	font-weight: 400;
}

.globalHeading {
	font-size: 40px;
	font-weight: 600;
	color: var(--primaryClr);
}


.globalHighlight {
	background: var(--primaryClr);
	color: #fff;
	padding: 10px 15px;
	border-radius: 10px;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 10px;
}

.globalHighlight span {
	font-weight: 600;
}

.globalDesc {
	font-size: 18px;
	font-weight: 400;
	color: #555555;
	margin-bottom: 12px;
}

.globalDesc span {
	font-weight: 600;
}

.globalRight {
	flex: 1;
}

.globalRight img {
	width: 100%;
	display: block;
}

.grMbl {
	display: none;
}



/* ================= ADVANTAGE SECTION ================= */

.advantageSection {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
}

.advantageSection::before,
.advantageSection::after {
	content: "";
	position: absolute;
	top: 10%;
	width: 480px;
	height: 360px;
	background: url("../images/confetti.gif") no-repeat top center / contain;
	pointer-events: none;
	z-index: 1;
}

.advantageSection::before {
	left: 0;
}

.advantageSection::after {
	right: 0;
}

.advantageHeader::after {
	content: "";
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 480px;
	height: 360px;
	background: url("../images/confetti.gif") no-repeat center / contain;
	pointer-events: none;
}

.advantageHeader {
	position: relative;
	text-align: center;
	margin-bottom: 60px;
	z-index: 2;
}

.advantageSubTitle {
	font-size: 32px;
	font-weight: 400;
	color: #555555;
}

.advantageTitle {
	font-size: 40px;
	font-weight: 600;
	color: var(--primaryClr);
}

.advantageGrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	position: relative;
	z-index: 2;
}

.advantageCard {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.advantageCard::before {
	content: "";
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 81px;
	height: 145px;
	background: url("../images/leaf-left.svg") no-repeat center / contain;
}

.advantageCard::after {
	content: "";
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%) scaleX(-1);
	width: 81px;
	height: 145px;
	background: url("../images/leaf-left.svg") no-repeat center / contain;
}

.advantageInner {
	position: relative;
	text-align: center;
	max-width: 260px;
	z-index: 2;
}

.advantageLogo {
	margin-bottom: 12px;
}

.advantageLogo img {
	max-width: 100%;
	margin: 0 auto 20px;
}

.advantageCard p {
	font-size: 16px;
	color: #555;
	font-weight: 600;
}



/* ================= Life SECTION ================= */
.bg {
	background: url("../images/bg.webp") no-repeat center / cover;

}

.lifeSection {
	position: relative;
	padding: 80px 0 60px;
	/* background: url("../images/global-bg.webp") no-repeat center / cover; */
	overflow: hidden;
	max-width: 1920px;
	margin: 0 auto;
}

.lifeSection::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 62%;
	background: var(--primaryClr);
	z-index: 1;
}

.lifeSection .container {
	position: relative;
	z-index: 2;
}


.lifeHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.lifeTitle {
	font-size: 40px;
	color: #fff;
	font-weight: 600;
}

.lifeSub {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
}


.lifeSliderWrap {
	position: relative;
	z-index: 2;
}

.lifeSliderWrap.container {
	padding-right: 0;
}

.lifeSlider {
	overflow: visible !important;
}

.lifeSlider .swiper-wrapper {
	padding-right: 0;
}

.lifeSlider .swiper-slide {
	width: auto;
	border-radius: 14px;
	overflow: hidden;
}

.lifeSlider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


.lifeArrows {
	display: flex;
	gap: 60px;
}

.lifeArrows button {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: none;
	background: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lifeArrows button:hover {
	background: #f1f1f1;
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.mobileArrows {
	display: none;
}



/* ================= FAQ SECTION ================= */

.faqSection {
	padding: 40px 0 80px;
}

.faqContainer {
	max-width: 1425px;
}

.faqTitle {
	font-size: 40px;
	font-weight: 600;
	color: var(--primaryClr);
	margin-bottom: 30px;
}

.faqList {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faqItem {
	border: 1px solid #C2C2C2;
	border-radius: 20px;
	background: #ffffffcc;
	overflow: hidden;
	transition: all 0.3s ease;
}


.faqQuestion {
	display: flex;
	justify-content: space-between;
	/* align-items: flex-start; */
	align-items: center;
	padding: 22px 40px;
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(40px);

	gap: 20px;
}

.faqQuestion span {
	font-size: 20px;
	color: var(--primaryClr);
	font-weight: 400;
	flex: 1;
	min-width: 0;
	line-height: 1.5;
}


.faqIcon {
	width: 40px;
	height: 40px;
	border: 2px solid var(--primaryClr);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex: 0 0 auto;
}

.faqIcon img {
	width: 20px;
	height: 20px;
	transition: 0.3s ease;
}

.iconCross {
	opacity: 0;
	position: absolute;
}


.faqAnswer {
	max-height: 0;
	overflow: hidden;
	transition: all 0.35s ease;
	border-top: 1px solid #e5e5e5;
}

.faqAnswer p {
	padding: 15px 40px;
	font-size: 18px;
	font-weight: 400;
	color: #555555;
}


.faqItem.active .faqQuestion {
	background: var(--whiteClr);
}

.faqItem.active .faqAnswer {
	max-height: 200px;
}

.faqItem.active .faqIcon {
	background: var(--primaryClr);
}

.faqItem.active .iconPlus {
	opacity: 0;
}

.faqItem.active .iconCross {
	opacity: 1;
	filter: brightness(0) invert(1);
}

/* ================= CTA ================= */

.ctaSection {
	position: relative;
	background: url("../images/cta-bg.webp") no-repeat center / cover;
	padding: 70px 0;
	overflow: hidden;
}

.ctaContainer {
	max-width: 1423px;
	position: relative;
	z-index: 2;
}

.ctaWrap {
	display: flex;
	align-items: center;
}

.ctaContent {
	max-width: 1025px;
	color: #fff;
}

.ctaTitle {
	font-size: 64px;
	font-weight: 600;
	line-height: 1.08;
	margin-bottom: 30px;
}

.ctaDesc {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 30px;
	color: var(--whiteClr);
}

.ctaBtns {
	display: flex;
	gap: 16px;
	align-items: center;
}


.ctaStudents {
	position: absolute;
	right: 14%;
	bottom: 0;
	width: 540px;
	height: 400px;
	background: url("../images/cta-students.webp") no-repeat bottom right / contain;
	z-index: 2;
	pointer-events: none;
}



.ctaBtn{
		display: inline-flex;
	align-items: center;
	gap: 8px;
	position: relative;
	overflow: hidden;
	transition: all 0.35s ease;
	border: 1px solid #992A38;
}
.ctaDownloadBtn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	position: relative;
	overflow: hidden;
	transition: all 0.35s ease;
	border: 1px solid #FFFFFF;
}

.ctaBtn .btnText,
.ctaDownloadBtn .btnText {
	transition: transform 0.35s ease;
}

.ctaBtn .btnIcon,
.ctaDownloadBtn .btnIcon {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateX(-8px);
	transition: all 0.35s ease;
}

.ctaBtn .btnIcon img,
.ctaDownloadBtn .btnIcon img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.ctaBtn:hover .btnIcon,
.ctaDownloadBtn:hover .btnIcon {
	opacity: 1;
	transform: translateX(0);
}

.ctaBtn:hover .btnText,
.ctaDownloadBtn:hover .btnText {
	transform: translateX(-2px);
}


.ctaDownloadBtn {
	background: #ffffff;
	color: #002048;
}

.ctaDownloadBtn:hover {
	background: transparent;
	color: var(--whiteClr);
	border: 1px solid var(--whiteClr);
}

.ctaFooter {
	background: var(--primaryClr);
	color: var(--whiteClr);
	text-align: center;
	padding: 22px 0;
	font-size: 16px;
	font-weight: 700;
}


/* ================= WHY SECTION ================= */
/* 
.whyTopSection {
	padding: 92px 0 424px;
	background-image:
		url("../images/whyChoose_back_image.webp");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
}

.whyTopWrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	z-index: 2;
}

.whyTopWrap {
	display: flex;
	gap: 60px;
}

.whyLeft {
	flex: 1;
	max-width: 60%;
}

.whyRight {
	max-width: 852px;
	width: 100%;
}

.whySub {
	font-size: 32px;
	font-weight: 400;
	color: #555555;
}

.whyTitle {
	font-size: 40px;
	font-weight: 600;
	color: var(--primaryClr);
	line-height: 1.4;
}

.whyStats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-radius: 16px;
	overflow: hidden;
}

.whyCard {
	position: relative;
	padding: 28px 24px;
	background: #F1F1F1;
	border: 1px solid rgba(0, 0, 0, 0.05);
	min-height: 200px;
}

.whyCard:nth-child(2),
.whyCard:nth-child(3) {
	background: var(--whiteClr);
}

.whyCard::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 90px;
	height: 90px;
	background: url("../images/ellipse.svg") no-repeat top left / contain;
	pointer-events: none;
}

.whyCard h3 {
	font-size: 28px;
	font-weight: 500;
	color: var(--primaryClr);
}

.whyCard p {
	font-size: 20px;
	font-weight: 400;
	color: #555;
}

.whyBtn {
	margin-top: 25px;
	display: inline-flex;
}

.ctaDownloadBtn.whyBtn {
	background-color: var(--primaryClr);
	color: var(--whiteClr);
	border: none;
}

.ctaDownloadBtn.whyBtn:hover {
	background-color: #8a0012;
}


 */


.bdes-section{
    padding:60px;
	
	
}

.bdes-card{
    background:#04245A;
    border-radius:30px 30px 0 0;
    overflow:hidden;
    max-width:1720px;
    margin:0 auto;
	height: 678px;
	position: relative;
	z-index: 9999;
}

/* ==========================
   TOP SECTION
========================== */

.bdes-top{
    display:flex;
    gap:187px;
    padding:60px;
}

.bdes-content{
    width:35%;
    color:#fff;
}

.bdes-content h2{
    font-size:40px;
    font-weight:600;
    line-height:1.2;
    margin-bottom:18px;
}

.desc{
    font-size:20px;
	font-weight: 600;
    line-height:1.7;
    margin-bottom:25px;
}

.divider{
    width:100%;
    max-width:220px;
    height:2px;
    background:rgba(255,255,255,0.15);
    margin-bottom:25px;
}

.info-item{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    margin-bottom:15px;
    font-size:24px;
	font-weight: 400;
}

.info-item img{
    width:32px;
}

.info-item strong{
    font-weight:700;
}

/* ==========================
   SPECIALIZATION
========================== */

.specialization-section{
    width:65%;
}

.specialization-section h3{
    color:#fff;
    font-size:28px;
    font-weight:600;
    margin-bottom:12px;
}

.specialization-wrapper{
    background:#fff;
    border-radius:10px;
    padding:20px;
    display:flex;
    gap:15px;
	height: 400px;
}

.specialization-tabs{
    width:38%;
}

.tab{
    width:100%;
    border:none;
    background:#ECECEC;
    border-radius:4px;
    text-align:left;
    padding:10px 14px;
    margin-bottom:8px;
    font-family:"Montserrat",sans-serif;
    font-size:20px;
	font-weight: 700;
    cursor:pointer;
	
}

.tab.active{
    background:#A6263D;
    color:#fff;
    font-weight:600;
}

/* .specialization-content{
    width:62%;
    border:2px solid #ddd;
    border-radius:6px;
    padding:30px 40px;
    font-size:20px;
	font-weight: 400;
    line-height:1.8;
    color:#222;
	
} */
 .specialization-content {
    width: 62%;
    border: 2px solid #ddd;
    border-radius: 6px;
    padding: 30px 40px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    color: #222;
    display: flex;
    align-items: center;     
    justify-content: center;  
}

/* ==========================
   ELIGIBILITY
========================== */

/* .eligibility{
    background:#f8f8f8;
    padding:18px 30px;
    font-size:20px;
    line-height:1.8;
	max-width: 1720px;
	margin: 0 auto;

} */
 .eligibility {
    padding: 30px 30px;
    font-size: 20px;
    line-height: 1.8;
    max-width: 1720px;
    margin: -19px auto 0;
    position: relative;
    z-index: 2;
    border-radius: 0 0 30px 30px;
    border: 2px solid #D2D2D2;
	
}

.eligibility strong{
    color:#A6263D;
}

/* ==========================
   1680px
========================== */
@media (max-width: 1680px) {
    .bdes-card {
        height: auto;
    }
    .bdes-top {
        gap: 120px;
    }
}

/* ==========================
   1550px
========================== */
@media (max-width: 1550px) {
    .bdes-top {
        gap: 80px;
        padding: 50px;
    }
    .bdes-content h2 {
        font-size: 36px;
    }
    .desc {
        font-size: 18px;
    }
    .info-item {
        font-size: 20px;
    }
    .specialization-section h3 {
        font-size: 24px;
    }
    .tab {
        font-size: 17px;
        padding: 9px 12px;
    }
    .specialization-content {
        font-size: 18px;
        padding: 24px 30px;
    }
}

/* ==========================
   1380px
========================== */
@media (max-width: 1380px) {
    .bdes-top {
        gap: 50px;
        padding: 44px;
    }
    .bdes-content {
        width: 38%;
    }
    .specialization-section {
        width: 62%;
    }
    .bdes-content h2 {
        font-size: 32px;
    }
    .desc {
        font-size: 16px;
    }
    .info-item {
        font-size: 18px;
    }
    .info-item img {
        width: 26px;
    }
    .tab {
        font-size: 15px;
        padding: 9px 11px;
        margin-bottom: 6px;
    }
    .specialization-content {
        font-size: 16px;
        padding: 20px 24px;
    }
    .specialization-wrapper {
        height: auto;
        min-height: 360px;
    }
}

/* ==========================
   1280px
========================== */
@media (max-width: 1280px) {
    .bdes-section {
        padding: 40px;
    }
    .bdes-top {
        gap: 36px;
        padding: 40px;
    }
    .bdes-content {
        width: 40%;
    }
    .specialization-section {
        width: 60%;
    }
    .bdes-content h2 {
        font-size: 28px;
    }
    .desc {
        font-size: 15px;
    }
    .info-item {
        font-size: 16px;
    }
    .specialization-section h3 {
        font-size: 21px;
    }
    .tab {
        font-size: 14px;
        padding: 8px 10px;
    }
    .specialization-content {
        font-size: 15px;
        padding: 18px 20px;
    }
    .eligibility {
        font-size: 17px;
    }
}

/* ==========================
   1080px
========================== */
@media (max-width: 1080px) {
    .bdes-section {
        padding: 24px;
    }
    .bdes-top {
        gap: 24px;
        padding: 32px;
    }
    .bdes-content {
        width: 42%;
    }
    .specialization-section {
        width: 58%;
    }
    .bdes-content h2 {
        font-size: 26px;
    }
    .desc {
        font-size: 14px;
    }
    .info-item {
        font-size: 14px;
        gap: 8px;
    }
    .info-item img {
        width: 22px;
    }
    .specialization-section h3 {
        font-size: 18px;
    }
    .tab {
        font-size: 13px;
        padding: 8px 10px;
        margin-bottom: 5px;
        border-radius: 4px;
    }
    .specialization-content {
        font-size: 14px;
        padding: 16px 18px;
        line-height: 1.7;
    }
    .specialization-wrapper {
        padding: 16px;
        gap: 12px;
    }
    .eligibility {
        font-size: 15px;
        padding: 24px 24px;
    }
}

/* ==========================
   991px  (already exists — extend it)
========================== */
@media (max-width: 991px) {
    .bdes-section {
        padding: 20px;
    }
    .bdes-top {
        flex-direction: column;
        gap: 30px;
        padding: 32px;
    }
    .bdes-content,
    .specialization-section {
        width: 100%;
    }
    .bdes-content h2 {
        font-size: 32px;
    }
    .specialization-wrapper {
        flex-direction: column;
        height: auto;
    }
    .specialization-tabs,
    .specialization-content {
        width: 100%;
    }
    .specialization-content {
        font-size: 16px;
        padding: 20px 24px;
        min-height: 160px;
    }
    .tab {
        font-size: 16px;
        padding: 10px 14px;
    }
    .eligibility {
        font-size: 16px;
        margin-top: -14px;
    }
}

/* ==========================
   767px  (already exists — extend it)
========================== */
@media (max-width: 767px) {
    .bdes-section {
        padding: 15px;
    }
    .bdes-card {
        border-radius: 20px 20px 0 0;
        height: auto;
    }
    .bdes-top {
        padding: 24px;
        gap: 20px;
    }
    .bdes-content h2 {
        font-size: 28px;
    }
    .desc {
        font-size: 15px;
        line-height: 1.7;
    }
    .specialization-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .specialization-wrapper {
        background: transparent;
        padding: 0;
        display: block;
        height: auto;
    }
    .specialization-content {
        display: none;
    }
    .specialization-tabs {
        width: 100%;
    }
    .tab {
        position: relative;
        background: #ECECEC;
        border-radius: 10px;
        padding: 18px 70px 18px 24px;
        font-size: 18px;
        margin-bottom: 14px;
    }
    .tab::after {
        content: "↓";
        position: absolute;
        right: 22px;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        background: #A6263D;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }
    .tab.active {
        background: #A6263D;
        color: #fff;
        border-radius: 12px 12px 0 0;
    }
    .tab.active::after {
        content: "↑";
        background: #fff;
        color: #A6263D;
    }
    .eligibility {
        padding: 22px;
        font-size: 16px;
        margin-top: -10px;
        border-radius: 0 0 20px 20px;
    }
    .mobile-content {
        background: #fff;
        color: #222;
        padding: 20px;
        margin-top: -10px;
        margin-bottom: 14px;
        border-radius: 0 0 12px 12px;
        line-height: 1.8;
        font-size: 14px;
    }
}

/* ==========================
   455px
========================== */
@media (max-width: 455px) {
    .bdes-section {
        padding: 10px;
    }
    .bdes-top {
        padding: 18px;
        gap: 16px;
    }
    .bdes-card {
        border-radius: 14px 14px 0 0;
    }
    .bdes-content h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    .desc {
        font-size: 13px;
        margin-bottom: 18px;
    }
    .divider {
        margin-bottom: 18px;
        max-width: 160px;
    }
    .info-item {
        font-size: 13px;
        gap: 8px;
        margin-bottom: 10px;
    }
    .info-item img {
        width: 18px;
    }
    .specialization-section h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .tab {
        font-size: 15px;
        padding: 15px 58px 15px 18px;
        margin-bottom: 10px;
        border-radius: 8px;
    }
    .tab::after {
        right: 16px;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    .tab.active {
        border-radius: 8px 8px 0 0;
    }
    .mobile-content {
        font-size: 13px;
        padding: 16px;
    }
    .eligibility {
        padding: 16px;
        font-size: 14px;
        border-radius: 0 0 14px 14px;
    }
}

/* ==========================
   360px
========================== */
@media (max-width: 360px) {
    .bdes-section {
        padding: 8px;
    }
    .bdes-top {
        padding: 14px;
        gap: 12px;
    }
    .bdes-card {
        border-radius: 10px 10px 0 0;
    }
    .bdes-content h2 {
        font-size: 19px;
        margin-bottom: 10px;
    }
    .desc {
        font-size: 12px;
        margin-bottom: 14px;
    }
    .info-item {
        font-size: 12px;
        gap: 6px;
    }
    .info-item img {
        width: 16px;
    }
    .divider {
        max-width: 130px;
        margin-bottom: 14px;
    }
    .specialization-section h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .tab {
        font-size: 13px;
        padding: 13px 52px 13px 14px;
        margin-bottom: 8px;
        border-radius: 6px;
    }
    .tab::after {
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    .tab.active {
        border-radius: 6px 6px 0 0;
    }
    .mobile-content {
        font-size: 12px;
        padding: 14px;
        line-height: 1.7;
    }
    .eligibility {
        padding: 14px;
        font-size: 13px;
        border-radius: 0 0 10px 10px;
    }
}

/* =================EXPERT SECTION ================= */
.expertSection {
  position: relative;
  background: radial-gradient(56.41% 56.41% at 50% 43.59%, #0A4CA8 0%, #041E42 100%);
  padding: 100px 0;
  overflow: hidden;
}

.expertWrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertContent {
  width: 100%;
  color: var(--whiteClr);
  text-align: center;
  margin: 0 auto;
}

.expertContentInner {
  width: 100%;
}

.expertTitle {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #ffffff;
  line-height: 1.3;
}

.expertDesc {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.75;
  margin: 0;
}

/* ── 1280px ── */
@media (max-width: 1280px) {
  .expertSection { padding: 80px 40px; }
  .expertTitle { font-size: 36px; }
  .expertDesc { font-size: 18px; }
}

/* ── 1080px ── */
@media (max-width: 1080px) {
  .expertSection { padding: 70px 32px; }
  .expertContent { max-width: 720px; }
  .expertTitle { font-size: 32px; }
  .expertDesc { font-size: 17px; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .expertSection { padding: 56px 24px; }
  .expertContent { max-width: 100%; }
  .expertTitle { font-size: 28px; margin-bottom: 18px; }
  .expertDesc { font-size: 16px; line-height: 1.7; }
}

/* ── 550px ── */
@media (max-width: 550px) {
  .expertSection { padding: 44px 16px; }
  .expertTitle { font-size: 24px; margin-bottom: 14px; }
  .expertDesc { font-size: 15px; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .expertSection { padding: 36px 14px; }
  .expertTitle { font-size: 22px; }
  .expertDesc { font-size: 14px; line-height: 1.65; }
}

/* ── 380px ── */
@media (max-width: 380px) {
  .expertSection { padding: 30px 12px; }
  .expertTitle { font-size: 20px; }
  .expertDesc { font-size: 13px; }
}




/* ================= Our Student Speaks =========================== */
.ssSection {
	padding: 60px 0 40px;
	overflow: hidden;
	position: relative;
}

.ssHead {
	max-width: 1750px;
	margin: 0 auto 10px;
	padding: 0;
	text-align: center;
}

.ssHead h2 {
	font-family: "Montserrat", sans-serif;
	font-size: 40px;
	font-weight: 600;
	color: var(--primaryClr);
	margin-bottom: 20px;
}

.ssHead p {
	font-size: 20px;
	color: #3a3a3a;
	font-weight: 400;
	max-width: 768px;
	margin: 0 auto;
}

.ssShell {
	position: relative;
	width: 100%;
}

.ssArrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 30;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--primaryClr);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .22s, transform .22s, box-shadow .22s;
	outline: none;
}

.ssArrow:hover {
	background: #6e1424;
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 6px 22px rgba(139, 26, 46, .45);
}

.ssArrow svg {
	width: 18px;
	height: 18px;
	stroke: var(--whiteClr);
	stroke-width: 2.8;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	display: block;
}

.ss-outer {
	overflow: hidden;
	width: 100%;
}

.ssSwiper.swiper {
	overflow: visible !important;
	padding: 18px 0 22px !important;
}

.ssSwiper .swiper-slide {
	height: auto;
	width: 1140px !important;

	opacity: .35;
	transform: scale(.97);
	transition: opacity .45s cubic-bezier(.4, 0, .2, 1), transform .45s cubic-bezier(.4, 0, .2, 1);
	will-change: opacity, transform;
}


.ssSwiper .swiper-slide.swiper-slide-active {
	opacity: 1 !important;
	transform: scale(1) !important;
}

.ssCard {
	background: var(--whiteClr);
	border-radius: 18px;
	box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.25);

	display: flex;
	flex-direction: row;
	align-items: stretch;
	position: relative;
	width: 100%;
	min-height: 260px;
	overflow: hidden;
	padding: 20px;
}

.ssCardLeft {
	flex-shrink: 0;
	background: #2D3163;
	border-radius: 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 35px 65px;
	position: relative;
	z-index: 2;
}

.ssCardAvatar {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #FFFFFF;
	background: rgba(255, 255, 255, .12);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ssCardAvatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ssCardAvatar span {
	font-family: "Montserrat", sans-serif;
	font-size: 30px;
	font-weight: 700;
	color: var(--whiteClr);
}

.ssCardName {
	font-weight: 700;
	font-size: 20px;
	color: var(--whiteClr);
	text-align: center;
	line-height: 1.6;

}

.ssCardRole {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--whiteClr);
	text-align: center;
	margin-top: -5px;
}

.ssCardRight {
	flex: 1;
	padding: 0 130px 0 45px;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 2;
	overflow: hidden;
}

/* QUOTE ICON */
.ssCardRight::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 98px;
	height: 72px;
	background: url("../images/quotes.svg") no-repeat center;
	background-size: contain;
	opacity: 0.15;
	pointer-events: none;
}

.ssCardText {
	font-size: 18px;
	font-weight: 400;
	color: #3a3a3a;
	line-height: 1.85;
	position: relative;
	z-index: 2;
}

.ssMobNav {
	display: none;
	justify-content: center;
	gap: 20px;
	/* margin-top: 26px; */
}

.ssMobBtn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--primaryClr);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(139, 26, 46, .28);
	transition: background .2s, transform .2s;
	outline: none;
}

.ssMobBtn:hover {
	background: #6e1424;
	transform: scale(1.08);
}

.ssMobBtn svg {
	width: 16px;
	height: 16px;
	stroke: var(--whiteClr);
	stroke-width: 2.8;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}



    /* ── Career SECTION ── */
    .careerOpp-section {
      background: #0a1a4a;
      padding: 64px 0 72px;
      font-family: 'Montserrat', sans-serif;
      overflow: hidden;
    }
 
    /* ── CONTAINER ── */
    .careerOpp-container {
      max-width: 1720px;
      margin: 0 auto;
      padding: 0 48px;
    }
 
    /* ── SECTION HEADING ── */
    .careerOpp-heading {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 50px;
      line-height: 150%;
      letter-spacing: 0%;
      text-align: center;
      color: #ffffff;
      margin-bottom: 48px;
    }
 
    /* ── SWIPER ── */
    .careerOpp-swiper {
      overflow: visible !important;
      padding-bottom: 8px !important;
    }
 
    /* ── SLIDE CARD ── */
    .careerOpp-card {
      background: #0f2260;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 14px;
      overflow: hidden;
      height: auto;
      display: flex;
      flex-direction: column;
	  min-height: 621px;
    }
 
    /* ── CARD IMAGE ── */
    .careerOpp-imgBox {
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border-radius: 12px;
      flex-shrink: 0;
    }
 
    .careerOpp-imgBox img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
 
    /* ── CARD BODY ── */
    .careerOpp-cardBody {
      padding: 20px 22px 28px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
 
    /* ── CARD TITLE ── */
    .careerOpp-cardTitle {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 27px;
      line-height: 100%;
      letter-spacing: 0%;
      color: #ffffff;
    }
 
    /* ── LIST ── */
    .careerOpp-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 0;
      padding: 0;
    }
 
    .careerOpp-listItem {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 500;
      font-size: 18px;
      line-height: 100%;
      letter-spacing: 0%;
      color: rgba(255,255,255,0.88);
	  margin-bottom: 19px;
    }

 
    /* checkmark via box-shadow trick */
    .careerOpp-checkIcon {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      margin-top: 1px;
      display: grid;
      place-items: center;
    }
 
    .careerOpp-checkIcon svg {
      width: 18px;
      height: 18px;
    }
 
    /* ── HIDE DEFAULT SWIPER NAV ── */
    .careerOpp-swiper .swiper-button-next,
    .careerOpp-swiper .swiper-button-prev {
      display: none !important;
    }
 
    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 1400px) {
      .careerOpp-container {
        padding: 0 40px;
      }
      .careerOpp-heading {
        font-size: 42px;
      }
    }
 
    @media (max-width: 1024px) {
      .careerOpp-container {
        padding: 0 32px;
      }
      .careerOpp-heading {
        font-size: 36px;
      }
      .careerOpp-cardTitle {
        font-size: 24px;
      }
      .careerOpp-listItem {
        font-size: 15px;
      }
    }
 
    @media (max-width: 768px) {
      .careerOpp-section {
        padding: 48px 0 56px;
      }
      .careerOpp-container {
        padding: 0 20px;
      }
      .careerOpp-heading {
        font-size: 28px;
        margin-bottom: 32px;
      }
      .careerOpp-cardTitle {
        font-size: 20px;
      }
      .careerOpp-listItem {
        font-size: 14px;
      }
    }
 
    @media (max-width: 480px) {
      .careerOpp-heading {
        font-size: 24px;
      }
      .careerOpp-cardTitle {
        font-size: 18px;
      }
    }
 

	/* ── SECTION ── */
    .indCollab-section {
      padding: 64px 0 72px;
      font-family: 'Montserrat', sans-serif;
      background: #ffffff;
      overflow: hidden;
    }
 
    /* ── CONTAINER ── */
    .indCollab-container {
      max-width: 1720px;
      margin: 0 auto;
      padding: 0 48px;
    }
 
    /* ── HEADING ── */
    .indCollab-heading {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 36px;
      line-height: 150%;
      letter-spacing: 0;
      text-align: center;
      color: #8B1A2F;
      margin-bottom: 16px;
    }
 
    /* ── SUBTITLE BADGE ── */
    .indCollab-badgeWrap {
      display: flex;
      justify-content: center;
      margin-bottom: 24px;
    }
 
    .indCollab-badge {
      display: inline-block;
      background: #1a2a6e;
      color: #ffffff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 15px;
      line-height: 1;
      padding: 12px 28px;
      border-radius: 4px;
    }
 
    /* ── DESCRIPTION ── */
    .indCollab-desc {
      font-family: 'Montserrat', sans-serif;
      font-weight: 400;
      font-size: 15px;
      line-height: 1.7;
      color: #444444;
      text-align: center;
      max-width: 720px;
      margin: 0 auto 48px;
    }
 
    /* ── LOGOS GRID ── */
    .indCollab-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      grid-template-rows: repeat(2, auto);
      gap: 16px;
    }
 
    /* ── LOGO CARD ── */
    .indCollab-logoCard {
      background: #f5f5f7;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px 16px;
      min-height: 90px;
      transition: box-shadow 0.2s, transform 0.2s;
    }
 
    .indCollab-logoCard:hover {
      box-shadow: 0 6px 24px rgba(0,0,0,0.10);
      transform: translateY(-2px);
    }
 
    .indCollab-logoCard img {
      max-width: 100%;
      max-height: 100px;
      object-fit: contain;
      display: block;
    }
 
    /* ── SWIPER (mobile) ── */
    .indCollab-swiper {
      display: none;
      overflow: visible !important;
    }
 
    .indCollab-swiper .indCollab-logoCard {
      height: 90px;
    }
 
    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 1200px) {
      .indCollab-grid {
        grid-template-columns: repeat(5, 1fr);
      }
      .indCollab-container {
        padding: 0 40px;
      }
    }
 
    @media (max-width: 900px) {
      .indCollab-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      .indCollab-heading {
        font-size: 28px;
      }
    }
 
    @media (max-width: 640px) {
      /* hide grid, show swiper */
      .indCollab-grid {
        display: none;
      }
      .indCollab-swiper {
        display: block;
      }
      .indCollab-container {
        padding: 0 20px;
      }
      .indCollab-heading {
        font-size: 22px;
      }
      .indCollab-badge {
        font-size: 13px;
        padding: 10px 20px;
      }
      .indCollab-desc {
        font-size: 13px;
      }
    }

	@media screen and (min-width: 641px) {
		.indCollab-swiper.swiper-horizontal {
			display: none;
		}
	}





	/* Program tab section */

	
 /* ══════════════════════════════════
       SECTION
    ══════════════════════════════════ */
    .progTabSection {
      max-width: 1600px;
      margin: 0 auto;
      padding: 36px 0 0px;
	  width: calc(100% - 40px);
    }
 
    /* ══════════════════════════════════
       TAB NAV
    ══════════════════════════════════ */
    .progTab-nav {
      display: flex;
      gap: 38px;
      margin-bottom: 48px;
    }
 
    .progTab-navBtn {
		flex: 1;
		padding: 28px;
		font-weight: 500;
		font-style: Medium;
		font-size: 24px;
		line-height: 125%;
		letter-spacing: 0%;
		text-align: center;
		color: #222222;
		background: #ffffff;
		border: 1px solid #DADADA;
		box-shadow: 0px 4px 24px 0px #0000001F;
		cursor: pointer;
		transition: background 0.2s, color 0.2s;
		position: relative;
		border-radius: 10px;
    }
 
 
 
    .progTab-navBtn:hover {
      background: #f9f0f2;
      color: #8B1A2F;
    }
 
    /* active tab */
    .progTab-navBtn.progTab-navBtn--active {
      background: #8B1A2F;
      color: #ffffff;
    }
 
    /* downward arrow on active tab */
.progTab-navBtn.progTab-navBtn--active::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 20px solid #8B1A2F;
  z-index: 2;
  box-shadow: 0px 4px 24px 0px #0000001F;

}

 
    /* ══════════════════════════════════
       TAB PANELS
    ══════════════════════════════════ */
    .progTab-panel {
      display: none;
    }
 
    .progTab-panel.progTab-panel--active {
      display: flex;
      gap: 48px;
      align-items: flex-start;
	
    }
 
    /* ── LEFT CONTENT ── */
    .progTab-content {
      max-width: 678px;
	  padding-bottom: 66px;
    }
 
    .progTab-title {
		font-weight: 600;
		font-style: SemiBold;
		font-size: 40px;
		line-height: 110.00000000000001%;
		letter-spacing: 0%;
		color: #992A38;
		margin-bottom: 20px;
    }
 
    /* left border quote block */
    .progTab-quote {
      border-left: 3px solid #8B1A2F;
      padding-left: 16px;
      margin-bottom: 32px;
    }
 
    .progTab-quote p {
      font-size: 20px;
      font-weight: 600;
      color: #1a1a1a;
      line-height: 1.6;
    }
 
    /* ── FEATURE LIST ── */
    .progTab-featureList {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 24px;
	  position: relative;
    }
	.progTab-featureList::before {
		content: "";
		position: absolute;
		top: 0;
		left: 38px;
		width: 2px;
		height: 100%;
		background: url(../images/Line.webp) no-repeat center center;
		border-radius: 2px;
		z-index: -1;
	}
 
    .progTab-featureItem {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
 
    /* icon — circular border with image inside */
    .progTab-featureIcon {
      width: 76px;
      height: 76px;
      flex-shrink: 0;
      border-radius: 50%;
      overflow: hidden;
    }
 
    .progTab-featureIcon img {
      width: 100%;
      object-fit: contain;
    }
 
    .progTab-featureText {
      font-size: 20px;
      color: #222222;
      line-height: 1.6;
      padding-top: 14px;
    }
 
    .progTab-featureText strong {
      color: #1a1a1a;
    }
 
    /* ── RIGHT IMAGE ── */
    .progTab-imageWrap {
      max-width: 900px;
      position: relative;
      /* min-height: 460px; */
	  margin-left: auto;
	  align-self: flex-end;
	  
    }
 
    /* faint watermark logo behind image */
    .progTab-imageWrap::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../images/pcu-watermark.png') center center / 70% no-repeat;
      opacity: 0.06;
      z-index: 0;
    }
 
    .progTab-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center bottom;
      position: relative;
      /* z-index: 1; */
      display: block;
    }
 

	/* sticky btn */

 @media (max-width: 768px) {
  .stickyApplyBar {
    display: block;
  }
}



.stickyApplyBar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--whiteClr);
  padding: 10px 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 999;
  display: none;
}

.stickyApplyWrap {
  display: flex;
  gap: 10px;
}
.stickyApplyBtn {
  flex: 1;
  height: 44px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.fillBtn {
  background: var(--primaryClr);
  color: #fff;
  border: 1px solid var(--primaryClr);
}

.borderBtn {
  background: transparent;
  color: var(--primaryClr);
  border: 1px solid var(--primaryClr);
}


@media (max-width: 768px) {
  .stickyApplyBar {
    display: block;
  }
}