*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  color: #081123;
    background: linear-gradient(90deg, #003DA5 0%, #053688 35%, #0F2B5D 70%, #051532 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

:root {
  --green: #66BB46;
  --green-glow: rgba(102, 187, 70, 0.57);
  --blue: #003da5;
  --blue-deep: #0f3b84;
  --blue-nav: #0040c1;
  --dark: #081123;
  --gray: #3b485e;
  --gray-muted: #565656;
  --nav-text: #111827;
  --white: #fff;
  --off-white: #f5f5f2;
  --light-blue: #eff4ff;
  --border-blue: #d1e0ff;
  --border-gray: #dfe5ed;
  --nav-bg: #f9f9f9;
  --radius-pill: 100px;

  --font-heading: "Instrument Sans", sans-serif;
  --font-body: "Inter", sans-serif;

  --size-h1: 52px;
  --size-h2: 42px;
  --size-h3: 32px;
  --size-h4: 28px;
  --size-h5: 22px;
  --size-h6: 18px;
  --size-body: 16px;
  --size-small: 14px;
  --size-section-title: 42px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

h1 {
  font-size: var(--size-h1);
  line-height: 1.1;
  font-weight: 700;
}

h2 {
  font-size: var(--size-h2);
  line-height: 1.15;
  font-weight: 700;
}

h3 {
  font-size: var(--size-h3);
  line-height: 1.2;
  font-weight: 700;
}

h4 {
  font-size: var(--size-h4);
  line-height: 1.25;
  font-weight: 700;
}

h5 {
  font-size: var(--size-h5);
  line-height: 1.3;
  font-weight: 700;
}

h6 {
  font-size: var(--size-h6);
  line-height: 1.4;
  font-weight: 600;
}

p {
  font-size: var(--size-body);
  line-height: 1.7;
}

.stats-title,
.heading h3,
.career-paths .top h3,
.choose-title,
.section-header h4,
.section-title h5,
.awards-section .heading h5,
.student-title,
#student-life h5,
#student-life h3,
#student-life h4,
#offer-letter h5,
#offer-letter h4,
.faq-book-career-left h5 {
  font-size: var(--size-section-title);
}

@media (max-width: 1199px) and (min-width: 800px) {
  :root {
    --size-section-title: 40px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 16px;
  }

  p {
    font-size: 15px;
  }

  #student-life .section-container {
    gap: 35px;
  }
}

@media (max-width: 799px) and (min-width: 600px) {
  :root {
    --size-section-title: 30px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 15px;
  }

  p {
    font-size: 14px;
  }

  #student-life .section-container {
    gap: 35px;
  }
}

@media (max-width: 599px) {
  :root {
    --size-section-title: 26px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }

  p {
    font-size: 14px;
  }

  #student-life .section-container {
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }
}

/* ===== NAVBAR ===== */
.navbar-wrapper {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 80px);
  max-width: 1300px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.navbar-wrapper.scrolled {
  top: 12px;
}

.navbar-wrapper > .navbar {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1000;
}


.navbar-wrapper.scrolled .navbar-inner {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 64, 193, 0.2);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--nav-bg);
    border: 1px solid var(--border-blue);
    border-radius: var(--radius-pill);
    padding: 8px 12px;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    height: 60px;

}

.topbar {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 97%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #66BB46;
  border-radius: var(--radius-pill) var(--radius-pill) 0 0;
  padding: 8px 24px;
  transition: all 0.3s ease;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: #fff;
}

.topbar-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-contact i {
  color: #fff;
  font-size: 14px;
}

.topbar-contact a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #fff;
}

.topbar-social img {
  width: 16px;
  height: 16px;
}

.navbar-wrapper.scrolled .topbar {
  transform: translateX(-50%) translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.nav-logo {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border-blue);
    border-radius: var(--radius-pill);
    padding: 4px 16px;
    flex-shrink: 0;
    height: 100%;
}
.nav-logo img {
  height: 36px;
  width: auto;
}

.navbar-celebration-btn {
  margin: 0 20px;
}

/* Tablet & mobile: show the celebration button smaller */
@media (max-width: 1199px) {
  .navbar-celebration-btn {
    margin: 0;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .navbar-celebration-btn img {
    width: 72px;
    height: auto;
  }
}

@media (max-width: 767px) {
  .navbar-celebration-btn img {
    width: 55px;
    height: auto;
  }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-pill);
    padding: 4px;
    height: 100%;

}

.nav-links a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #111827;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--light-blue);
  color: var(--blue-nav);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--blue-nav);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 8px 8px 20px;
  border-radius: var(--radius-pill);
  transition: all 0.3s;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: #0035a3;
}

.nav-cta svg {
  height: 28px;
  width: 28px;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navmenu {
  max-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .navbar-wrapper {
    display: none;
  }
  .topbar {
    display: none;
  }
  .hero-glow {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar-wrapper {
    width: calc(100% - 32px);
    margin: 12px auto 0;
  }

  .topbar {
    padding: 6px 16px;
  }

  .topbar-contact {
    gap: 12px;
    font-size: 12px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 999;
  }

  .nav-links.active a {
    font-size: 18px;
    padding: 12px 24px;
  }

  .nav-hamburger {
    display: flex;
    z-index: 1000;
    position: relative;
  }
}

/* ===== MOBILE NAVBAR ===== */
.mobile-navbar .icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-bottom: 3px;
  filter: brightness(0) invert(1);
}

#mobile-navigation {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: #fff;
  height: 48px;
}

@media (min-width: 1200px) {
  #mobile-navigation {
    display: none;
  }
}

.mobile-navbar {
  width: 100%;
  position: relative;
}

.mobile-nav {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.moblie-nav-left {
  display: flex;
  align-items: center;
}

.moblie-nav-center {
  display: flex;
  align-items: center;
  margin-right: 90px;
}

@media (max-width: 1199px) {
  .moblie-nav-center {
    margin-right: auto;
  }
}

.moblie-nav-center img {
  height: 48px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  cursor: pointer;
  padding: 7px;
}

.moblie-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav-right-one {
  cursor: pointer;
}

.mobile-nav-right-one p {
  font-size: 11px;
  font-weight: 400;
  background: #0040C1;
  padding: 8px 20px;
  border-radius: 20px;
}

@media (max-width: 400px) {
  .mobile-nav-right-one p {
    font-size: 10px;
    padding: 6px 12px;
    gap: 4px;
  }
  .mobile-nav-right-one p svg {
    width: 14px;
    height: 14px;
  }
}

.mobile-nav-right-two {
  cursor: pointer;
}

#hamburger {
  width: 26px;
  height: auto;
  display: block;
}

.mobile {
  width: 100%;
  height: 100%;
}

/* PARTNER BAR */

