:root {
  --primary-blue: #0A2540; /* Premium dark blue */
  --accent-blue: #1866B0; /* Vibrant blue for accents */
  --light-blue: #F3F8FF;
  --bg-color: #FAFCFF;
  --text-dark: #1A1F36;
  --text-light: #4A5568;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { font-family: 'Outfit', sans-serif; background-color: var(--bg-color); color: var(--text-dark); line-height: 1.6; }
a { text-decoration: none; color: inherit; }

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  /* background: var(--primary-blue); */
  background: #1866B0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.logo { display: flex; align-items: center; }
.nav-logo { height: 45px; width: auto; filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--white); font-weight: 500; transition: var(--transition); font-size: 0.95rem; position: relative; padding-bottom: 4px; }
.nav-links a:hover { color: var(--white); opacity: 0.8; }
.nav-toggle { display: none; }

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 140px 5% 80px;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--bg-color) 100%);
  position: relative;
  overflow: hidden;
  gap: 60px;
}
.hero::before {
  content: ''; position: absolute; width: 600px; height: 600px; background: rgba(0, 102, 255, 0.05);
  border-radius: 50%; top: -200px; right: -100px; z-index: 0;
}
.hero-content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero-badge {
  display: inline-block; background: rgba(0, 102, 255, 0.1); color: var(--accent-blue);
  padding: 8px 16px; border-radius: 50px; font-weight: 600; font-size: 0.85rem; margin-bottom: 24px;
}
.hero-main-title { 
  font-size: 3.5rem; 
  font-weight: 800; 
  line-height: 1.1; 
  margin-bottom: 16px; 
  color: var(--primary-blue); 
  letter-spacing: -1.5px; 
}
.hero-sub-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 24px;
  line-height: 1.4;
}
.hero-desc { font-size: 1.15rem; color: var(--text-light); margin-bottom: 40px; line-height: 1.6; }
.hero-image-wrapper { position: relative; z-index: 1; height: 100%; min-height: 400px; }
.hero-image {
  width: 100%;
  height: 100%;
  border-radius: var(--radius); 
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  border: 8px solid var(--white);
  display: block;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Buttons */
.btn-primary {
  background: var(--accent-blue); color: var(--white); padding: 10px 24px; border-radius: 50px;
  font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition);
  box-shadow: 0 4px 14px 0 rgba(0, 102, 255, 0.39); border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 6px 20px 0 rgba(0, 102, 255, 0.5); }
.btn-secondary {
  background: var(--white); color: var(--primary-blue); padding: 12px 28px; border-radius: 50px;
  font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition);
  border: 1px solid var(--border); cursor: pointer;
}
.btn-secondary:hover { border-color: var(--accent-blue); color: var(--accent-blue); }

/* Common Section */
.section {
  padding: 60px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-inline: auto;
}

#explore .section-header {
  max-width: 950px;
}

#internship .section-header {
  max-width: 1100px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-blue);
  /* margin-bottom: 16px; */
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-light);
}

/* Section Backgrounds & Accents */
.section { position: relative; overflow: hidden; padding: 65px 5%; }
#explore, #apply { background: var(--white); }
#internship, .section-gradient { 
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--bg-color) 100%); 
}

.section-gradient::before, #internship::before, #home::before {
  content: ''; position: absolute; width: 400px; height: 400px; background: rgba(0, 102, 255, 0.04);
  border-radius: 50%; top: -150px; right: -100px; z-index: 0;
}

.section-gradient::after, #internship::after {
  content: ''; position: absolute; width: 300px; height: 300px; background: rgba(0, 102, 255, 0.03);
  border-radius: 50%; bottom: -100px; left: -100px; z-index: 0;
}

#explore .explore-container, #internship > *, .section-gradient > *, #apply > * { position: relative; z-index: 1; }
/* NEW PROGRAMME HIGHLIGHTS SECTION */
.ph-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* Left Column */
.ph-left {
    padding-right: 20px;
}
/* New responsive title styles */
.ph-main-title {
    text-align: left;
}
.ph-sub-title {
    font-size: 2.2rem;
    color: var(--accent-blue);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    text-align: left;
}
.ph-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 40px;
}
.ph-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    display: block;
    overflow: hidden;
}
.ph-students-img {
    width: 116.13%;
    margin-left: -7.78%;
    margin-top: -11.57%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Right Column */
.ph-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-left: 20px;
}
.ph-timeline-path {
    position: absolute;
    left: 2px; /* Center with the numbers */
    top: 5%;
    height: 90%;
    width: 60px;
    z-index: 1;
}
.ph-timeline-path svg {
    width: 100%;
    height: 100%;
}

