    body {
      margin: 0;
        font-family: 'Montserrat';
      background: #fff;
      color: #000038;
    }

    section {
      padding: 80px 20px;
      text-align: center;
    }

    h1, h2 {
      margin-bottom: 20px;
    }

    .highlight {
      color: #FF6A13;
    }

    .cta-btn {
      background: #FF6A13;
      color: white;
      padding: 12px 28px;
      border: none;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      display: inline-block;
      margin-top: 20px;
      transition: background 0.3s;
    }

    .cta-btn:hover {
      background: #e2550a;
    }
/*-------------------------------------*/
.hero-transfer {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-transfer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}

.hero-glass {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  max-width: 650px;
  animation: fadeInUp 1s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero-glass h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero-glass p {
  font-size: 1.1rem;
  color: #e5e5e5;
  margin-bottom: 30px;
}

.hero-btn {
  background: #FF6A13;
  color: white;
  padding: 14px 30px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.hero-btn i {
  margin-left: 10px;
}

.hero-btn:hover {
  background: white;
  color: #FF6A13;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-glass h1 {
    font-size: 2.2rem;
  }

  .hero-glass p {
    font-size: 1rem;
  }
}

/*------------------------------------*/
.why-transfer-journey {
  background: #fff;
  color: #000038;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.why-transfer-journey h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #000038;
}

.highlight {
  color: #FF6A13;
}

.journey-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.journey-step {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  width: 300px;
  border: 1.5px solid #000038;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 106, 19, 0.2);
}

.journey-step .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #FF6A13;
}

.journey-step h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #000038;
}

.journey-step p {
  font-size: 0.95rem;
  color: #333;
}

@media (max-width: 768px) {
  .journey-step {
    width: 90%;
  }
}
/*--------------------------------------*/
.walsh-life-gallery {
  background: #000038;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.walsh-life-gallery h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
}
.walsh-life-gallery span {
  font-size: 2.5rem;
  color: #FF6A13;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 60px;
}

.life-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.life-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.4s ease;
}

.life-card:hover {
  transform: scale(1.03);
}

.life-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.life-card:hover img {
  transform: scale(1.1);
}

.card-info {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
  color: white;
  width: 100%;
  padding: 20px;
  transition: opacity 0.4s ease;
}

.card-info h4 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #fff;
}

.card-info p {
  font-size: 0.95rem;
  color: #ccc;
}

.card-info i {
  color: #FF6A13;
  margin-right: 6px;
}

/*--------------------------------------*/
.entry-progress {
  background: rgba(243, 242, 242, 0.848);
  padding: 80px 20px;
  color: #43092d;
  margin: auto;
  text-align: center;
}

.entry-progress h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #000038;
  font-weight: 700;
}

.progress-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 750px;
    margin: 0 auto;
}

.step {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.6s forwards;
}

.step:nth-child(1) { animation-delay: 0.2s; }
.step:nth-child(2) { animation-delay: 0.4s; }
.step:nth-child(3) { animation-delay: 0.6s; }
.step:nth-child(4) { animation-delay: 0.8s; }
.step:nth-child(5) { animation-delay: 1s; }

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-icon {
  background: #FF6A13;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 16px rgba(255, 106, 19, 0.5);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.step-icon:hover {
  transform: scale(1.1);
}

.step-info {
  flex: 1;
  text-align: left;
}

.step-info h4 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #43092d;
}

.step-info p {
  margin: 0;
  font-size: 0.95rem;
  color: #000038;
}

.step-bar {
  flex-basis: 150px;
  height: 6px;
  background: #222a55;
  border-radius: 3px;
  overflow: hidden;
  margin-left: 20px;
  box-shadow: inset 0 0 5px #000;
  position: relative;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, #FF6A13, #ff8840);
  border-radius: 3px;
  animation: glow 2s infinite alternate ease-in-out;
}

@keyframes glow {
  from { box-shadow: 0 0 6px #FF6A13; }
  to { box-shadow: 0 0 16px #ff8840; }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .step {
    flex-direction: column;
    align-items: flex-start;
  }
  .step-bar {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
/*--------------------------------------*/
.faq-section {
  background: #fdfdfd;
  padding: 100px 20px;
  text-align: center;
  color: #000038;
}

.faq-section h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #000038;
}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  justify-content: center;
}

.faq-column {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  background: #e5e4e4cd;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, background 0.4s ease;
}

.faq-item.open {
  background: linear-gradient(135deg, #000038, #1c1c6d);
  color: white;
  box-shadow: 0 0 20px rgba(255, 106, 19, 0.25);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #FF6A13;
}

.faq-question i {
  font-size: 1.1rem;
  transition: transform 0.4s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 24px;
  font-size: 0.95rem;
  color: #444;
  transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 20px 24px;
  color: #ddd;
}

@media (max-width: 768px) {
  .faq-grid {
    flex-direction: column;
    gap: 20px;
  }

  .faq-column {
    max-width: 100%;
  }
}
/*-----------------------------------------*/
/*-------slider part-------------*/
    .slider-section {
        padding: 20px;
        text-align: center;
    }

    .slider-heading {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #000038;
        text-align: left;
        border: 1px solid white;
        padding: 10px 20px;
        width: 450px;
    }

    .logo-slider {
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .logo-track {
        display: flex;
        animation: scroll 20s linear infinite;
    }

    .logo-track img {
        height: 100px; /* Adjust this to your desired logo size */
        margin-right: 20px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }
    @media screen and (max-width: 768px) {
        .slider-heading {
    
        font-size: 18px;
        text-align: left;
        width: 95%;
    }
    }
/*-----------------------------------------*/
.final-cta-section {
  background: #000038;
  padding: 100px 30px;
  text-align: center;
  color: white;
}

.cta-content {
  max-width: 800px;
  margin: auto;
  animation: fadeInUp 1s ease;
}

.final-cta-section h2 {
  font-size: 2.4rem;
  color: #FF6A13;
  margin-bottom: 20px;
}

.final-cta-section p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cta-btn {
  padding: 14px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.primary-btn {
  background: #FF6A13;
  color: white;
}

.primary-btn:hover {
  background: #e75c0b;
  transform: scale(1.05);
}

.secondary-btn {
  background: white;
  color: #000038;
}

.secondary-btn:hover {
  background: #ddd;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 600px) {
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}