.partner-container {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 30px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.partner-left {
  display: flex;
  align-items: center;
  gap: 0;
}

.partner-logos {
  display: flex;
  align-items: center;
}

.partner-row {
  display: flex;
  align-items: center;
}

.partner-label {
  font-size: 15px;
  font-weight: 600;
  color: #3B485E;
  margin-right: 24px;
  white-space: nowrap;
}

.logo-divider {
  padding: 0 24px;
  border-right: 1px solid #3B485E;
}

.logo-divider:last-child {
  border-right: none;
}

.partner-logo {
  height: 47px;
  width: auto;
  object-fit: contain;
}

.partner-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rating-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 200px;
  height: 72px;
  padding: 0 20px;
  border: 0.5px solid #51C0E0;
  border-radius: 15px;
  background: radial-gradient( circle at center, rgb(240, 236, 236) 0%, rgba(239, 242, 244, 0.95) 32%, rgba(115, 166, 255, 0.28) 68%, rgba(133, 156, 223, 0.38) 100% );
  box-shadow: inset 0 0 20px rgba(0, 67, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rating-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.trustpilot {
  height: 20px;
  width: auto;
  object-fit: contain;
}


.stars {
  display: flex;
  gap: 2px;
}

.stars img {
  width: 14px;
  height: 14px;
}

.rating-score {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
}

@media (max-width: 1200px) {
  .partner-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-right {
    flex-wrap: wrap;
  }
}

/* ===========================
   TABLET
=========================== */

/* =========================
   TABLET (768px - 991px)
========================= */

@media (min-width:768px) and (max-width:991px){

  .partner-container{

    max-width:834px;
    width:100%;

    margin:auto;

    padding:20px 24px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:12px;

    box-sizing:border-box;

  }

  .partner-left{

    width:100%;

    display:flex;
    justify-content:center;
    align-items:center;

    gap:0;

  }

  .partner-label{

    font-size:16px;
    font-weight:600;

    margin-right:18px;

    white-space:nowrap;

  }

  .partner-row{

    display:flex;
    align-items:center;

  }

  .logo-divider{

    padding:0 18px;

    border-right:1px solid #3B485E;

  }

  .partner-logo{

    height:38px;
    width:auto;

  }

  .partner-right{

    width:393px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

  }

  .rating-card{

    width:124px;
    min-width:124px;

    height:44px;

    padding:0 10px;

    border-radius:12px;
    margin-top:10px;

  }

  .trustpilot{

    height:14px;

  }

  .stars{

    gap:1px;

  }

  .stars img{

    width:10px;
    height:10px;

  }

  .rating-score{

    font-size:15px;
    font-weight:700;

  }

}
@media (max-width: 768px) {
  .partner-bar {
    padding: 16px;
  }

  .partner-left {
    flex-wrap: wrap;
    gap: 6px;
  }

  .partner-logos {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
    justify-content: center;
  }

  .partner-row {
    display: flex;
    flex-direction: row;
    gap: 6px;
  }

  .logo-divider {
    padding: 0 12px;
    border-right: 1px solid #3B485E;
  }

  .partner-right {
    width: 100%;
  }

  .rating-card {
    min-width: 170px;
    flex: 1;
  }

  .rating-score {
    font-size: 24px;
  }
}

/* STATS SECTION */
.stats-section {
  text-align: center;
  background: #f9f9f9;
}

.career-stats-wrapper {
  padding: 80px 0;
}

.stats-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #66BB46;
  color: #fff;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 28px;
}

.stats-title {
  margin: auto;
  color: #003da5;
}

.stats-description {
  margin: 18px auto 50px;
  color: #565656;
}

.stats-grid {
  max-width: 65%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.stats-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(to right,
      rgba(215, 232, 207, 0.3),
      #d7e8cf 15%,
      #d7e8cf 85%,
      rgba(215, 232, 207, 0.3));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stat-card {
  background: #fff;
  padding: 42px 20px;
}

.stat-card:not(:last-child) {
  border-right: 2px solid #d7e8cf;
}

.stat-number {
  font-family: "Instrument Sans", sans-serif;
  font-size: 58px;
  font-weight: 700;
  color: #0055d4;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #012667, #0f3b84, #0460ff, #77aaf0);
  /* background: linear-gradient(90deg, #012667,#0F3B84,#346bf7, #006aff ); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  background: linear-gradient(90deg, #012667, #0f3b84, #0460ff, #77aaf0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 18px;
}

/* ===========================
   TABLET (768px - 991px)
=========================== */

@media (min-width:768px) and (max-width:991px){

  .career-stats-wrapper{
    padding:60px 20px;
  }

  .stats-badge{
    font-size:14px;
    padding:8px 22px;
    margin-bottom:22px;
  }

  .stats-title{
    max-width:760px;
    margin:auto;
    font-size:42px;
    line-height:1.15;
  }

  .stats-description{
    max-width:760px;
    margin:18px auto 34px;
    font-size:16px;
    line-height:1.6;
  }

  .stats-grid{
    width:100%;
    max-width:797px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    border-radius:10px;
    overflow:hidden;
  }

  .stat-card{
    height:118px;
    padding:18px 10px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    border-right:1px solid #d7e8cf;
    border-bottom:none;
  }

  .stat-card:last-child{
    border-right:none;
  }

  .stat-number{
    font-size:30px;
    line-height:1.1;
    margin-bottom:8px;
    white-space:nowrap;
  }

  .stat-label{
    font-size:11px;
    line-height:1.35;
    text-align:center;
  }

}


/* ===========================
   MOBILE (0px - 767px)
=========================== */

@media (max-width:767px){

  .career-stats-wrapper{
    padding:50px 16px;
  }

  .stats-badge{
    font-size:13px;
    padding:8px 18px;
    margin-bottom:22px;
  }

  .stats-title{
    max-width:340px;
    margin:auto;
    font-size:28px;
    line-height:1.2;
  }

  .stats-description{
    max-width:320px;
    margin:18px auto 28px;
    font-size:15px;
    line-height:1.6;
  }

  .stats-grid{
    width:100%;
    max-width:360px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    border-radius: 0;
  }

  /* Outer gradient border ko mobile pe hide karo - sirf center cross chahiye */
  .stats-grid::before {
    display: none;
  }

  .stat-card{
    height:160px;
    padding:18px 10px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    border: none;
  }

  /* Sirf center cross - clean logic */
  .stat-card:nth-child(1),
  .stat-card:nth-child(2) {
    border-bottom: 1px solid #d7e8cf;
  }

  .stat-card:nth-child(1),
  .stat-card:nth-child(3) {
    border-right: 1px solid #d7e8cf;
  }

  .stat-number{
    font-size:28px;
    line-height:1.1;
    margin-bottom:8px;
    white-space:nowrap;
  }

  .stat-label{
    font-size:10px;
    line-height:1.4;
    text-align:center;
  }

}
@media (max-width: 600px) {
  .stats-section {
    padding-bottom: 60px;
  }

  .stats-description {
    font-size: 15px;
  }

  .stats-grid {
    max-width: 90%;
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card {
    border-bottom: 1px solid #d7e8cf;
  }

  .stat-card:nth-child(1),
  .stat-card:nth-child(3) {
    border-right: 2px solid #d7e8cf;
    border-bottom: 1px solid #d7e8cf;
  }

  .stat-card:nth-child(2),
  .stat-card:nth-child(4) {
    border-right: none !important;
  }

  .stat-card:nth-child(3),
  .stat-card:nth-child(4) {
    border-bottom: none;
  }

  .stat-number {
    font-size: 42px;
  }
}

/* PLACEMENT NETWORK */
.section {
  background:
    radial-gradient(circle at center, rgba(0, 110, 255, 0.18), transparent 45%),
    radial-gradient(circle at center bottom,
      #003da5 0%,
      transparent 60%),
    linear-gradient(90deg, #00173F 100%, #003da5 0%);
  padding: 80px 0;
  overflow: hidden;
}

.heading {
  text-align: center;
  margin-bottom: 40px;
}

.heading h3 {
  color: #66BB46;
}

.heading p {
  color: #fff;
  margin-top: 10px;
  font-size: 15px;
}

.marquee {
  overflow: hidden;
  margin: 12px 0;
}

.track {
  display: flex;
  gap: 14px;
  width: max-content;
}

.row1 {
  animation: scrollLeft 40s linear infinite;
}

.row2 {
  animation: scrollRight 40s linear infinite;
}

.row3 {
  animation: scrollLeft 40s linear infinite;
}

.logo {
  width: 200px;
  height: 75px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  color: #333;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.logo img {
  width: 150px;
  height: 55px;
  object-fit: contain;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.card {
  border: 1px solid transparent;
  border-radius: 18px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: 0.3s;
  position: relative;
  padding: 24px 16px 28px;
  min-height: 194px;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  padding: 1px;
  background: linear-gradient(to bottom,
      rgba(95, 160, 255, 0.5),
      transparent 70%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #66BB46;
}

.card .icon {
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  isolation: isolate;
  filter: none;
  
}

.card .icon img {
  width: 117px;
  height: 117px;
  object-fit: contain;
  display: block;
}

.card h3 {
  margin-top: 18px;
  color: #FFFFFF;
  font-size: 14.5px;
}

.card p {
  margin-top: 12px;
  color: #71a5ff;
  font-size: 12px;
  line-height: 1.6;
}

.cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.cta button {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  background: #66BB46;
  border: 1.5px solid #76E84B;
  box-shadow: 0 0 25px 0 #66BB4691;
}

@media (max-width: 1200px) {
  .cards {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 4px 16px 12px;
    margin: 40px auto 0;
    scrollbar-width: none;
  }

  .cards::-webkit-scrollbar {
    display: none;
  }

  .card {
    flex: 0 0 auto;
    width: 200px;
    scroll-snap-align: start;
  }
}

@media (max-width: 768px) {
  .cards {
    gap: 14px;
    padding: 4px 16px 12px;
  }

  .card {
    width: 220px;
  }

  .logo {
    width: 130px;
    height: 48px;
  }

  .logo img {
    width: 110px;
    height: 36px;
  }
}

@media (max-width: 500px) {
  .cards {
    justify-items: unset;
  }

  .card {
    width: 82%;
    max-width: 260px;
  }
}

/* WHY CHOOSE AWDIZ */
.choose-section {
  padding: 60px 16px;
  background: #fff;
}

.choose-container {
  max-width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.choose-title {
  color: #003DA5;
  margin-bottom: 20px;
  font-size: 32px;
}

.choose-subtitle {
  color: #000000;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.choose-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.choose-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.choose-feature:hover {
  background: #f2f8f1;
  border-left: 4px solid #66BB46;
  transform: translateX(6px);
  box-shadow: 0 10px 25px rgba(102, 187, 70, 0.08);
}

.choose-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eef2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: 0.3s;
}

.choose-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.choose-feature:hover .choose-icon {
  background: #e7f5e1;
}

.choose-content h3 {
  font-size: 16px;
  color: #081123;
  font-weight: 700;
  margin-bottom: 6px;
}

.choose-content p {
  font-size: 12px;
  color: #3B485E;
  line-height: 1.7;
}

.choose-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.choose-image-box {
  width: 100%;
  max-width: 600px;
  height: 640px;
  border-radius: 50% 50% 15% 15% / 40% 40% 15% 15%;
  background:
    radial-gradient(circle at center, rgba(0, 162, 255, 0.25), transparent 45%),
    linear-gradient(180deg, #001b57, #003da5);
  position: relative;
}

.choose-image-clip {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.choose-image-clip img,
.choose-image-clip video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choose-floating {
  position: absolute;
  width: 120px;
  background: #fff;
  padding: 14px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  animation: float 4s ease-in-out infinite;
}

.choose-card-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.choose-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.choose-floating h4 {
  font-size: 28px;
  color: #66BB46;
}

.choose-floating span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #6b7280;
}

.choose-card-top {
  top: 10%;
  left: -5%;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(102, 187, 70, 0.25);
}

.choose-card-bottom {
  right: -5%;
  bottom: 10%;
  z-index: 3;
  box-shadow: 0 15px 40px rgba(102, 187, 70, 0.25);
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* TABLET: stays side-by-side (per design) — only the visual box eases in height */
@media (max-width: 1024px) {
  .choose-visual {
    align-items: flex-end; /* box ko neeche align karega, figma jaisa */
  }

  .choose-image-box {    
    height: 461px;
    max-width: 595px;
    margin-top:210px ; /* center rahe agar column zyada wide ho */
  }
}

@media (max-width: 768px) {
  .choose-image-box {
    height: 317px;      /* pehle 500px tha — galat, figma ke 316.74 se match kiya */
    max-width: 349px;
  }

  .choose-floating {
    width: 104px;
  }

  .choose-floating h4 {
    font-size: 22px;
  }
}
/* MOBILE: visual column hidden entirely, text takes full width */
@media (max-width: 576px) {
  .choose-container {
    grid-template-columns: 1fr;
  }

  .choose-visual {
    display: none;
  }

  .stats-section {
    padding-bottom: 40px;
  }

  .stats-section .career-stats-wrapper {
    padding-top: 40px;
  }

  .partner-container {
    padding: 24px 0px 14px 0px;
    gap: 16px;
  }

  .partner-left {
    flex-wrap: wrap;
    gap: 10px 4px;
    width: 100%;
  }

  .partner-label {
    font-size: 14px;
    margin-right: 0;
    width: 100%;
    white-space: nowrap;
  }

  .partner-logos {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
    justify-content: center;
  }

  .partner-row {
    display: flex;
    flex-direction: row;
    gap: 6px;
  }

  .logo-divider {
    padding: 0 10px;
    border-right: 1px solid #3B485E;
  }

  .partner-logo {
    height: 38px;
  }

  .partner-right {
    gap: 6px;
    flex-wrap: nowrap;
  }

  .rating-card {
    flex: 1;
    min-width: 100px;
    height: 52px;
    padding: 0 10px;
    gap: 4px;
  }

  .rating-info {
    gap: 2px;
  }

  .trustpilot {
    height: 26px;
  }

  .stars img {
    width: 11px;
    height: 11px;
  }

  .rating-score {
    font-size: 20px;
  }

  .stats-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 14px;
  }

  .stat-card {
    padding: 24px 12px;
  }

  .section {
    padding: 50px 0;
  }

  .heading p {
    font-size: 13px;
  }

  .marquee {
    margin: 8px 0;
  }

  .logo {
    width: 120px;
    height: 44px;
  }

  .logo img {
    width: 100px;
    height: 32px;
  }

  .cards {
    gap: 6px;
    margin-top: 30px;
  }

  .card {
    padding: 20px 14px;
  }

  .card h3 {
    font-size: 14px;
  }

  .icon {
    width: 42px;
    height: 42px;
  }

  .cta button {
    padding: 14px 36px;
    font-size: 14px;
  }

  .choose-section {
    padding: 50px 16px;
  }

  .choose-container {
    gap: 40px;
  }

  .choose-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .choose-feature {
    padding: 14px;
  }

  .choose-image-box {
    height: 360px;
    max-width: 100%;
  }

  .choose-floating {
    width: 88px;
    padding: 10px;
  }

  .choose-floating h4 {
    font-size: 18px;
  }

  .choose-card-icon {
    width: 40px;
    height: 40px;
  }

  .choose-card-icon img {
    width: 28px;
    height: 28px;
  }

  .choose-card-top {
    top: -10px;
    left: 0;
  }

  .choose-card-bottom {
    right: 0;
    bottom: -10px;
  }
}



/* CAREER PATHS SECTION */

.career-paths {
  background: #fff;
}

.career-paths .section {
  max-width: 80%;
  margin: auto;
  padding: 80px 0;
  background: #ffff;
}

.career-paths .top {
  text-align: center;
  margin-bottom: 24px;
}

.career-paths .top .tag {
  color: #66BB46;
  font-weight: 700;
  font-size: 14px;
}

.career-paths .top h3 {
  color: #003DA5;
  margin: 10px 0;
  font-size: 40px;
}

.career-paths .top p {
  color: #3B485E;
  font-size: 14px;
  font-weight: 600;
}

.career-paths .tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.career-paths .tab {
  font-size: 12px;
  font-weight: 600;
  color: #3B485E;
  padding: 12px 22px;
  border: 1px solid #a8bdf0;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.career-paths .tab:hover {
  background: #eef3ff;
}

.career-paths .tab.active {
  background: #003DA5;
  color: #FDFCF8;
  font-weight: 800;
  font-size: 14px;
}

.career-paths .sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.career-paths .course {
  background: #fff;
  border: 1px solid #DFE5ED;
  border-radius: 18px;
  padding: 14px;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;

}

.career-paths .course:hover {
  border-color: #d7def1;
}

.career-paths .course.active {
  border-color: #2f66d0;
}

.career-paths .course-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f1f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.career-paths .course.active .course-icon-wrap {
  background: #2f66d0;
}

.career-paths .course-icon {
  width: 36px;
  height: 36px;
  display: block;
}

.career-paths .course.active .course-icon {
  filter: brightness(0) invert(1);
}

.career-paths .course h4 {
  font-size: 14px;
  font-weight: 800;
  color: #081123;
  font-family: "Inter", sans-serif;
}

.career-paths .course p {
  font-size: 12px;
  color: #3B485E;
  font-family: inter;
}

.career-paths .card {
  background: #fff;
  border: 2px solid #2f66d0;
  border-radius: 24px;
  overflow: hidden;
  display: none;
  width: auto;
  flex: none;
  scroll-snap-align: none;
}

.career-paths .card.active {
  display: block;
}

.career-paths .inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 400px;
  align-items: stretch; /* dono columns ki height match karo */
}

.career-paths .content {
  padding: 24px;
  min-width: 0;
}

.career-paths .badge {
  
  display: flex;
  width: fit-content;
  gap: 6px;
  background: #66BB46;
  color: #FFFFFF;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.career-paths .badge img {
  width: 12px;
  height: 12px;
  object-fit: cover;
}

.career-paths .title {
  color: #003DA5;
  margin: 15px 0;
  overflow-wrap: break-word;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.5;
  overflow: hidden;

}

.career-paths .stats {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.career-paths .stat {
  background: #DDEEFF;
  padding: 18px;
  flex: 1;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  text-align: left;
}

.career-paths .stat-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-bottom: 2px;
}

.career-paths .stat small {
  color: #5f6778;
  font-size: 13px;
}
.career-paths .awz-learn-h {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #2a3a5c;
    margin-bottom: 14px;
    text-align: left;
}

.career-paths .learn li {
  margin: 8px 0;
  color: #081123;
  font-size: 14px;
  font-family: Instrument Sans, sans-serif;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  text-align: left;
}

.career-paths .tick-icon {
  width: 18px;
  height: 18px;
}

.career-paths .btns {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.career-paths .btn {
  padding: 12px 18px;
  font-size: 14px;
  border-radius: 999px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none;
}

.career-paths .btn.green {
  background: #66BB46;
  color: #fff;
  border: none;
}

.career-paths .btn-icon {
  width: 16px;
  height: 16px;
}

.career-paths .image-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  align-self: stretch;
}

.career-paths .image-wrap img {
  display: block; /* ye add karo - inline gap khatam karega */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-paths .image-wrap:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      #fff 0%,
      rgba(255, 255, 255, 0.95) 15%,
      rgba(255, 255, 255, 0.5) 40%,
      transparent 60%);
  z-index: 1;
}

.career-paths .outcome {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(0, 18, 70, 0.85);
  color: rgba(255, 255, 255, 0.82);
  padding: 16px;
  border-radius: 14px;
  z-index: 2;
  text-align: left;
  font-size: 12px;
  font-family: "Instrument Sans", sans-serif;
}


.career-paths .bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d7def1;
}

.career-paths .bottom div {
  padding: 14px 16px;
  text-align: center;
  border-right: 1px solid #d7def1;
  font-size: 11px;
  font-weight: 500;
  color: #7b8698;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.career-paths .bottom div:last-child {
  border-right: none;
}

.career-paths .bottom strong {
  display: block;
  margin-bottom: 4px;
  color: #0c46b3;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: none;
  letter-spacing: 0;
}

.career-paths .bottom div:last-child strong {
  font-size: 20px;
}

.career-paths .panel {
  display: none;
}

.career-paths .panel.active {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
}

@media (max-width:1024px){

  .career-paths .section{
    max-width:95%;
    padding:60px 0;
  }

  .career-paths .panel.active{
    display:flex;
    flex-direction:column;
    gap:20px;
  }

  .career-paths .sidebar{
    display:flex;
    flex-direction:row;
    overflow-x:auto;
    gap:10px;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }

  .career-paths .sidebar::-webkit-scrollbar{
    display:none;
  }

  .career-paths .course{
    min-width:280px;
    flex-shrink:0;
    padding:12px;
    min-height:84px;
    gap:10px;
    align-items:center;
  }

  .career-paths .course h4{
    font-size:18px;
    line-height:1.2;
  }

  .career-paths .course p{
    font-size:12px;
  }

  .career-paths .card.active{
    width:100%;
  }

  .career-paths .inner{
    grid-template-columns:1fr 1fr;
  }

  .career-paths .title{
    font-size:24px;
  }
  .career-paths .btn {
    height: 38px;
    padding: 0 16px;
    font-size: 13px;
  }
}

@media (max-width:768px){

  .career-paths .section{
    max-width:95%;
    padding:50px 0;
  }

  .career-paths .top h3{
    width: 463px;
    font-size:32px;
    line-height:1.2;
  }

  .career-paths .top p{
    font-size:16px;
    width: 495px;
  }

  /* Tabs */
  .career-paths .tabs{
    flex-wrap:nowrap;
    overflow-x:auto;
    justify-content:flex-start;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }

  .career-paths .tabs::-webkit-scrollbar{
    display:none;
  }

  .career-paths .tab{
    flex:0 0 auto;
    white-space:nowrap;
  }

  /* Sidebar */
  .career-paths .panel.active{
    display:flex;
    flex-direction:column;
    gap:18px;
  }

  .career-paths .sidebar{
    display:flex;
    flex-direction:row;
    overflow-x:auto;
    gap:10px;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }

  .career-paths .sidebar::-webkit-scrollbar{
    display:none;
  }

  .career-paths .course{
    min-width:340px;
    flex-shrink:0;
  }

  .career-paths .card.active{
    width:100%;
  }

  .career-paths .inner{
    grid-template-columns:1fr;
  }

  .career-paths .content{
    padding:20px;
  }

  .career-paths .image-wrap{
    height:300px;
  }

  /* Stats */
  .career-paths .stats{
    flex-direction:row;
  }

  .career-paths .stat{
    padding:14px;
  }

  /* Buttons */
  .career-paths .btns{
    flex-direction:row;
  }

  .career-paths .btn {
    height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

  .career-paths .bottom{
    grid-template-columns:repeat(2,1fr);
  }

  .career-paths .title{
    font-size:22px;
  }

}

@media (max-width:480px){

  .career-paths .section{
    max-width:95%;
    padding:40px 0;
  }

  .career-paths .top{
    margin-bottom:20px;
  }

  .career-paths .top h3{
    font-size:32px;
    line-height:1.2;
    max-width:328px;
  }

  .career-paths .top p{
    font-size:14px;
    line-height:1.6;
    max-width:328px;
  }

  .career-paths .course{
    min-width:293px;
    height: 74px;
    padding:12px;
  }

  .career-paths .course h4{
    font-size:18px;
  }

  .career-paths .course p{
    font-size:12px;
  }

  .career-paths .content{
    padding:20px;
  }

  .career-paths .title{
    font-size:20px;
    line-height:1.3;
    margin:14px 0;
  }

  .career-paths .badge{
    font-size:10px;
    padding:6px 10px;
  }

  .career-paths .stats{
    gap:8px;
    margin-bottom:18px;
  }

  .career-paths .stat{
    padding:12px;
  }

  .career-paths .stat strong{
    font-size:20px;
  }

  .career-paths .stat small{
    font-size:10px;
  }

  .career-paths .learn li{
    font-size:14px;
  }

  /* Hide image like Figma */
  .career-paths .image-wrap{
    display:none;
  }

  .career-paths .card.active{
    width:100%;
    max-width:none;
  }

  .career-paths .inner{
    display:block;
    min-height:auto;
  }

  .career-paths .btns{
    flex-direction:column;
    gap:10px;
  }

  .career-paths .btn{
    width:100%;
    justify-content:center;
  }

  .career-paths .bottom{
    grid-template-columns:repeat(2,1fr);
  }

  .career-paths .bottom strong{
    font-size:20px;
    font-weight:900;
    font-family: Instrument Sans, sans-serif;
  }

  .career-paths .bottom div{
    padding:12px 8px;
    font-size:9px;
  }

}

/* ===== LEAD SECTION ===== */
.lead-wrapper {
  background: #fff;
  width: 100%;
  position: relative;
  padding: 60px 20px;
}

.lead-inner {
  max-width: 90%;
  margin: auto;
}

.lead-banner {
  height: 40%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: start;
  padding: 60px;
  background:
    linear-gradient(0deg, #003DA5 0% ,#00173F 50% , #00173F 100%);
}

.lead-content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.lead-heading-wrap {
  margin: 0;
}

.lead-text-wrap {
  margin: 0;
}

.lead-heading {
  line-height: 1.08;
  font-weight: 700;
  color: white;
  font-size: 36px;
  margin: 0;
}

.lead-content p {
  color: #66BB46;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 600;
  max-width: 79%;
}

.lead-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 500px;
}

.lead-stat h3 {
  font-size: 40px;
  color: #66BB46;
  font-weight: 700;
}

.lead-stat span {
  display: block;
  margin-top: 6px;
  color: white;
  font-size: 14px;
}

.lead-student {
  position: absolute;
  bottom: 0;
  width: clamp(400px, 40vw, 750px);
  z-index: 3;
}

@media (min-width: 1900px) {
  .lead-student {
    right: 28%;
  }
}

@media (min-width: 1600px) {
  .lead-student {
    right: 26%;
  }
}

@media (max-width: 1599px) and (min-width: 1401px) {
  .lead-student {
    right: 28%;
  }
}

@media (max-width: 1400px) and (min-width: 1201px) {
  .lead-student {
    right: 25%;
    width: clamp(280px, 30vw, 500px);
  }
}

.lead-student img {
  width: 100%;
  display: block;
  transform: scaleX(-1);
}

/* ===== Mobile/Tablet CTA button (hidden on desktop) ===== */
.lead-mobile-cta {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 340px;
  height: 50px;
  border: 2px solid #76E84B;
  background: #66BB46;
  color: white;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(102, 187, 70, 0.35);
}

.lead-mobile-cta:hover {
  background: #5aa93c;
}

/* ===== Form overlay wrapper =====
   Desktop: behaves as if the form-card were a direct child of .lead-inner (original layout untouched).
   Mobile/Tablet (see media queries below): becomes a fixed, centered popup. */
.lead-form-overlay {
  display: contents;
}

.lead-form-backdrop,
.lead-form-close {
  display: none;
}

.lead-form-card {
  height: 580px;
  position: absolute;
  top: 50%;
  right: 12%;
  transform: translateY(-50%);
  width: 393px;
  background: #eef0fb;
  border: 3px solid #d7dbee;
  border-radius: 24px;
  padding: 25px;
  z-index: 10;
  box-shadow:
    -40px 0 80px -20px rgba(102, 187, 70, 0.2),
    120px 0 180px -30px rgba(99, 162, 76, 0.5);
}

.lead-form-heading {
  text-align: center;
  color: #003DA5;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.lead-form-group {
  margin-bottom: 12px;
}

.lead-form-group label {
  display: block;
  margin-bottom: 6px;
  color: #4b5563;
  font-size: clamp(12px, 1vw, 14px);
}

.lead-form-group input,
.lead-form-group select {
  width: 100%;
  height: 38px;
  border: 2px solid #dde2ec;
  border-radius: 100px;
  background: white;
  padding: 0 18px;
  font-size: clamp(13px, 1.2vw, 15px);
  box-sizing: border-box;
}

.lead-textarea {
  width: 100%;
  height: 80px;
  border: 2px solid #dde2ec;
  border-radius: 16px;
  background: white;
  padding: 12px 18px;
  font-size: clamp(13px, 1.2vw, 15px);
  box-sizing: border-box;
  resize: vertical;
  font-family: inherit;
}

.lead-custom-select {
  width: 100%;
}

.lead-select-options {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90%, 360px);
  max-height: 100%;
  overflow-y: auto;
  background: #edf8fa;
  border: 1px solid #4fca82;
  border-radius: 5px;
  box-shadow: 2px 2px #4fca82;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  display: none;
  z-index: 100;
  box-sizing: border-box;
}

.lead-select-options.open {
  display: block;
}

.lead-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 48px;
  border: 2px solid #4fca82;
  border-radius: 100px;
  background: white;
  padding: 0 18px;
  font-size: clamp(13px, 1.2vw, 15px);
  box-sizing: border-box;
  cursor: pointer;
  color: #3d3d3d;
  font-weight: 600;
  transition: border-color 0.2s;
}

.lead-select-trigger:hover {
  border-color: #b0b8c9;
}

.lead-select-arrow {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.lead-select-arrow.open {
  transform: rotate(180deg);
}

.lead-select-options li {
  padding: 8px 14px;
  margin: 0 5% 2px 5%;
  border-radius: 5px;
  cursor: pointer;
  font-size: clamp(13px, 1.2vw, 15px);
  color: black;
  background: #afe1c4;
  transition: all 0.2s ease;
}

.lead-select-options li:hover {
  background: #e9e9e9;
}

.lead-select-options li {
  transition: all 0.2s ease;
}

.lead-select-options li.active {
  background: #e9e9e9;
  color: black;
  font-weight: 600;
}

.lead-form-group input::placeholder,
.lead-textarea::placeholder {
  color: #c1c6d1;
}

.lead-submit {
  width: 100%;
  height: 48px;
  border: none;
  background: #66BB46;
  color: white;
  border-radius: 100px;
  font-size: 14px;
  font-family: Instrument Sans;
  margin-top: 4px;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(102, 187, 70, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lead-submit img,
.lead-mobile-cta img {
  width: 24px;
  height: 16px;
  display: block;
  object-fit: contain;
}

.lead-submit span,
.lead-mobile-cta span {
  display: none;
}

/* ============================================================
   TABLET (max-width: 1200px)
   - Form becomes a popup modal (triggered by .lead-mobile-cta)
   - Student image STAYS VISIBLE here (per design reference)
   ============================================================ */
@media (max-width: 1200px) {
  .lead-mobile-cta {
    display: flex;
  }

  .lead-banner {
    padding: 40px;
    align-items: flex-start;
  }

  .lead-content {
    max-width: 58%;
    gap: 18px;
  }

  .lead-heading {
    font-size: clamp(22px, 3.2vw, 30px);
  }

  .lead-content p {
    font-size: clamp(13px, 1.6vw, 16px);
    line-height: 1.6;
  }

  .lead-stats {
    max-width: 100%;
    gap: 16px;
  }

  .lead-stat h3 {
    font-size: clamp(24px, 3vw, 34px);
  }

  .lead-student {
    width: clamp(150px, 32vw, 380px);
    right: 0;
    bottom: 0;
    margin-right: 10px;
    margin-bottom: 5px;
  }

  .lead-student img {
    width: 100%;
    display: block;
    transform: scaleX(-2.0);
    height: 346px;
  }

  .lead-form-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .lead-form-overlay.active {
    display: flex;
  }

  .lead-form-backdrop {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 60, 0.55);
  }

  .lead-form-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #0f3b84;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
  }

  .lead-form-heading {
    padding: 0 14px;
    font-size: 15px;
  }

  .lead-form-card {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 380px;
    max-height: 90vh;
    overflow-y: auto;
    margin: 0;
    z-index: 1;
  }

}

@media (max-width: 1024px) {
  .lead-heading {
    font-size: 30px;
  }

  .lead-content p {
    font-size: 14px;
    max-width: 373px;
  }

  .lead-stat h3 {
    font-size: 34px;
  }

  .lead-stat span {
    font-size: 13px;
  }

  .lead-stats {
    gap: 28px;
  }

  .lead-banner {
    padding: 36px;
  }

  .lead-form-card {
    padding: 20px;
  }

  .lead-form-group input,
  .lead-form-group select {
    height: 44px;
    padding: 0 14px;
  }

  .lead-submit {
    height: 46px;
  }
}

/* ============================================================
   MOBILE (max-width: 768px)
   - Student image hidden here (per design reference)
   ============================================================ */
@media (max-width: 768px) {
  .lead-student {
    display: none;
  }

  .lead-heading {
    font-size: 26px;
  }

  .lead-content p {
    font-size: 15px;
  }

  .lead-stats {
    gap: 20px;
  }

  .lead-stat h3 {
    font-size: 32px;
  }

  .lead-stat span {
    font-size: 13px;
  }

  .lead-form-card {
    padding: 16px;
  }

  .lead-banner {
    height: auto;
    padding: 24px;
  }

  .lead-content {
    max-width: 100%;
    padding: 40px 20px;
  }

  .lead-form-group input,
  .lead-form-group select {
    height: 42px;
    padding: 0 14px;
  }

  .lead-submit {
    height: 44px;
  }
  .lead-mobile-cta img{
    display:none;
  }
}

@media (max-width: 480px) {
  .lead-heading {
    font-size: 18px;
    max-width: 289px;
  }

  .lead-content p {
    font-size: 14px;
    max-width: 277px;
  }

  .lead-stats {
    gap: 16px;
  }

  .lead-stat h3 {
    font-size: 26px;
  }

  .lead-stat span {
    font-size: 12px;
  }

  .lead-banner {
    padding: 16px;
  }

  .lead-form-card {
    padding: 14px;
  }

  .lead-form-heading {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .lead-form-group {
    margin-bottom: 12px;
  }

  .lead-form-group input,
  .lead-form-group select {
    height: 42px;
    font-size: 14px;
    padding: 0 16px;
  }

  .lead-submit {
    height: 46px;
    font-size: 15px;
  }

  .lead-mobile-cta {
    height: 46px;
    font-size: 14px;
  }
}

/* TOP CAREER PATHS CARDS (from inline) */

.tc-mobile-btn {
  display: none;
}

.tc-section {
  width: 100%;
  margin: auto;
  padding: 80px 0px 0px 0px;
}

.tc-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.tc-section .section-header h4 {
  margin-bottom: 15px;
  color: #FFFFFF;
  font-size: 42px;
  line-height: 1.25;
  font-weight: 700;
}

.tc-section .section-header p {
  max-width: 80%;
  font-size: 16px;
  margin: auto;
  color: #FFFFFF;
  line-height: 1.7;
}

.tc-grid {
  max-width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s ease;
  z-index: 1;
}


/* Blue glow layer */
.tc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0144FF00 50%, #5290ee 100%);
  pointer-events: none;
}

/* Top spotlight */
.tc-card::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  left: 50%;
  top: -180px;
  transform: translateX(-50%);

  background: radial-gradient(circle,
      rgba(1, 68, 255, 0.45) 0%,
      rgba(1, 68, 255, 0.18) 35%,
      transparent 70%);

  filter: blur(50px);
  pointer-events: none;
}

.tc-card:hover {
  transform: translateY(-8px);

}

.tc-card-img {
  position: relative;
  height: 192px;
  overflow: hidden;
}

.tc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
  -webkit-mask-image: linear-gradient(to bottom,
      #000 0%,
      #000 55%,
      rgba(0, 0, 0, 0.8) 75%,
      transparent 100%);
  mask-image: linear-gradient(to bottom,
      #000 0%,
      #000 55%,
      rgba(0, 0, 0, 0.8) 75%,
      transparent 100%);
}

.tc-card:hover img {
  transform: scale(1.04);
}

.tc-card-img::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  height: 160px;
  background: linear-gradient(to bottom,
      transparent 0%,
      #003da5 30%,
      #00184d 50%,

    );
  pointer-events: none;
  z-index: 1;
}

.tc-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  background: #8cff5e;
  color: #0d2900;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}
.tc-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 10px;
}

.tc-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.tc-body {
  padding: 10px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  z-index: 5;
  gap: 14px;
}

.tc-body h5 {
  font-size: 21px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
}

.tc-body p {
  color: #FFFFFF;
  line-height: 1.6;
  font-size: 14px;
}

.tc-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
}

