/* Section IDs for scrolling targets */
#new-application,
#admission-requirements,
#application-process,
#fee-payment,
#accommodation {
  scroll-margin-top: 100px; /* Adjust based on your header height */
}
#fee-payment {
  scroll-margin-top: 160px; /* Adjust based on your header height */
}

/* Hero Section */
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 89, 95, 0.3), rgba(0, 49, 58, 0.3)), url('reception3.jpg');
  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;
  padding:  0 20px;
}

.hero__content {
  position: relative;
  width: 100%;
  height: 100%;
  width: 1200px;
  display: flex;
  align-items: flex-end;
}

.hero__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero__title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.801);
  margin-bottom: 20px;
}

/* Responsive Hero Section */
@media (max-width: 768px) {
  .hero {
    height: 50vh;
    min-height: 400px;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 40vh;
    min-height: 300px;
  }
  
  .hero__title {
    font-size: 2rem;
  }
}

/* How to Apply Section */
.apply {
  padding: 80px 0;
  background: #fff;
}

.apply .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.apply__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Side - Content */
.apply__text-side {
  padding: 20px 0;
}

.apply__header {
  margin-bottom: 40px;
}

.apply__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.apply__underline {
  height: 4px;
  background: #e63946;
  width: 150px;
  border-radius: 2px;
}

.apply__description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
}

.apply__description p:last-child {
  margin-bottom: 0;
}

.apply__parents {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #1d4ed8;
  margin-top: 30px;
}

.apply__parents strong {
  color: #333;
  font-weight: 600;
}

/* Right Side - Image */
.apply__image-side {
  position: relative;
}

.apply__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0);
  height: 500px;
}

.apply__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.apply__image:hover img {
  transform: scale(1.03);
}

/* Admission Requirements Section */
.requirements {
  padding: 60px 0;
  background: #f8f9fa;
  padding-bottom: 0;
}

.requirements .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.requirements__header {
  margin-bottom: 50px;
}

.requirements__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.requirements__underline {
  height: 4px;
  background: #e63946;
  width: 150px;
  border-radius: 2px;
  margin: 0;
}

.requirements__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.requirements__list {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.requirements__list-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #14abda;
  margin: 0 0 25px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #e63946;
}

.requirements__items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #555;
}

.requirements__item:last-child {
  margin-bottom: 0;
}

.requirements__item-icon {
  color: #e63946;
  margin-right: 12px;
  font-weight: bold;
  font-size: 1rem;
}

.requirements__fees {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.requirements__fees-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #14abda;
  margin: 0 0 25px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #e63946;
}

.requirements__fee-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #e0e0e0;
}

.requirements__fee-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.requirements__fee-name {
  font-size: 1rem;
  color: #555;
}

.requirements__fee-amount {
  font-size: 1rem;
  font-weight: 600;
  color: #e63946;
}

.requirements__note {
  margin-top: 25px;
  padding: 15px;
  background: #f0f7ff;
  border-radius: 8px;
  border-left: 4px solid #14abda;
}

.requirements__note p {
  margin: 0;
  font-size: 1rem;
  color: #555;;
}

.requirements__welcome {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: #1d4ed8;
  color: white;
  border-radius: 12px;
  display: none;
}

.requirements__welcome h3 {
  margin: 0 0 10px 0;
  font-size: 1.8rem;
  font-weight: 600;
}

.requirements__welcome p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 968px) {
  .apply__content {
    gap: 40px;
  }
  
  .apply__image {
    height: 450px;
  }
  
  .apply__title {
    font-size: 2.2rem;
  }

  .requirements__content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .apply {
    padding: 60px 0;
  }
  
  .apply__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .apply__image {
    height: 400px;
    order: -1;
  }
  
  .apply__title {
    font-size: 2rem;
  }
  
  .apply__description p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .apply__parents {
    padding: 20px;
  }

  .requirements {
    padding: 60px 0;
  }

  .requirements__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .requirements__title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .apply {
    padding: 40px 0;
  }
  
  .apply__content {
    gap: 30px;
  }
  
  .apply__image {
    height: 300px;
  }
  
  .apply__title {
    font-size: 1.7rem;
  }
  
  .apply__underline {
    width: 120px;
    height: 3px;
  }
  
  .apply__description p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .apply__parents {
    padding: 15px;
    margin-top: 20px;
  }

  .requirements {
    padding: 40px 0;
  }

  .requirements__title {
    font-size: 1.7rem;
  }

  .requirements__list, .requirements__fees {
    padding: 20px;
  }

  .requirements__list-title, .requirements__fees-title {
    font-size: 1.3rem;
  }

  .requirements__item, .requirements__fee-name, .requirements__fee-amount {
    font-size: 1rem;
  }

  .requirements__welcome h3 {
    font-size: 1.5rem;
  }

  .requirements__welcome p {
    font-size: 1rem;
  }
}
/* Application Process Section */
.application-process {
  padding: 80px 0;
  background: #f8f9fa;
}