.ph-card-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}
.ph-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #FFFFFF;
    flex-shrink: 0;
    margin-right: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.num-1 { background: #1866B0; }
.num-2 { background: #00bcd4; }
.num-3 { background: #673ab7; }

.ph-card {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px;
    flex-grow: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
}
/* Colorful right edges */
.card-1::after { content: ''; position: absolute; right: 0; top: 0; height: 100%; width: 12px; background: #1866B0; border-radius: 0 16px 16px 0; }
.card-2::after { content: ''; position: absolute; right: 0; top: 0; height: 100%; width: 12px; background: #00bcd4; border-radius: 0 16px 16px 0; }
.card-3::after { content: ''; position: absolute; right: 0; top: 0; height: 100%; width: 12px; background: #673ab7; border-radius: 0 16px 16px 0; }

.ph-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
}
.box-1 { background: rgba(24, 102, 176, 0.1); color: #1866B0; }
.box-2 { background: rgba(0, 188, 212, 0.1); color: #00bcd4; }
.box-3 { background: rgba(103, 58, 183, 0.1); color: #673ab7; }
.ph-icon-box svg {
    width: 28px;
    height: 28px;
}

.ph-card-content {
    flex-grow: 1;
    padding-right: 20px;
}
.ph-card-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0A2540;
    margin-bottom: 8px;
}
.ph-card-content p {
    font-size: 0.9rem;
    color: #4A5568;
    line-height: 1.5;
}

.ph-card-img {
    width: 140px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 12px; /* Room for the colored border */
}
.ph-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .ph-container { grid-template-columns: 1fr; gap: 60px; }
    .ph-left { padding-right: 0; }
    .ph-main-title, .ph-sub-title, .ph-desc { text-align: center; }
    .ph-image-wrapper { justify-content: center; }
    .ph-card { flex-direction: column; text-align: center; padding-right: 20px; }
    .ph-icon-box { margin: 0 auto 15px; }
    .ph-card-content { padding-right: 0; margin-bottom: 20px; }
    .ph-card-img { margin: 0 auto; width: 100%; max-width: 250px; height: 160px; }
}
@media (max-width: 768px) {
    .ph-sub-title { font-size: 1.8rem; }
    .ph-right { padding-left: 0; }
    .ph-timeline-path { display: none; }
    .ph-number { display: none; }
    .ph-card-wrapper { justify-content: center; }
}

/* Programme Highlights Grid */
.highlights-grid {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.highlights-row {
  display: flex;
  gap: 15px;
  width: 100%;
}

.highlight-box {
  flex: 1;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px 25px;
  text-align: center;
  color: var(--white);
  font-weight: 500;
  transition: transform 0.3s ease;
}

.highlight-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.highlight-content p {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}
.highlight-box:hover { transform: scale(1.02); z-index: 1; }

.bg-dark { background: var(--primary-blue); }
.bg-accent { background: var(--accent-blue); }

@media (max-width: 992px) {
  .highlights-row { flex-direction: column; }
  .highlight-box { min-height: 100px; padding: 20px; }
}

.card-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 20px; color: var(--primary-blue); line-height: 1.3; }
.status-badge { 
  display: inline-block; 
  padding: 8px 18px; 
  border-radius: 50px; 
  font-size: 0.75rem; 
  font-weight: 700; 
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
}
.status-soon { 
  background: rgba(255, 255, 255, 0.15); 
  color: var(--white); 
  border: 1px solid rgba(255, 255, 255, 0.2); 
}
.status-link { 
  background: var(--white); 
  color: var(--primary-blue); 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}
.status-link:hover {
  background: var(--light-blue);
  transform: translateY(-2px);
  color: var(--primary-blue);
}

/* Domain Card Specific Status Styles */
.domain-card .status-soon {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.domain-card .status-link {
  background: var(--primary-blue);
  color: var(--white);
  border: 1px solid var(--primary-blue);
}

.domain-card .status-link:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: var(--white);
}

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.slider-nav-btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border); background: var(--white);
  color: var(--primary-blue); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.slider-nav-btn:hover { background: var(--accent-blue); color: var(--white); border-color: var(--accent-blue); }
.slider-nav-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.slider-progress-bg { flex-grow: 1; max-width: 200px; height: 4px; background: var(--border); border-radius: 4px; overflow: hidden; }
.slider-progress-fill { height: 100%; background: var(--accent-blue); width: 0%; transition: width 0.3s ease; }

/* Timeline (Internship Model) */
.timeline { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.timeline-item { background: var(--white); padding: 40px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.timeline-week { font-size: 1rem; font-weight: 700; color: var(--accent-blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.timeline-title { font-size: 1.8rem; font-weight: 800; color: var(--primary-blue); margin-bottom: 16px; }

/* Domains Slider */
.domains-section { 
  padding-bottom: 100px; 
  background: #1866B0; 
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.domains-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -150px;
  right: -100px;
  z-index: 0;
}

.domains-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  z-index: 0;
}

.domains-section .section-header, 
.domains-section .domains-slider {
  position: relative;
  z-index: 1;
}

.domains-section .section-title,
.domains-section .section-desc {
  color: var(--white);
}

.domains-slider {
  padding: 20px 0 30px;
  position: relative;
}
.domains-slider .swiper-slide { height: auto; }
.domains-slider .domain-card { height: 100%; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.slider-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 10;
}

.slider-nav-btn:hover {
  background: var(--accent-blue);
  color: var(--white);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.domains-section .slider-nav-btn:hover {
  background: var(--white);
  color: var(--accent-blue);
  border-color: var(--white);
}

.slider-progress-bg {
  flex-grow: 1;
  max-width: 300px;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.domains-section .slider-progress-bg {
  background: rgba(255, 255, 255, 0.2);
}

.slider-progress-fill {
  height: 100%;
  background: var(--accent-blue);
  width: 0%;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.domains-section .slider-progress-fill {
  background: var(--white);
}

.domain-card {
  padding: 30px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border);
  text-align: left; transition: var(--transition); display: flex; flex-direction: column; height: 100%;
}
.domain-card:hover { border-color: var(--accent-blue); box-shadow: var(--shadow-md); }
.domain-name { font-size: 1.4rem; font-weight: 700; color: var(--primary-blue); margin-bottom: 12px; }
.domain-detail { font-size: 0.95rem; color: var(--text-light); margin-bottom: 24px; flex-grow: 1; }
.domain-card.active { border: 2px solid var(--accent-blue); position: relative; }
.domain-card.active::after { content: '✓ Available'; position: absolute; top: 16px; right: 16px; font-size: 0.8rem; font-weight: 600; color: var(--accent-blue); background: var(--light-blue); padding: 4px 10px; border-radius: 12px; }

/* Info Section (Deliverables & Cert) */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.info-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    min-height: 480px; /* Tall enough for all text and image */
}

.info-card.light-theme {
    background: #FAFCFF;
    --theme-bg: #FAFCFF;
    --theme-text: #1A1F36;
    --theme-title: #0A2540;
    --theme-icon-bg: #E8F0FE;
    --theme-icon-color: #1866B0;
}

.info-card.dark-theme {
    background: #0B1B33;
    --theme-bg: #0B1B33;
    --theme-text: #E2E8F0;
    --theme-title: #FFFFFF;
    --theme-icon-bg: rgba(255,255,255,0.08);
    --theme-icon-color: #FFFFFF;
}

.card-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.info-card.dark-theme .card-image img {
    /* padding: 20px; */
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.4));
}

.card-text-wrapper {
    position: relative;
    z-index: 2;
    width: 64%; /* 10% overlap with the image */
    height: 100%;
    /* Add subtle shadow on the slant */
    filter: drop-shadow(15px 0 20px rgba(0,0,0,0.15));
}

.info-card.dark-theme .card-text-wrapper {
    filter: drop-shadow(15px 0 25px rgba(0,0,0,0.4)); /* Stronger shadow on dark theme */
}

.card-text {
    width: 88%;
    height: 100%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--theme-bg);
    /* Slanted right edge */
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0 100%);
    color: var(--theme-text);
}

.info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--theme-icon-bg);
    color: var(--theme-icon-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: inset 0 0 0 6px var(--theme-bg), 0 0 0 8px rgba(0,0,0,0.03);
}

.info-card.dark-theme .info-icon {
    box-shadow: inset 0 0 0 6px var(--theme-bg), 0 0 0 8px rgba(255,255,255,0.03);
}

.card-text h2.info-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--theme-title);
    letter-spacing: -0.5px;
}

.card-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 400;
    opacity: 0.95;
}
.card-text p:last-of-type {
    margin-bottom: 0;
}

.info-line {
    width: 45px;
    height: 3px;
    background: #1866B0;
    margin-top: 30px;
    border-radius: 2px;
}

/* Make sure mobile stacking resets the clip path */
@media (max-width: 1100px) {
    .card-text { padding: 40px 30px; }
}

@media (max-width: 992px) {
    .info-card { min-height: 400px; }
    .card-text-wrapper { width: 75%; }
}

@media (max-width: 768px) {
    .info-card { flex-direction: column; min-height: auto; }
    .card-image { display: none; }
    .card-text-wrapper { width: 100%; order: 2; filter: none; }
    .card-text { clip-path: none; padding: 40px 20px; }
}

/* Application Process - New Style */
.process-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.step-badge-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 120px;
  flex-shrink: 0;
}