.tc-duration {
  color: #89B5FF;
  font-weight: 600;
}

.tc-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  padding: 7px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  margin-top: auto;
  transition: 0.3s;
}

.tc-btn:hover {
  background: rgba(118, 232, 75, 0.1);
  border-color: #76e84b;
}
.tc-line{

  height: 1px;
   background: #6678A9;
   margin: 18px 0;
}

.tc-body-line {
  width: 100%;
  height: 1px;
  background: #6678A9;
}

.tc-view {
  text-align: center;
  margin: 40px 0 120px 0;
}

.tc-view a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: #66BB46;
  border: 1.5px solid #76E84B;
  box-shadow: 0 0 25px 0 #66BB4691;
  color: #FFFFFF;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
}

.tc-view a:hover {
  box-shadow: 0 12px 40px rgba(126, 255, 100, 0.5);
}

.tc-mobile-btn{
  text-align: center;
  margin: 40px 0 120px 0;
}

.tc-mobile-btn a{
   display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: #66BB46;
  border: 1.5px solid #76E84B;
  box-shadow: 0 0 25px 0 #66BB4691;
  color: #FFFFFF;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
}
.tc-mobile-btn a:hover {
  box-shadow: 0 12px 40px rgba(126, 255, 100, 0.5);
}


@media (max-width: 1200px) and (min-width: 769px) {
  .tc-grid {
    max-width: 95%;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .tc-grid {
    max-width: 95%;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .tc-grid::-webkit-scrollbar {
    display: none;
  }

  .tc-card {
    scroll-snap-align: start;
    flex: 0 0 66%;
    min-width: 260px;
  }

  .tc-card-img {
    height: 150px;
  }
}

@media (max-width:480px){

  .tc-card{
    flex:0 0 82%;
    min-width:240px;
  }

  .tc-card-img{
    height:170px;
  }

  /* Hide View All Programs */
  .tc-view{
    display:none;
  }

  /* Show Green Button */
  .tc-mobile-btn{
    display:flex;
    justify-content:center;
    margin:26px 0 40px;
    padding:0 16px;
  }

  .tc-mobile-btn .journey-btn{
    width:100%;
    max-width:300px;
    justify-content:center;
    margin:0;
  }

}

/* JOURNEY / PROCESS SECTION (from inline) */
.journey-wrapper {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
}

.top-glow {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 400px;
  background:
    radial-gradient(ellipse,
      #5CC933 0%,
      rgba(92, 201, 51, 0.55) 30%,
      rgba(92, 201, 51, 0.15) 55%,
      transparent 75%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.journey-content {
  position: relative;
  z-index: 2;
  padding: 80px;
  border-radius: 100px 100px 0 0;
  background:
    linear-gradient(180deg,
      #00338b 0%,
      #00266f 35%,
      #00184d 70%,
      #00184d 100%);
}

.journey-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7cff5b, transparent);
  z-index: 3;
  border-radius: 24px 24px 0 0;
  pointer-events: none;
}

.journey-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.journey-hero-text small {
  color: #7eff57;
  font-weight: 600;
  font-size: 15px;
}

.journey-hero-text h5 {
  margin: 12px 0 20px;
  font-size: clamp(24px, 3.5vw, 64px);
  font-weight: 800;
  color: #fff;
}

.journey-hero-text p {
  color: #d9e5ff;
  line-height: 1.8;
  max-width: 520px;
  font-weight: 600;
  font-size: 16px;
}

.journey-hero-text .sub {
  margin-top: 25px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}

.journey-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  background: #66BB46;
  border: 1.5px solid #76E84B;
  box-shadow: 0 0 25px 0 #66BB4691;
  color: #ffff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s;
}

.journey-btn:hover {
  transform: translateY(-3px);
}

.journey-hero-image img {
  width: 90%;
  display: block;
  border-radius: 24px;
  margin:  auto;
}

.section-title {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 70px;
}

.section-title span {
  color: #7eff57;
  font-size: 14px;
}

.section-title h5 {
  margin-top: 12px;
  color: #fff;
  font-size: 48px;
}

/* PROCESS CARDS GRID */
.process-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
  width: 98%;
  margin: 50px auto;
}

.process-card-item {
  background:
    linear-gradient(180deg,
      #00338b 0%,
      #00266f 35%,
      #00184d 100%);
  min-height: 360px;
  padding: 25px;
  border-radius: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.3s ease,
    box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-card-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7cff5b, transparent);
  z-index: 3;
  pointer-events: none;
}

.process-card-item:hover {
  transform: translateY(-10px);
  border-color: #66BB46;
  box-shadow: 0 15px 40px rgba(102, 187, 70, 0.2);
}

.process-card-number {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.process-card-icon {
  width: 109px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-cards-grid h3 {
  font-size: 16px;
  font-weight: 600;
  font-family: Instrument Sans, sans-serif;
}

.process-card-item h3 {
  color: #fff;
}

.process-card-item p {
  color: #aeacac;
  font-size: 14px;
  line-height: 22px;
  font-family: Instrument Sans;
}

.process-card-item ul {
  margin-top: auto;
  list-style: none;
}

.process-card-item li {
  font-size: 14px;
  margin: 7px 0;
  color: #cbcaca;
}

.process-card-item li:before {
  content: "●";
  margin-right: 10px;
  color: var(--green);
}

/* card color variants */
.process-cards-grid .blue .process-card-number {
  background: #4d8aff;
  color: #fff;
}

.process-cards-grid .green .process-card-number {
  background: #66BB46;
  color: #fff;
}

.process-cards-grid .purple .process-card-number {
  background: #a78bfa;
  color: #fff;
}

.process-cards-grid .orange .process-card-number {
  background: #fb923c;
  color: #fff;
}

@media (max-width: 1199px) {
  .process-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .process-cards-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 0 10px;
    scrollbar-width: none;
  }

  .process-cards-grid::-webkit-scrollbar {
    display: none;
  }

  .process-cards-grid .process-card-item {
    flex: 0 0 80%;
    scroll-snap-align: start;
    min-height: auto;
    padding: 20px;
    opacity: 1;
    transform: none;
  }

  .process-cards-grid .process-card-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .process-cards-grid h3 {
    font-size: 15px;
  }

  .process-card-item p {
    font-size: 12px;
  }

  .process-card-item li {
    font-size: 11px;
  }

  .process-cards-grid .process-card-number {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}

/* .assurance {

  position: relative;
  z-index: 2;
  margin-top: 40px;
  text-align: center;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(90deg, #003DA5  0%, #66BB46 50%, #003DA5 100%  ),
  linear-gradient(90deg, #003DA5  0%, #66BB46 50%, #003DA5 100%  );

}
.assurance h3 {
  font-size: 26px;
  color: #fff; 
}
.assurance p {
  margin-top: 8px;
  color: #d6e2ff;
} */

.assurance {
  position: relative;
  z-index: 2;
  width: 791px;
  max-width: calc(100% - 32px);
  min-height: 79px;
  margin: 40px auto 0;
  text-align: center;
  padding: 14px 20px 12px;
  overflow: hidden;
  border-radius: 0;

  background: linear-gradient(90deg,
      rgba(0, 61, 165, 0) 0%,
      rgba(97, 243, 44, 0.42) 55%,
      rgba(0, 61, 165, 0) 100%);
}

.assurance h5,
.assurance h4 {
  color: #fff;
  font-size: 24px;
}

.assurance::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(4, 26, 63, 0) 0%,
      rgba(86, 252, 36, 0.85) 60%,
      rgba(4, 26, 63, 0) 100%);
  opacity: 0.75;
}

.assurance::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(4, 26, 63, 0) 0%,
      rgba(82, 129, 65, 0.85) 60%,
      rgba(4, 26, 63, 0) 100%);
  opacity: 0.75;
}