.application-process .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.process-header {
  margin-bottom: 60px;
  text-align: left;
}

.process-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin: 10px 0 0 0;
  font-style: italic;
}

.process-underline {
  height: 4px;
  background: #e63946;
  width: 200px;
  border-radius: 2px;
}

/* Steps Grid */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.process-step {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
  width: 50px;
  height: 50px;
  background: #14abda;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #161616;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.step-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin: 0 0 15px 0;
  flex-grow: 1;
}

/* Requirements List */
.requirements-list {
  margin: 0 0 15px 20px;
  padding: 0;
  color: #666;
  flex-grow: 1;
}

.requirements-list li {
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* CTA Button */
.step-cta-btn {
  display: inline-block;
  background: #14abda;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: auto;
  border: 2px solid #14abda;
}

.step-cta-btn:hover {
  background: white;
  color: #14abda;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Image Step */
.process-image {
  padding: 0;
  overflow: hidden;
}

.step-image {
  height: 100%;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Yellow Divider */
.process-divider {
  height: 3px;
  background: #ffd700;
  width: 100%;
  margin: 60px 0;
  border-radius: 2px;
}

/* Fee Payment */
.fee-payment {
  text-align: left;
}

.fee-header {
  margin-bottom: 30px;
}

.fee-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fee-underline {
  height: 4px;
  background: #e63946;
  width: 180px;
  border-radius: 2px;
}

.fee-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
  max-width: 800px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .process-step:last-child {
    grid-column: 1 / -1;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .application-process {
    padding: 60px 0;
  }
  
  .process-header {
    margin-bottom: 40px;
  }
  
  .process-title {
    font-size: 1.8rem;
  }
  
  .process-subtitle {
    font-size: 1.1rem;
  }
  
  .process-underline {
    width: 150px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .process-step:last-child {
    grid-column: 1;
    height: 250px;
  }
  
  .process-step {
    padding: 25px;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .step-title {
    font-size: 1.2rem;
  }
  
  .process-divider {
    margin: 40px 0;
  }
  
  .fee-title {
    font-size: 1.8rem;
  }
  
  .fee-underline {
    width: 140px;
  }
  
  .fee-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .application-process {
    padding: 40px 0;
  }
  
  .process-title {
    font-size: 1.7rem;
  }
  
  .process-subtitle {
    font-size: 1rem;
  }
  
  .process-underline {
    width: 120px;
    height: 3px;
  }
  
  .process-step {
    padding: 20px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .step-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .step-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .requirements-list {
    margin-left: 15px;
    margin-bottom: 12px;
  }
  
  .requirements-list li {
    font-size: 0.9rem;
  }
  
  .step-cta-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .process-divider {
    margin: 30px 0;
  }
  
  .fee-title {
    font-size: 1.6rem;
  }
  
  .fee-underline {
    width: 120px;
    height: 3px;
  }
  
  .fee-description {
    font-size: 0.95rem;
  }
}

/* Accommodation Section */
.accommodation {
    background: var(--blue);
    padding: 80px 0;
    color: white;
}

.accommodation .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.accommodation__content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 60px;
    align-items: center;
}

/* Left Side - Black Dash */
.accommodation__dash {
    width: 8px;
    height: 120px;
    background: #000;
    border-radius: 4px;
}

/* Middle - Content */
.accommodation__text {
    padding: 20px 0;
}

.accommodation__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accommodation__description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 35px 0;
    max-width: 600px;
}

.accommodation__button {
    background: white;
    color: var(--blue);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accommodation__button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.accommodation__button:active {
    transform: translateY(0);
}

/* Right Side - Image */
.accommodation__image {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.accommodation__image img {
    width: 100%;
    height: 350px;
    display: block;
    transition: transform 0.5s ease;
}

.accommodation__image:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .accommodation__content {
        grid-template-columns: auto 1fr;
        gap: 40px;
    }
    
    .accommodation__image {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .accommodation {
        padding: 60px 0;
    }
    
    .accommodation__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .accommodation__dash {
        width: 80px;
        height: 6px;
        justify-self: center;
    }
    
    .accommodation__title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .accommodation__description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    .accommodation__button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .accommodation {
        padding: 40px 0;
    }
    
    .accommodation__content {
        gap: 30px;
    }
    
    .accommodation__dash {
        width: 60px;
        height: 5px;
    }
    
    .accommodation__title {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
    
    .accommodation__description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .accommodation__button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .accommodation__image {
        max-width: 100%;
    }
}