.step-badge {
  width: 100%;
  height: 100px;
  background: var(--white);
  color: var(--primary-blue);
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  box-shadow: var(--shadow-md);
}

/* Color Overrides for Badges - Unified Theme */
.step-blue .step-badge, 
.step-green .step-badge, 
.step-purple .step-badge { 
  background: linear-gradient(135deg, #1866B0 0%, #3a8edb 100%); 
  color: var(--white); 
}

/* Connector line with dots */
.step-connector {
  position: absolute;
  top: 100px;
  bottom: -20px;
  width: 2px;
  background: var(--border);
  z-index: 1;
}

.step-connector::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--light-blue);
}

.step-card {
  flex: 1;
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-blue);
}

.step-card-content { flex: 1; }
.step-card-content h4 { font-size: 1.4rem; color: var(--primary-blue); margin-bottom: 12px; font-weight: 700; }
.step-card-content p { color: var(--text-light); font-size: 1rem; line-height: 1.6; max-width: 500px; }

.step-card-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  opacity: 0.1;
  transition: var(--transition);
}

.step-card:hover .step-card-icon {
  opacity: 0.4;
  transform: scale(1.1);
}

.process-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

.link-green { color: #10B981; background: #ECFDF5; }
.link-green:hover { background: #D1FAE5; }
.link-purple { color: #8B5CF6; background: #F5F3FF; margin-right: 15px; }
.link-purple:hover { background: #EDE9FE; }

/* Help Banner - Unified Theme */
.help-banner {
  max-width: 1000px;
  margin: 40px auto 0;
  background: var(--light-blue);
  border-radius: 20px;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
}

.help-info { display: flex; align-items: center; gap: 20px; }

.help-icon {
  width: 48px;
  height: 48px;
  background: rgba(24, 102, 176, 0.1);
  color: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-info h5 { font-size: 1.2rem; color: var(--primary-blue); margin-bottom: 4px; }
.help-info p { color: var(--text-light); font-size: 0.9rem; }

.btn-contact {
  background: var(--accent-blue);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-contact:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 102, 176, 0.2);
}

/* Contact Us Grid Style */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-main-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-team h5 {
  font-size: 1.4rem;
  color: var(--primary-blue);
  margin-bottom: 8px;
  font-weight: 800;
}

.contact-team p {
  color: var(--text-light);
  margin-bottom: 32px;
  font-weight: 500;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.method-icon {
  width: 56px;
  height: 56px;
  background: var(--light-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-sm);
}

.method-info label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.method-info a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-blue);
  transition: var(--transition);
}

.method-info a:hover { color: var(--accent-blue); }

.contact-secondary-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-box {
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.info-box h5 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 12px;
  font-weight: 800;
}

.info-box p { color: var(--text-light); line-height: 1.6; }

.info-box.partnership {
  background: var(--white);
  color: var(--text-light);
  border: 1px solid var(--border);
}

.info-box.partnership h5 { color: var(--primary-blue); }

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .process-step { flex-direction: column; }
  .step-badge-wrapper { width: 100%; height: 80px; }
  .step-badge { width: 80px; height: 80px; clip-path: circle(50% at 50% 50%); }
  .step-connector { display: none; }
  .step-card { padding: 24px; text-align: center; flex-direction: column; }
  .step-card-icon { display: none; }
  .help-banner { flex-direction: column; text-align: center; gap: 24px; }
}

/* Footer Styles */
.footer {
  background: var(--accent-blue);
  color: rgba(255, 255, 255, 0.6);
  padding: 45px 5% 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.2fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo-img { height: 45px; width: auto; filter: brightness(0) invert(1); margin-bottom: 24px; }
.footer-about { line-height: 1.7; font-size: 0.95rem; }

.footer-title {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.footer-links, .footer-contact-list { list-style: none; padding: 0; }
.footer-links li, .footer-contact-list li { margin-bottom: 14px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-contact-list li {
  display: flex;
  /* align-items: center; */
  gap: 12px;
  font-size: 0.95rem;
}

.footer-contact-list a { color: rgba(255, 255, 255, 0.6); }
.footer-contact-list a:hover { color: var(--white); }

.btn-footer {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.btn-footer:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.85rem;
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255, 255, 255, 0.4); }
.footer-legal a:hover { color: var(--white); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-content { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 992px) {
  .hero { grid-template-columns: 1fr; text-align: center; gap: 40px; padding-top: 120px; }
  .hero-content { align-items: center; order: 1; text-align: center; }
  .hero-image-wrapper { order: 2; min-height: 300px; padding-left: 0; }
  
  .nav-toggle { display: block; cursor: pointer; color: var(--white); z-index: 1001; }
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 228px;
      height: 100vh;
      background: var(--primary-blue);
      display: flex;
      flex-direction: column;
      padding: 65px 30px;
      transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      gap: 12px;
    }
  .nav-links.active { right: 0; }
    .nav-links a {
      font-size: 14px;
      width: 100%;
      font-weight: 500;
    }
}

@media (max-width: 992px) {
  .section { padding: 40px 20px !important; }
  .hero-main-title { font-size: 2.2rem; }
  .navbar { padding: 15px 20px; }
  .timeline, .info-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 600px) {
  .hero-main-title { font-size: 1.8rem; }
  .section-title { font-size: 1.8rem; }
  .section-header { margin-bottom: 30px; }
}

/* Centered Download Loader Overlay */
.download-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 37, 64, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.download-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.download-loader-card {
  background: var(--white);
  padding: 30px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--border);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.download-overlay.show .download-loader-card {
  transform: scale(1);
}

.download-spinner-large {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(24, 102, 176, 0.15);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.download-loader-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-blue);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Download Success Badge */
.apply-action-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.apply-action-wrapper .process-link {
  margin-top: 0 !important;
}

.download-success-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #10B981;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-15px);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.download-success-badge svg {
  stroke: #10B981;
  flex-shrink: 0;
}

.download-success-badge.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Fullscreen Payment Portal */
body.qr-portal-active {
  overflow: hidden !important;
}

.qr-portal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0A2540;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  color: #ffffff;
}

.qr-portal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.qr-portal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #071C32;
  position: sticky;
  top: 0;
  z-index: 10001;
}

.qr-portal-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.qr-portal-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.qr-portal-close:hover {
  background: #EF4444;
  border-color: #EF4444;
  color: #ffffff;
  transform: translateY(-2px);
}

.qr-portal-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 5%;
  min-height: calc(100vh - 70px);
  min-height: calc(100dvh - 70px);
}

.qr-wide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 680px;
  width: 100%;
}

.qr-scan-card-wide {
  background: #ffffff;
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.qr-code-img-wide {
  width: 100%;
  height: auto;
  display: block;
}

.qr-bottom-section {
  padding: 35px 30px 40px;
  background: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.qr-process-details {
  font-size: 18px;
  color: #475569;
  margin: 0;
}

.qr-form-btn-wide {
  background: #8B5CF6;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(139, 92, 246, 0.25);
  border: none;
  cursor: pointer;
}

.qr-form-btn-wide:hover {
  background: #7C3AED;
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(139, 92, 246, 0.35);
  color: #ffffff;
}

@media (max-width: 640px) {
  .qr-portal-container {
    padding: 20px 15px;
  }
  .qr-bottom-section {
    padding: 25px 20px 30px;
    gap: 16px;
  }
  .qr-process-details {
    font-size: 0.9rem;
  }
  .qr-code-img-wide {
    width: 100%;
    margin: 0;
    display: block;
    aspect-ratio: 1.35 / 1;
    object-fit: contain;
    object-position: center;
  }
}