.assurance h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}

.assurance p {
  position: relative;
  z-index: 2;
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
}

.bottom-btn {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .journey-content {
    padding: 50px 40px;
    border-radius: 40px 40px 0 0;
  }

  .journey-hero {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .journey-hero-text small {
    width: auto;
    height: auto;
  }

  .journey-hero-text p {
    width: 100%;
    height: auto;
  }

  .journey-hero-image img {
    width: 100%;
    display: block;
  }
}

@media (max-width: 768px) {
  .journey-content {
    padding: 30px 20px;
    border-radius: 30px;
  }

  .journey-hero {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .journey-hero-text {
    display: contents;   /* isse iska box hat jaata hai, andar ke items seedhe journey-hero ke child ban jaate hain */
  }

  .journey-hero-text small {
    width: 100%;
    height: auto;
    order: 1;
  }

  .journey-hero-text h5 {
    order: 2;
    font-size: 32px;
  }

  .journey-hero-text p {
    width: 100%;
    font-size: 14px;
    height: auto;
    order: 3;
  }

  .journey-hero-image {
    order: 4;
  }

  .journey-hero-text .sub {
    order: 5;
  }

  .journey-btn {
    order: 6;
    width: 100%;
  }

  .journey-hero-image img {
    width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 20px;
  }
  .section-title span{
    display:none;
  }
}

@media (max-width: 480px) {
  .journey-content {
    padding: 20px 14px;
    border-radius: 60px;
  }
   .journey-hero-text h5 {
    font-size: 32px;
    width: 258px;
    font-family: Instrument Sans;
  }
   .journey-hero-text p {
    font-size: 14px;
    font-weight: 500;
    width: 274px;
    font-family: Instrument Sans;
  }

  .journey-hero-image img {
    width: 100%;
    border-radius: 15px;
  }
  .journey-hero-text small {
  font-size: 14px;
  width: 100%;
  padding: 20px;
  }
}
@media (max-width: 380px) {
  .journey-content {
    padding: 16px 10px;
    border-radius: 60px;
  }

  .journey-hero-text h5 {
    font-size: 32px;
    width: 258px;
    font-family: Instrument Sans;
  }

  .journey-hero-text p {
    font-size: 14px;
    font-weight: 500;
    width: 274px;
    font-family: Instrument Sans;
  }

  .journey-btn {
    padding: 12px 18px;
    font-size: 14px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }

  .journey-hero-image img {
    width: 100%;
    border-radius: 15px;
  }

  .section-title h5 {
    font-size: 20px;
  }
}

/*STUDENT CAREER TRANSFORMATIONS*/
.student-section {
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: #04193C;
}

.student-title {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.student-marquee {
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
}

.student-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.student-track.left {
  animation: scrollLeft 40s linear infinite;
}

.student-track.right {
  animation: scrollRight 40s linear infinite;
}

.student-marquee:hover .student-track {
  animation-play-state: paused;
}

.student-card{
    width:242px;
    height:168px;
    position:relative;
    overflow:hidden;
    border-radius:30px;
    flex-shrink:0;
    display:flex;

    /* Figma Background */
    background:
        linear-gradient(
            180deg,
            #00338B 0%,
            #003283 14%,
            #002C73 32%,
            #00255F 55%,
            #011d4e 78%,
            #04193C 100%
        );

    border: px solid rgba(255,255,255,.03);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        inset 0 -18px 28px rgba(0,0,0,.12);
}

.student-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;

    background:
        radial-gradient(
            circle,
            #66BB46 0%,
            #48925B 30%,
            rgba(0,51,139,0) 100%
        );

    z-index:5;
}
.student-card::after{
    content:"";
    position:absolute;
    inset:0;

    background:
        radial-gradient(
            ellipse 150px 170px at 88% 45%,
            rgba(18,87,255,.12) 0%,
            rgba(18,87,255,.08) 32%,
            rgba(18,87,255,.03) 52%,
            rgba(18,87,255,0) 72%
        );

    pointer-events:none;
}

.student-card-content {
  flex: 0 0 60%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.name {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 82px;
  height: 1px;
  background: #FFFFFF;
  border-radius: 10px;
}
.role {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  font-family: instrument-sans, sans-serif;
  line-height: 1.2;
  max-width: 128px;
  overflow-wrap: break-word;
}


.company-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.at {
  color: #FFFFFF;
  font-size: 14px;
  display: block;
  text-align: center;
}

.company img {
  height: 28.5px;
  width: 93px;
  display: block;
  margin: 0 auto;
}

.student-img-wrap {
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  flex: 0 0 40%;
}

.student-img-wrap .student-img {
  height: 100%;
  object-fit: cover;
  display: block;

}

.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, #021a4a, transparent);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, #021a4a, transparent);
}

.student-features {
  max-width: 80%;
  margin: 50px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.student-feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.student-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(121, 214, 74, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #48D858;
  font-size: 24px;
}

.student-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.student-feature h4 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 20px;
}

.student-feature p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}
@media (max-width:1024px){

   .name{
    font-size:14px;
    padding-bottom:10px;
    margin-bottom:10px;
  }

  .name::after{
    width:72px;
  }

  .role{
    font-size:12px;
    max-width:130px;
  }

  .student-features {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 16px;
    gap: 10px;
    max-width: 100%;
  }

  .student-feature {
    padding: 12px;
    gap: 10px;
    border-radius: 14px;
  }

  .student-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .student-icon img {
    width: 20px;
    height: 20px;
  }

  .student-feature h4 {
    font-size: 15px;
    margin-bottom: 3px;
  }

  .student-feature p {
    font-size: 12px;
    line-height: 1.3;
  }

}

@media (max-width: 768px) {
  .student-section {
    padding: 50px 0;
  }

  .student-title {
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .student-card {
    width: 242px;
    height: 168px;
    border-radius: 14px;
  }

  .role {
    font-size: 12px;
    max-width: 120px;
    line-height:1.35;
  }

  .student-features {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 12px;
  }

  .student-feature {
    padding: 16px;
  }

  .student-feature h4 {
    font-size: 16px;
  }

  .student-feature p {
    font-size: 13px;
  }

  .fade-left,
  .fade-right {
    width: 50px;
  }
   .name{
    font-size:13px;
    padding-bottom:8px;
    margin-bottom:8px;
  }

  .name::after{
    width:60px;
  }
}

@media (max-width: 480px) {
  .student-section {
    padding: 35px 0;
  }

  .student-title {
    margin-bottom: 22px;
  }

  .student-card {
    width: 200px;
    height: 120px;
    border-radius: 12px;
  }

  .name{
    font-size:12px;
  }

  .name::after{
    width:50px;
  }

  .role {
    font-size: 11px;
    max-width: 100px;
  }

  .at {
    font-size: 10px;
  }

  .company img {
    height: 24px;
  }

  .student-marquee {
    margin-bottom: 12px;
  }

  .student-features {
    gap: 8px;
  }

  .student-feature {
    padding: 12px;
    gap: 10px;
  }

  .student-feature h4 {
    font-size: 13px;
  }

  .student-feature p {
    font-size: 11px;
  }

  .student-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .student-icon img {
    width: 20px;
    height: 20px;
  }

  .student-feature h4 {
    font-size: 13px;
  }

  .student-feature p {
    font-size: 11px;
  }

  .fade-left,
  .fade-right {
    width: 30px;
  }
}

/* ========== TESTIMONIAL CAROUSEL (from test.html) ========== */
.carousel-wrapper {
  width: 100%;
  max-width: 100%;
  height: 582px;
  position: relative;
  background: #04193C;
  overflow: hidden;
}

.carousel {
  width: 100%;
  height: 500px;
  position: relative;
}

.slide {
  position: absolute;
  width: 900px;
  height: 380px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease,
    filter 0.6s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-card {
  display: flex;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.t-card-left {
  width: 38%;
  position: relative;
}

.t-card-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
}

.t-card-right {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote {
  font-size: 14px;
  line-height: 1.8;
  color: #3B485E;
  max-width: 95%;
}

.placement {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 10px 30px 0 0;
  width: 411px;
  height: 77px;
}

.placement>div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.placement span {
  font-size: 14px;
  color: #667085;
  font-weight: 700;
}

.placement h2 {
  font-size: 36px;
  color: #3B485E;
  margin: 8px 0 0;
}

.placement img {
  width: 160px;
  height: 48px;
  object-fit: contain;
}

.overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  border-radius: 0 0 20px 20px;
}

.overlay h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.overlay p {
  font-size: 14px;
  opacity: 0.9;
}

.play-btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn img {
  width: 48px;
  height: 48px;
}

.nav img {
  width: 60px;
  height: 60px;
}

.slide.active {
  transform: translate(-50%, -50%) scale(1.08);
  opacity: 1;
  filter: blur(0);
  z-index: 10;
}

.slide.prev {
  transform: translate(-150%, -50%) scale(0.75);
  opacity: 0.4;
  filter: blur(4px);
  z-index: 5;
}

.slide.next {
  transform: translate(50%, -50%) scale(0.75);
  opacity: 0.4;
  filter: blur(4px);
  z-index: 5;
}

.slide.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.modal-video {
  width: 100%;
  height: 100%;
  border: none;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
}

.no-transition,
.no-transition::before,
.no-transition::after {
  transition: none !important;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  font-size: 24px;
  z-index: 20;
}

.nav.prev-btn {
  left: calc(50% - 486px - 30px);
}

.nav.next-btn {
  left: calc(50% + 486px - 30px);
}

.dots{
    position: absolute;
    left: 50%;
    bottom: 95px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c0bdbd;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #003DA5;
  width: 30px;
  border-radius: 5px;
}

 .dots-offer-btn{
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);

    width: 292px;
    height: 50px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50px;
    text-decoration: none;

    background: #66BB46;
    border: 1.5px solid #76E84B;
    color: #fff;
    font-size: 16px;
    font-weight: 700;

    box-shadow: 0 0 25px rgba(102,187,70,.40);
}


@media (max-width: 1200px) {
  .slide {
    width: 700px;
    height: 320px;
  }

  .slide.active {
    transform: translate(-50%, -50%) scale(1);
  }

  .slide.prev {
    transform: translate(-145%, -50%) scale(0.7);
  }

  .slide.next {
    transform: translate(45%, -50%) scale(0.7);
  }

  .nav.prev-btn {
    left: calc(50% - 350px - 25px);
  }

  .nav.next-btn {
    left: calc(50% + 350px - 25px);
  }
   .dots-offer-btn{
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);

    width: 292px;
    height: 50px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50px;
    text-decoration: none;

    background: #66BB46;
    border: 1.5px solid #76E84B;
    color: #fff;
    font-size: 16px;
    font-weight: 700;

    box-shadow: 0 0 25px rgba(102,187,70,.40);
}
}

@media (max-width: 1024px) {
  .carousel-wrapper {
    height: 520px;
  }

  .slide {
    width: 80%;
    max-width: 620px;
    height: 320px;
  }

  .slide.active {
    transform: translate(-50%, -50%) scale(1);
  }

  .slide.prev {
    transform: translate(-140%, -50%) scale(0.7);
  }

  .slide.next {
    transform: translate(40%, -50%) scale(0.7);
  }

  .t-card-left {
    width: 35%;
  }

  .t-card-right {
    padding: 25px;
  }

  .quote {
    font-size: 13px;
    line-height: 1.6;
    max-width: 100%;
  }

  .placement {
    width: auto;
    height: auto;
    padding: 10px 15px 0 0;
  }

  .placement h2 {
    font-size: 28px;
  }

  .placement img {
    width: 130px;
    height: 38px;
  }

  .nav.prev-btn {
    left: calc(50% - 310px - 20px);
  }

  .nav.next-btn {
    left: calc(50% + 310px - 20px);
  }
}



@media (max-width: 768px) {
  .carousel-wrapper {
    overflow: hidden;
    height: 600px; /* pehle 580px tha — isse card + buttons dono ke liye jagah bani */
  }

  .dots {
    display: none;
  }

  .nav.prev-btn,
  .nav.next-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    top: auto;
    bottom: 15px;
    transform: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #003da5;
    border:  px solid #fff;
  }

  .nav.prev-btn {
    left: calc(50% - 55px);
  }

  .nav.next-btn {
    left: calc(50% + 5px);
    right: auto;
  }

  .nav img {
    width: 25px;
    height: 25px;
  }

  .slide {
    width: 85%;
    height: 480px;
  }

  .slide.prev {
    transform: translate(-120%, -50%) scale(0.7);
  }

  .slide.next {
    transform: translate(20%, -50%) scale(0.7);
  }

  .t-card {
    flex-direction: column;
  }

  .t-card-left {
    width: 100%;
    height: 250px;
    flex-shrink: 0;
  }

  .t-card-right {
    padding: 15px;
    flex: 1;
    min-height: 0;
  }

  .t-card-left img {
  width: 331.85px;
  }

  .quote {
    width: 299px;
    height: 119px;
    font-size: 10px;
    line-height: 1.5;
    font-family: Instrument Sans;
    font-weight: 500;
  }

  .placement h2 {
    font-size: 28px;
  }

  .placement img {
    height: 35px;
    width: 160px;
  }

  .placement {
    width:287px;
    height: 77px;
    padding: 10px 10px 0 0;
    margin-bottom: 20px;
  }

  .slide.prev,
  .slide.next {
    opacity: 0;
  }
  .dots-offer-btn{
    display:none;
  }
}

/* ===== HERO SECTION (from test.html) ===== */
.hero {
  position: relative;
  min-height: 70vh;
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  
}
.hero-glow-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 130px;
}

@media (max-width: 1199px) {
  .hero-glow-wrapper {
    padding-top: 0;
    overflow: visible;
    position: static;
  }
}
.hero-glow {
  position: absolute;
  top: -35px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  width: 50%;
  color: white;
  z-index: 2;
}
.hero-content,
.hero-cards-section {
  position: relative;
  z-index: 2; /* glow ke upar content aaye */
}


.hero-content h1 {
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #FFFFFF;
  margin-bottom: 35px;
  max-width: 520px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  background: #66BB46;
  border: 1.5px solid #76E84B;
  box-shadow: 0 0 25px 0 #66BB4691;
}

.hero-cards-section {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

.hero-track {
  display: flex;
  gap: clamp(8px, 2vw, 15px);
  width: max-content;
  animation: heroScroll 28s linear infinite;
}

@keyframes heroScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero-card {
  width: clamp(180px, 24vw, 320px);
  height: clamp(260px, 30vw, 400px);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.hero-card:nth-child(odd) {
  transform: rotateY(6deg);
}

.hero-card:nth-child(even) {
  transform: rotateY(-6deg);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: clamp(12px, 2vw, 20px);
  background: linear-gradient(transparent 45%, rgba(0, 0, 0, 0.85));
}

.hero-overlay h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-company-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero-pill {
  background: #fff;
  gap: 20px;
  border-radius: 999px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-pill span {
  font-size: 12px;
  color: #444;
  font-weight: 500;
}

.hero-company {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-company img {
  height: 22px;
  width: auto;
  object-fit: contain;
}

.hero-salary {
  background: #8be03f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 0 0 10px 10px;
}

.hero-badge {
margin: -95px auto 0 auto;
  width: 404px;
  max-width: 90%;
  height: 156px;
  box-sizing: border-box;
  padding: 0 20px 24px;
  background: linear-gradient( 180deg, rgba(3, 39, 102, 0) 0%, rgba(3, 39, 102, 0.55) 38%, rgba(40, 115, 93, 0.78) 68%, rgba(102, 187, 70, 1) 100% );
  border-radius: 0 0 20px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-marquee::before,
.hero-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: clamp(50px, 8vw, 140px);
  height: 100%;
  z-index: 3;
}

.hero-marquee::before {
  left: -10px;
  background: linear-gradient(to right, #003da5, transparent);
}

.hero-marquee::after {
  right: -10px;
  background: linear-gradient(to left, #003da5, transparent);
}

@media (max-width: 1200px) and (min-width: 600px) {
  .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 1200px) {
  .hero {
    flex-direction: column;
    gap: 50px;
    padding: 60px 0;
  }

  .hero-content {
    width: 100%;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-enquiry-form-card {
    margin: 0 auto;
  }

  .hero-cards-section {
    width: 100%;
  }

  .hero-marquee {
    width: 100%;
  }
}

/* ===========================
   TABLET
=========================== */


@media (min-width:768px) and (max-width:1024px){

.hero{

    width:100%;
    min-height:460px;

    display:flex;
    flex-direction:row;

    align-items:center;
    justify-content:space-between;

    padding:40px 32px;

    overflow:hidden;

}

.hero-content{

    width:36%;
    flex:none;

}

.hero-content h1 {
    width: 350px;
    font-size: 28px;
    line-height: 1.18;
    margin-bottom: 15px;
  }

  .text-nowrap {
    white-space: nowrap;
  }

.hero-content p{

    max-width:280px;

    font-size:14px;

    line-height:1.55;

    margin-bottom:22px;

}

.hero-btn{

    padding:14px 24px;

    font-size:15px;

}

.hero-cards-section{

    width:58%;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

}

.hero-marquee{

    width:100%;

    max-width:520px;

    overflow:hidden;

}

.hero-track{

    gap:8px;

}

.hero-card{

    width:185px;

    height:240px;

    border-radius:12px;

}

.hero-card:nth-child(odd),
.hero-card:nth-child(even){

    transform:none;

}

.hero-overlay{

    padding:10px;

}

.hero-overlay h4{

    font-size:13px;

    margin-bottom:8px;

}

.hero-pill{

    padding:6px 10px;

    gap:8px;

}

.hero-pill span{

    font-size:10px;

}

.hero-company img{

    height:16px;

}

.hero-salary{

    font-size:10px;

    padding:4px 10px;

}

.hero-badge{

    width:300px;

    height:78px;

    margin-top:-18px;

    padding-bottom:14px;

    border-radius:0 0 14px 14px;

    font-size:13px;

}

.hero-marquee::before{

    width:50px;

}

.hero-marquee::after{

    width:50px;

}

}

@media (max-width: 480px) {
  .hero-overlay h4 {
    font-size: 11px;
  }

  .hero-pill {
    padding: 4px 8px;

  }
  .hero-pill span{
    font-size: 10px;
    color: #000000;
  }
.hero {
    width: 100%;
    /* padding: 60px 16px; thoda side padding rakh lo taaki content chipke na */
  }

  .hero-badge {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

/* ===== Student Life Section (from test.html) ===== */
#student-life {
  padding: 60px 20px 40px;
  text-align: center;
  background: #ffffff;
}

#student-life .section-container {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.header-wrap {
  width: 998px;
  max-width: 100%;
  min-height: 186px;
  margin: 0 auto;
}

#student-life h5,
#student-life h3,
#student-life h4 {
  color: #003da5;
  letter-spacing: -0.5px;
}

#student-life .section-desc {
  font-size: clamp(14px, 1.6vw, 16px);
  color: #3b485e;
  line-height: 1.7;
}

#student-life .tabs {
  height: 44px;
  display: inline-flex;
  border-radius: 8px;
  overflow: hidden;
  margin: auto;
}

#student-life .tab-btn{
    position: relative;
    padding: 10px 40px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: #DCE5F6;
    color: #144333;
    transition: color .25s ease;
}

#student-life .tab-btn::after{
    content:"";
    position:absolute;

    left:50%;
    bottom:4px;          /* line bottom se thodi upar */

    transform:translateX(-50%);

    width:90px;          /* Figma jaisi line */
    height:3px;
    background:#66BB46;

    opacity:0;
    transition:all .25s ease;
}

#student-life .tab-btn:hover::after,
#student-life .tab-btn.active::after{
    opacity:1;
}

#student-life .tab-btn.active{
    color:#144333;
    font-weight:600;
}

#student-life .tab-btn:hover {
  color: #144333;
}

#student-life .tab-content {
  display: none;
}

#student-life .tab-content.active {
  display: block;
}

.student-gallery {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 10px;
  width: 80%;
  margin: 0 auto;
  align-items: start;
}

.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-card {
  overflow: hidden;
  background: #dddddd;
  border-radius: 10px;
}

.gallery-card img,
.gallery-card-bottom-middle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card-tall {
  height: 334px;
}

.gallery-card-middle {
  height: 263px;
}

.gallery-card-bottom {
  height: 234px;
}

.gallery-card-bottom-middle {
  height: 305px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-card-bottom-middle .cm-img {
  width: 100%;
  height: 305px;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
  background: #dddddd;
}

    .student-slider-progress{
      width:191px;
      height:10px;
      background:#E1E9F8;
      border-radius:30px;
      margin:22px auto 0;
      position:relative;
      overflow:hidden;
  }

  .student-slider-thumb{
      position:absolute;
      top:0;
      left:0;
      width:97px;
      height:100%;
      background:#66BB46;
      border-radius:30px;
      transition:left .3s ease;
  }
.student-slider-progress{
    display:none;
}


@media (max-width:1000px){

    #student-life{
        padding:55px 20px 40px;
    }

    #student-life .section-container{
        max-width:95%;
        gap:35px;
    }

    .student-gallery{

        width:100%;
        grid-template-columns:1fr 1.35fr 1fr;
        gap:8px;

    }

    .gallery-col{

        gap:8px;

    }

    .gallery-card{

        border-radius:10px;

    }

    .gallery-card-tall{

        height:280px;

    }

    .gallery-card-middle{

        height:220px;

    }

    .gallery-card-bottom{

        height:190px;

    }

    .gallery-card-bottom-middle{

        height:250px;
        gap:8px;

    }

    .gallery-card-bottom-middle .cm-img{

        height:250px;

    }

}

@media (max-width:560px){

  #student-life{
    padding:45px 16px 40px;
  }

  #student-life .section-container{
    max-width:100%;
    gap:35px;
  }

  #student-life h5{
    font-size:32px;
    line-height:1.25;
  }

  #student-life .section-desc{
    font-size:14px;
    line-height:1.8;
    max-width:340px;
    margin:0 auto;
    font-weight:500;
    color:#3B485E;
  }

  .tabs{
    height:42px;
  }

  #student-life .tab-btn{
    padding:10px 24px;
    font-size:14px;
  }

  /* Gallery */

  .student-gallery{

      display:flex;
      overflow-x:auto;
      gap:10px;

      width:100%;
      padding-bottom:8px;

      scroll-snap-type:x mandatory;
      scrollbar-width:none;

  }

  .student-gallery::-webkit-scrollbar{
      display:none;
  }

  .gallery-col{

      flex:0 0 82%;
      scroll-snap-align:start;
      gap:10px;

  }

  .gallery-card-tall{
      height:240px;
  }

  .gallery-card-middle{
      height:190.2px;
  }

  .gallery-card-bottom{
      height:170px;
  }

  .gallery-card-bottom-middle{

      grid-template-columns:repeat(2,1fr);
      gap:10px;

  }

  .gallery-card-bottom-middle .cm-img{

      height:218.6px;

  }

      .student-slider-progress{
      display:block;
      width:191px;
      height:10px;
      background:#E1E9F8;
      border-radius:30px;
      margin:22px auto 0;
      position:relative;
      overflow:hidden;
  }

  .student-slider-thumb{
      position:absolute;
      top:0;
      left:0;
      width:97px;
      height:100%;
      background:#66BB46;
      border-radius:30px;
      transition:left .3s ease;
  }

}

/* ===== Offer Letter Section (from test.html) ===== */
#offer-letter {
  width: 100%;
  padding: 40px 20px 80px;
  background: #ffffff;
}

#offer-letter .offer-letter-box {
  width: 1200px;
  max-width: 100%;
  height: 447px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #f5f5f2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#offer-letter .offer-content {
  position: relative;
  z-index: 3;
  max-width: 595px;
  padding: 0 15px;
}

#offer-letter h5,
#offer-letter h4 {
  color: #003da5;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

#offer-letter p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
  color: #3b485e;
  margin-bottom: 25px;
}

#offer-letter .offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #76E84B;
  font-family: Instrument Sans;
  min-width: 265px;
  height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  background: #66BB46;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(102, 187, 70, 0.38);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

#offer-letter .offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(102, 187, 70, 0.45);
}

#offer-letter .student-bubble {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  padding: 3px;
  animation: bubbleFloat 4.5s ease-in-out infinite;
}

#offer-letter .student-bubble img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

#offer-letter .bubble-green {
  border: 2px solid #7be38b;
}

#offer-letter .bubble-blue {
  border: 2px solid #8db6ff;
}

#offer-letter .bubble-purple {
  border: 2px solid #b4a4ff;
}

#offer-letter .bubble-pink {
  border: 2px solid #f59df3;
}

#offer-letter .bubble-orange {
  border: 2px solid #ff956c;
}

#offer-letter .bubble-yellow {
  border: 2px solid #ffe16a;
}

#offer-letter .bubble-blur {
  filter: blur(3px);
  opacity: 0.45;
  z-index: 1;
}

#offer-letter .bubble-1 {
  width: 83px;
  height: 83px;
  left: 58px;
  top: 73px;
  animation-delay: 0s;
}

#offer-letter .bubble-2 {
  width: 111px;
  height: 111px;
  left: 175px;
  top: 185px;
  animation-delay: 0.35s;
}

#offer-letter .bubble-3 {
  width: 67px;
  height: 67px;
  left: 92px;
  bottom: 78px;
  animation-delay: 0.7s;
}

#offer-letter .bubble-4 {
  width: 77px;
  height: 77px;
  left: 330px;
  bottom: 70px;
  opacity: 0.6;
  animation-delay: 0.15s;
}

#offer-letter .bubble-5 {
  width: 68px;
  height: 68px;
  left: 535px;
  top: 38px;
  opacity: 0.5;
  animation-delay: 0.9s;
}

#offer-letter .bubble-6 {
  width: 83px;
  height: 83px;
  right: 140px;
  top: 66px;
  animation-delay: 0.2s;
}

#offer-letter .bubble-7 {
  width: 111px;
  height: 111px;
  right: 78px;
  top: 205px;
  animation-delay: 0.6s;
}

#offer-letter .bubble-8 {
  width: 96px;
  height: 96px;
  right: 205px;
  bottom: 66px;
  animation-delay: 1s;
}

@keyframes bubbleFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(0, -10px) scale(1.02);
  }
}

@media (max-width:1000px){

  #offer-letter .offer-letter-box{
    height:447px;
    border-radius:30px;
  }

  /* Hide */
  #offer-letter .bubble-3,
  #offer-letter .bubble-8{
    display:none;
  }

  /* Top Left */
  #offer-letter .bubble-1{
    width:64px;
    height:64px;
    left:28px;
    top:28px;
  }

  /* Bottom Left */
  #offer-letter .bubble-2{
    width:88px;
    height:88px;
    left:28px;
    bottom:120px;
    top:auto;
  }

  /* Bottom middle  */

  #offer-letter .bubble-4{
    width:68.22px;
    height:68.22px;
    left:20%;
    bottom:67px;
    top:auto;
    transform:translateX(-50%);
  }

  /* Top Center Blur */
  #offer-letter .bubble-5{
    width:48px;
    height:48px;
    left:50%;
    top:18px;
    transform:translateX(-50%);
  }

  /* Top Right */
  #offer-letter .bubble-6{
    width:64px;
    height:64px;
    right:48px;
    top:88px;
  }

  /* Bottom Right */
  #offer-letter .bubble-7{
    width:85.6px;
    height:85.6px;
    right:48px;
    bottom:64px;
    top:auto;
  }

}

@media (max-width:560px){

  #offer-letter{
    padding:24px 16px 32px;
  }

  #offer-letter .offer-letter-box{
    width:312px;
    max-width:100%;
    height:473px;
    margin:auto;
    border-radius:30px;
  }

  #offer-letter .offer-content{
    max-width:248px;
    padding:0;
    z-index:5;
  }

  #offer-letter h5,
  #offer-letter h4{
    font-size:28px;
    line-height:1.25;
    margin-bottom:18px;
    letter-spacing:-0.4px;
  }

  #offer-letter p{
    font-size:14px;
    line-height:1.65;
    margin-bottom:28px;
  }

  #offer-letter .offer-btn{
    width:248px;
    min-width:248px;
    height:48px;
    font-size:14px;
    font-weight:700;
    white-space:nowrap;
    padding:0 16px;
  }

  /* ---------- Hide ---------- */

  #offer-letter .bubble-1,
  #offer-letter .bubble-3,
  #offer-letter .bubble-4,
  #offer-letter .bubble-5{
    display:none;
  }

  /* ---------- Top Left ---------- */

  #offer-letter .bubble-2{
    width:56px;
    height:56px;
    left:24px;
    top:36px;
  }

  /* ---------- Top Right ---------- */

  #offer-letter .bubble-6{
    width:56px;
    height:56px;
    right:24px;
    top:36px;
  }

  /* ---------- Bottom Left ---------- */

  #offer-letter .bubble-7{
    width:56px;
    height:56px;
    left:24px;
    right:auto;
    top:auto;
    bottom:28px;
  }

  /* ---------- Bottom Right ---------- */

  #offer-letter .bubble-8{
    display:block;
    width:56px;
    height:56px;
    right:24px;
    left:auto;
    top:auto;
    bottom:28px;
  }

}

/* ===== FAQ Book Career Section (from test.html) ===== */
#faq-book-career {
  width: 100%;
  background: #ffffff;
}

.faq-book-career-wrap {
  width: 90%;
  margin: 0 auto;
  padding: 40px 0;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 40px;
  align-items: start;
  background: #ffffff;
}

.faq-book-career-left {
  padding-top: 12px;
}

.faq-book-career-left h5 {
  color: #003da5;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}

.faq-book-career-left p {
  font-size: 14px;
  line-height: 1.5;
  color: #3B485E;
  margin-bottom: 28px;
  max-width: 320px;
  font-weight: 600;
}

.faq-book-career-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 292px;
  height: 55px;
  padding: 8px 24px;
  border-radius: 999px;
  background: #003da5;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
   box-shadow:0 0 25px rgba(102,187,70,.57);
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  margin-top: 20px;
}

.faq-book-career-btn:hover {
  background: #003da5;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(111, 234, 66, 0.28);
}

.faq-book-career-right {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
}

.faq-item {
  border-bottom: 1px solid #e9fdff;
  transition: background 0.2s ease;
  border-radius: 5px;
}

.faq-item.active {
  background: #f5f5f2;
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr 24px;
  align-items: center;
  gap: 24px;
  background: transparent;
  border: none;
  padding: 18px 14px;
  text-align: left;
  cursor: pointer;
}

.faq-number {
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  color: #66BB46;
  letter-spacing: 0.02em;
}

.faq-title {
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  color: #003da5;
  padding-right: 14px;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 24px;
  line-height: 1;
  color: #66BB46;
  transition: transform 0.2s ease;
  font-weight: 300;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 56px 24px 94px;
  color: #3B485E;
  font-size: 14px;
  line-height: 1.65;
  max-width: 760px;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===========================
   Tablet (768px - 1100px)
=========================== */

@media (max-width:1100px){

  #faq-book-career{
    padding:40px 0 60px;
  }

  .faq-book-career-wrap{
    width:95%;
    grid-template-columns:1fr;
    gap:30px;
    padding:0;
  }

  .faq-book-career-left{
    padding-top:0;
  }

  .faq-book-career-left h5{
    margin-bottom:14px;
    max-width:393px;
  }

  .faq-book-career-left p{
    max-width:320px;
    font-size:11px;
    line-height:1.7;
    margin-bottom:0;
    color:#3B485E;
    font-weight:600;
  }

  /* Desktop button hide */
  .faq-book-career-left .faq-book-career-btn{
    display:none;
  }

  .faq-book-career-right{
    gap:10px;
  }

  .faq-item{
    border-radius:4px;
    overflow:hidden;
  }

  .faq-question{
    grid-template-columns:40px 1fr 18px;
    gap:18px;
    padding:18px 18px;
  }

  .faq-number{
    font-size:20px;
    color:#66BB46;
  }

  .faq-title{
    font-size:14px;
    padding-right:0;
    color:#003DA5;
  }

  .faq-answer{
    padding:0 18px 18px 58px;
    font-size:11px;
    line-height:1.8;
    color:#3B485E;
    font-weight:400;
  }

  .faq-icon{
    font-size:18px;
    color:#66BB46;

  }

  /* Tablet Button */
  .faq-book-career-right::after{
    content:"Book Free Career Counselling";
    display:flex;
    align-items:center;
    justify-content:center;

    width:292px;
    height:55px;

    margin:28px auto 0;

    background:#003DA5;
    color:#fff;

    border-radius:50px;
    border:1.5px solid #003DA5;

    font-size:16px;
    font-weight:700;

    /* Figma Shadow */
    box-shadow:0 0 25px rgba(102,187,70,.57);
} 

}


/* ===========================
   Mobile
=========================== */

@media (max-width:767px){

  #faq-book-career{
    padding:35px 16px 50px;
  }

  .faq-book-career-wrap{
    width:100%;
    grid-template-columns:1fr;
    gap:18px;
    padding:0;
  }

  .faq-book-career-left{
    padding:0;
  }

  .faq-book-career-left h5{
    color:#003DA5;
    margin-bottom:16px;
    
  }

  .faq-book-career-left p{
    max-width:313px;
    font-weight:600;
    font-size:14px;
    line-height:1.8;
    margin-bottom:0;
    color:#3B485E;
  }

  /* Hide Button */
  .faq-book-career-btn{
    display:none;
  }

  .faq-book-career-right::after{
    display:none;
  }

  .faq-book-career-right{
    gap:0;
  }

  .faq-item{
    background:transparent !important;
    border-radius:0;
    border-bottom:1px solid #ECECEC;
  }

  .faq-question{
    grid-template-columns:1fr 18px;
    gap:12px;
    padding:18px 0;
    
  }

  .faq-number{
    display:none;
  }

  .faq-title{
    font-size:20px;
    font-weight:600;
    line-height:1.45;
    padding:0;
    color:#2F3130;
  }

  .faq-answer{
    padding:0 0 18px;
    font-weight:500;
    font-size:16px;
    line-height:1.75;
    color:#2F3130;
  }

  .faq-icon{
    font-size:22px;
  }

}


/* ===========================
   Small Mobile
=========================== */

@media (max-width:480px){

  #faq-book-career{
    padding:30px 12px 45px;
  }

  .faq-book-career-left h5{
    max-width:393px;
    font-size:32px;
    line-height:1.15;
    margin-bottom:14px;
    color:#003DA5;
  }

  .faq-book-career-left p{
    font-size:14px;
    line-height:1.8;
    height: 72px;
    max-width:313px;
    font-weight:600;
    color:#3B485E;
  }

  .faq-question{
    padding:16px 0;
  }

  .faq-title{
    font-weight:600;
    font-size:20px;
    color:#2F3130;
  }

  .faq-answer{
    font-size:18px;
    line-height:1.7;
    color:#2F3130;
  }

}

/* === AWARDS & RECOGNITION === */

.awards-section {
  padding: 80px 0;
  background: #fff;
}

.awards-section .container {
  position: relative;
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.awards-section .heading {
  text-align: center;
  margin-bottom: 50px;
}

.awards-section .heading h5 {
  color: #003DA5;
  margin-bottom: 16px;
}

.awards-section .heading p {
  max-width: 900px;
  height: 24px;
  margin: auto;
  color: #3B485E;
  font-size: 14px;
  font-weight: 600;
}

.awards-section .slider-wrapper {
  overflow: hidden;
}

.awards-section .slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 5px;
}

.awards-section .slider::-webkit-scrollbar {
  display: none;
}

.awards-section .award-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 320px;

  background: #F1FDFF;
  border: 1px solid #d8eaf2;

  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  transition: 0.3s ease;
}

.awards-section .award-card:hover {
  transform: translateY(-5px);
}

.awards-section .award-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.awards-section .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.awards-section .card-body a {
  margin-top: auto;
}

.awards-section .award {
  display: flex;
  align-items: center;
  gap: 12px;
}

.awards-section .award-logo {
  height: 45px;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  color: #0a4bb8;
  font-size: 12px;
}

.awards-section .award-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.awards-section .award-info span {
  display: block;
  font-weight: 500;
  color: #000000;
  font-size: 11px;
}

.awards-section .award-info strong {
  color: #022A9B;
  font-size: 14px;
  font-weight: 600;
}

.awards-section .divider {
  height: 1px;
  background: #A4E3FD;
  margin: 18px 0;
}

.awards-section .award-card h6 {
  color: #3B485E;
  margin-bottom: 12px;
  font-size: clamp(16px, 1.042vw, 20px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.awards-section .award-card p {
  color: #3B485E;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.awards-section .award-card a {
  color: #66BB46;
  text-decoration: none;
  font-weight: 600;
}

.awards-section .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  z-index: 10;
}

.awards-section .prev {
  left: 5px;
}

.awards-section .next {
  right: 5px;
}

.awards-section .progress {
  width: 120px;
  height: 8px;

  background: #d9e1e8;

  margin: 40px auto 0;

  border-radius: 999px;
  overflow: hidden;
}

.awards-section .progress-bar {
  width: 40%;
  height: 100%;
  background: #69c145;
  border-radius: 999px;
}

.awards-section .promise {
  text-align: center;
  margin-top: 25px;
  font-size: 32px;
  font-weight: 500;
  font-family: 'Instrument Sans', sans-serif;
  color: #66BB46;
}

@media (max-width: 1200px) {
  .awards-section .award-card {
    flex: 0 0 calc(66.666% - 14px);
    min-width: 0;
  }

}

@media (max-width: 768px) {
  .awards-section .slider {
    scroll-snap-type: x mandatory;
  }



  .awards-section .award-card {
    flex: 0 0 85vw;
    min-width: 0;
    scroll-snap-align: start;
  }

  .awards-section .arrow {
    display: none;
  }

  .awards-section .promise {
    font-size: 18px;
  }
  
}

@media (min-width: 1920px) {
  :root {
    --size-section-title: 52px;
  }

  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 52px;
  }

  h3 {
    font-size: 40px;
  }

  h4 {
    font-size: 34px;
  }

  h5 {
    font-size: 28px;
  }

  h6 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }
}

#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0055d4;
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0, 85, 212, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

#scrollToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollToTop:hover {
  background: #003d99;
  box-shadow: 0 6px 20px rgba(0, 85, 212, 0.4);
}

/* === FOOTER === */
.footer {
  background: #081123;
  color: #fff;
  padding: 50px 0 25px;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
  width: 90%;
  margin: auto;
}

.footer .top-section {
  margin-bottom: 30px;
}

.footer .top-row {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 40px;
}

.footer .bottom-row {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.footer .bottom-left {
  flex: 1;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.footer .company-desc {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.footer .contact-title {
  font-size: 34px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer .contact-number {
  color: #FFFFFF;
  margin-bottom: 25px;
  font-size: 14px;
}

.footer .addresses {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 25px;
}

.footer .address-box {
  display: flex;
  gap: 12px;
  flex: 1;
}

.footer .address-box i {
  margin-top: 4px;
  color: #fff;
}

.footer .address-box p {
  color: #FFFFFF;
  font-size: 13px;
  line-height: 1.6;
}

.footer .social-icons {
  display: flex;
  gap: 10px;
}

.footer .social-icons a {
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border-radius: 8px;
}

.footer .social-icons a:nth-child(1) {
  background-color: #1877F2;
}

.footer .social-icons a:nth-child(1):hover {
  background-color: #1877F2;
}

.footer .social-icons a:nth-child(2) {
  background-color: #000000;
}

.footer .social-icons a:nth-child(2):hover {
  background-color: #000000;
}

.footer .social-icons a:nth-child(3) {
  background-color: #E1306C;
}

.footer .social-icons a:nth-child(3):hover {
  background-image: radial-gradient(circle at 23% 84%, #f9ed32, #f8d939 5%, #f5a54d 17%, #f0536c 33%, #ee2a7b 40%, #9e2aa7 56%, #5b2acd 72%, #2a2ae8 85%, #0b2af9 95%, #002aff);
}

.footer .social-icons a:nth-child(4) {
  background-color: #0077B5;
}

.footer .social-icons a:nth-child(4):hover {
  background-color: #1b86bd;
}

.footer .social-icons a:nth-child(5) {
  background-color: #FF0000;
}

.footer .social-icons a:nth-child(5):hover {
  background-color: #DE2925;
}

.footer .map-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.footer .map-item {
  width: 100%;
  flex: 1;
  background: #d9d9d9;
  border-radius: 14px;
  overflow: hidden;
}

.footer .map-item iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 14px;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .2);
  margin: 25px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
}

.footer-column h3 {
  color: #66BB46;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
}

.footer-column ul li a:hover {
  color: #57d13b;
}

.footer-bottom-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .2);
  margin-top: 40px;
}

.footer .disclaimer {
  text-align: center;
  color: #FFFFFF;
  font-size: 12px;
  margin-top: 15px;
  line-height: 1.7;
}

.footer-social-page {
  width: 100%;
  padding: 20px 0 20px 0;
  display: flex;
  justify-content: space-between;
}

.footer-declaimer {
  line-height: 1.5;
  width: 50%;
  color: #99cbc5;
  font-family: "Instrument Sans", sans-serif;
  margin-bottom: 60px;
}

.footer-declaimer p {
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Instrument Sans", sans-serif;
  color: white;
  font-weight: bold;
}

.footer-reserved {
  color: #9ad6cf;
  font-family: "Instrument Sans", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
  text-align: end;
  margin-bottom: 34px;
}

#chotac {
  font-size: 14px;
}

@media screen and (min-width: 1px) and (max-width: 599px) {
  .footer-social-page {
    flex-direction: column;
  }

  .footer-declaimer {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-declaimer-sub-para {
    font-size: 14px;
  }

  .footer-reserved {
    margin-top: 25px;
    margin-bottom: 95px;
    font-size: 14px;
    text-align: start;
  }
}

@media screen and (min-width: 392px) and (max-width: 599px) {
  #chotac {
    font-size: 13px;
  }
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .footer .top-row {
    flex-direction: column;
  }

  .footer .bottom-row {
    flex-direction: column;
  }

  .footer .map-box {
    width: 100%;
  }

  .footer-social-page {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer .contact-title {
    font-size: 28px;
  }

  .footer .map-box {
    flex-direction: column;
  }
}

/* ABOUT */

/*==================================
        OUR MISSION
==================================*/

.mission-wrapper{
  max-width:1200px;
  margin:0 auto 60px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:64px;
  align-items:center;
}

.mission-left{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.mission-right img{
  width:100%;
  height:480px;
  object-fit:cover;
  border-radius:24px;
  display:block;
}

.mission-heading{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:24px;
}

.mission-line{
  width:40px;
  height:4px;
  background:#66BB46;
  border-radius:30px;
}

.mission-tag{
  color:#0055D4;
  font-size:16px;
  font-weight:700;
  font-family: Instrument Sans;
  text-transform:uppercase;
}

.mission-title{
  font-size:56px;
  line-height:1.05;
  font-weight:800;
  color:#003DA5;
  margin-bottom:28px;
  text-align:left;
  font-family: Instrument Sans;
}

.mission-text{
  width: 576px;
  font-size:20px;
  font-family: Instrument Sans;
  line-height:1.8;
  color:#3B485E;
  margin-bottom:40px;
  text-align:left;
}

.mission-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:308px;
  height:50px;
  background:#003DA5;
  color:#FFFFFF;
  text-decoration:none;
  border-radius:100px;
  font-size:16px;
  font-weight:600;
  transition:.3s;
}

.mission-btn:hover{
  background:#003DA5;
}

@media(max-width:991px){

.mission-wrapper{
    grid-template-columns:1fr;
    gap:40px;
}

.mission-left{
    align-items:center;
    text-align:center;
    width:100%;
}

.mission-title,
.mission-text{
    text-align:center;
}

.mission-text{
    width:100%;
    max-width:576px;
}

.mission-right img{
    height:380px;
}

}

@media(max-width:767px){

.mission-wrapper{
    gap:30px;
}

.mission-title{
    font-size:36px;
}

.mission-text{
    width:100%;
    font-size:16px;
    line-height:1.7;
}

.mission-btn{
    width:100%;
    max-width:280px;
}

.mission-right img{
    height:260px;
}

}

@media(max-width:480px){

.mission-title{
    font-size:28px;
}

.mission-text{
    font-size:15px;
}

.mission-btn{
    height:44px;
    font-size:14px;
}

.mission-right img{
    height:200px;
}

}


  
/* ===== SECTION WRAPPER ===== */
.team-section {
  width: 100%;
  padding: 64px;
  background-color: #f7f9fb;
  background-image: url('../public/grid-overlay.webp');
  background-repeat: repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}

.team-section__title {
  width: 100%;
  font-size: 42px;
  font-weight: 700;
  color: #003DA5;
  text-align: center;
  font-family: Instrument Sans;
}

.team-row {
  width: 100%;
  max-width: 1312px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.team-card {
  width: 240px;
  border-radius: 10px;
  border: 2px solid #2EAE8E;
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 240 / 200;
  object-fit: cover;
  display: block;
}

.team-card__caption {
  background: linear-gradient(90deg, #0A1230 0%, #1E4DB7 100%);
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-card__text {
  display: flex;
  width: 184px;
  flex-direction: column;
  line-height: 1.3;
}

.team-card__name {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  font-family: Instrument Sans, sans-serif;
}

.team-card__role {
  color: #2EAE8E;
  font-size: 12px;
  font-weight: 500;
  font-family: Instrument Sans ;
}

.team-card__icon-box {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #0A66C2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.team-card .team-card__icon {
  width: 16px;
  height: 16px;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .team-section { padding: 48px 24px; }
  .team-row { gap: 16px; }
}

@media (max-width: 560px) {
  .team-card { width: 45%; }
}


/* ===== contact-review-para ===== */

.contact-review-para {
  width: 100%;
  min-height: 517px;
  background: #FFFFFF;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- Paragraph text block ---- */
.crp-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1314px;
}

.crp-text p {
  margin: 0;
  font-family: Instrument Sans;
  font-size: 20px;
  line-height: 1.5;
  color: #1A1A1A;
  gap: 19px;
}

.crp-text p.crp-bold {
  font-family: Instrument Sans;
  font-size: 20px;
  font-weight: 700;
  margin: 19px 0;
}

/* ---- Review cards row ---- */
.crp-cards {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  max-width: 1300px;
  padding: 15px 0;
  box-sizing: border-box;
}

/* ---- Individual card ---- */
.crp-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 393.3px;
  min-height: 128px;
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-sizing: border-box;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.051), 0 10px 24px -10px rgba(0,0,0,0.0784);
}

/* Top row: star icon + rating pill */
.crp-card-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  height: 32px;
}

.crp-star {
  font-size: 22px;
  line-height: 1;
  
}

.crp-star-trustpilot { color: #00B67A; background: rgba(0, 182, 122, 0.0784); border-radius: 10px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.crp-star-google { color: #4285F4; background: rgba(39, 93, 150, 0.0784); border-radius: 10px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.crp-star-ambitionbox { color: #F87171; background: rgba(215, 122, 107, 0.0784); border-radius: 10px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }

.crp-rating {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 12px;
}

.crp-rating-out {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.7;
}

.crp-rating-trustpilot { color: #00B67A; background: rgba(0, 182, 122, 0.1); border: 1px solid #00B67A; }
.crp-rating-google { color: #4285F4; background: rgba(66, 133, 244, 0.1); border: 1px solid #275D96; }
.crp-rating-ambitionbox { color: #F87171; background: rgba(248, 113, 113, 0.1); border: 1px solid #D77A6B; }

/* Bottom part: stars row + name/subtitle */
.crp-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* 5-star rating row */
.crp-stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  width: 86px;
  height: 14px;
  font-size: 14px;
  color: #F5A623;
  line-height: 1;
}

.crp-star-empty {
  color: #E5E7EB;
}

/* Name + subtitle text block */
.crp-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  max-width: 361.3px;
  min-height: 34px;
}

.crp-card-name {
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
}

.crp-card-sub {
  font-size: 13px;
  font-weight: 400;
  color: #6B7280;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .crp-cards {
    flex-wrap: wrap;
  }
  .crp-card {
    width: calc(50% - 8px);
  }
}

@media (max-width: 768px) {
  .contact-review-para {
    padding: 40px 20px;
  }
  .crp-card {
    width: 100%;
  }
}

/* ===== review-guaranteed-section ===== */

.rgs-section {
  width: 100%;
  min-height: 531px;
  background: #F9FAFB;
  margin: 0 auto;
  padding: 56px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

/* ---- Heading block ---- */
.rgs-heading-block {
  width: 100%;
  max-width: 1300px;
}

.rgs-title {
  position: relative;
  margin: 0 0 8px 0;
  padding-left: 11px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #03032E;
}

.rgs-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: #10B981;
}

.rgs-desc {
  margin: 0;
  width: 100%;
  max-width: 1300px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #374151;
}

/* ---- Cards row ---- */
.rgs-cards {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 1300px;
  padding: 0;
  overflow: hidden; /* clip content */
}

/* ---- Card ---- */
.rgs-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 294.5px;
  flex: 1 1 0;
  height: 297px;
  padding: 24px 16px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.0392), 0 14px 28px -12px rgba(0,0,0,0.0706);
}

/* Logo */
.rgs-logo {
  display: flex;
  justify-content: center;
  width: 100%;
}

.rgs-logo-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rgs-logo-icon img {
  width: 64px;
  height: 64.69px;
  object-fit: contain;
}

/* Title + description */
.rgs-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.rgs-card-title {
  margin: 0;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: #111827;
}

.rgs-card-desc {
  margin: 0;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: #6B7280;
}

/* Tags row */
.rgs-tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 27px;
}

.rgs-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 27px;
  border-radius: 999px;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  white-space: nowrap;
  box-sizing: border-box;
}

.rgs-tag-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.rgs-tag-green {
  padding: 6px 14px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  font-size: 12px;
  font-weight: 700;
  font-family: Instrument Sans;
}

.rgs-tag-gray {
  padding: 6px 10px;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  color: #374151;
  font-size: 12px;
  font-weight: 700;
  font-family: Instrument Sans;
  justify-content: center;
}



/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .rgs-cards {
    flex-wrap: wrap;
  }
  .rgs-card {
    width: calc(50% - 12px);
    height: auto;
  }
}

@media (max-width: 640px) {
  .rgs-section {
    padding: 40px 20px;
  }
  .rgs-card {
    width: 100%;
  }
}

/* ===== Contact Enquiry Form Card ===== */
.contact-enquiry-form-card {
  width: 480px;
  max-width: 480px;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* Title */
.cef-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

/* Form */
.cef-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Fields Container */
.cef-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Single Field */
.cef-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Row for Email + Phone (Side by Side) */
.cef-row {
  display: flex;
  gap: 12px;
}

.cef-field-half {
  flex: 1;
  min-width: 0;
}

/* Labels */
.cef-label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

/* Inputs & Select */
.cef-input,
.cef-select {
  width: 100%;
  height: 38px;
  padding: 0 14px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  color: #111827;
  background: #FFFFFF;
  box-sizing: border-box;
  outline: none;
}

.cef-input::placeholder,
.cef-select option:first-child {
  color: #9CA3AF;
}

.cef-input:focus {
  border-color: #00C37B;
}

/* Select Dropdown Arrow */
.cef-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239CA3AF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

/* Textarea */
.cef-textarea {
  height: 72px;
  padding: 10px 14px;
  resize: none;
}

/* Button */
.cef-btn {
  width: 100%;
  height: 38px;
  border: none;
  border-radius: 99px;
  background: #00C37B;
  color: #FFFFFF;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.cef-btn:hover {
  background: #00a86b;
}

/* ===== RESPONSIVE ===== */

/* LAPTOP (1025px - 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
  .contact-enquiry-form-card {
    width: 380px;
    padding: 16px;
    gap: 12px;

  }
  
  .cef-title {
    font-size: 18px;
  }
  
  .cef-form {
    gap: 10px;
  }
  
  .cef-fields {
    gap: 10px;
  }
  
  .cef-field {
    gap: 4px;
  }
  
  .cef-label {
    font-size: 13px;
  }
  
  .cef-input,
  .cef-select {
    height: 34px;
    font-size: 13px;
    padding: 0 10px;
  }
  
  .cef-textarea {
    height: 56px;
    padding: 8px 10px;
  }
  
  .cef-btn {
    height: 36px;
    font-size: 13px;
  }
}

/* TABLET (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .contact-enquiry-form-card {
    width: 58%;
    max-width: 420px;
    padding: 16px;
    gap: 12px;
    margin: 0;
    align-self: center;
  }

  .cef-title {
    font-size: 18px;
  }

  .cef-form {
    gap: 12px;
  }

  .cef-fields {
    gap: 10px;
  }

  .cef-field {
    gap: 4px;
  }

  .cef-label {
    font-size: 13px;
  }

  .cef-input,
  .cef-select {
    height: 34px;
    font-size: 13px;
    padding: 0 10px;
  }

  .cef-textarea {
    height: 56px;
    padding: 8px 10px;
  }

  .cef-btn {
    height: 36px;
    font-size: 13px;
  }
}

/* MOBILE (767px and below) */
@media (max-width: 767px) {
  .contact-enquiry-form-card {
    width: 100%;
    padding: 14px;
    gap: 10px;
    border-radius: 14px;
    margin-top: 0;
    align-self: center;
  }

  .cef-title {
    font-size: 18px;
  }

  .cef-form {
    gap: 10px;
  }

  .cef-fields {
    gap: 8px;
  }

  .cef-field {
    gap: 3px;
  }

  .cef-label {
    font-size: 12px;
  }

  .cef-input,
  .cef-select {
    height: 32px;
    font-size: 12px;
    padding: 0 8px;
  }

  .cef-textarea {
    height: 48px;
    padding: 6px 8px;
  }

  .cef-btn {
    height: 34px;
    font-size: 12px;
  }

  .cef-row {
    flex-direction: column;
    gap: 8px;
  }
}


/* ============ Mobile Enquiry Bar ============ */

.mobile-enquiry-section {
display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9998;
  height: 50px;
  margin: auto;
}
.mobile-enquiry-section .mobile-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
}
.mobile-enquiry-section .mobile-button:not(:last-child) {
  border-right: 2px solid #ddd;
}
.mobile-enquiry-section .mobile-button span {
  font-size: 12px;
  font-weight: 500;
  color: #003da5;
  white-space: nowrap;
}
.mobile-enquiry-section .mobile-icon {
  width: 24px;
  height: 24px;
  color: #003da5;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .mobile-enquiry-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    align-items: center;
  }
  .float-job-btn {
    display: none !important;
  }
  #scrollToTop {
    bottom: 80px;
  }
  body {
    padding-bottom: 56px;
  }
}
/* ===== CERTIFICATE / AWARD VIEW MODAL — from awdizinstitute.in ===== */
.cert-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 20px;
}

.cert-modal.show {
    display: flex;
}




.cert-modal-content {
    max-width: 78vw;
    max-height: 85vh;
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
    border: 3px solid #fff;
}

.cert-modal-close {
    position: absolute;
    top: 4%;
    right: 9%;
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 599px) {
  .cert-modal-content {
    max-width: 95%;
  }

  .cert-modal-close {
    position: absolute;
    top: 33%;
    right: 5%;
  }
}

.cert-modal-close:hover {
    color: #ccc;
}

/* ===== FLOATING BUTTONS — from awdizinstitute.in ===== */
.float-job-btn {
  position: fixed;
  bottom: 30px;
  left: 20px;
  background: #66BB46;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(102, 187, 70, 0.3);
  z-index: 9999;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.float-job-btn:hover {
  background: #4da335;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 187, 70, 0.4);
}
.float-job-btn.show {
  opacity: 1;
  visibility: visible;
}
.float-job-btn.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#desktop-wa-button {
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 9998;
  display: none;
}
#desktop-wa-button img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 85, 212, 0.3);
  transition: transform 0.3s;
}
#desktop-wa-button img:hover {
  transform: scale(1.1);
}
@media (min-width: 1200px) {
  #desktop-wa-button { display: block; }
}

/* ===== A11Y: inactive testimonial slides text contrast ===== */
.slide.prev .quote,
.slide.next .quote,
.slide.prev .placement div,
.slide.next .placement div {
  color: #000;
}
