﻿/* =====================================================
   Australia Scholarship Page – Unique Design
===================================================== */

.scholarship-aus-page {
  background: linear-gradient(180deg, #f4fbff, #ffffff);
}

/* ================= HERO ================= */
.aus-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 65vh;
  background:
    linear-gradient(120deg, rgba(0,0,0,.6), rgba(0,0,0,.4)),
    url('../images/scholarship_1.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.aus-hero-content {
  max-width: 900px;
  padding: 0 40px;
  color: #fff;
  animation: slideHero 1s ease forwards;
}

.aus-hero h1 {
  font-size: 3.8rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.aus-hero p {
  font-size: 1.3rem;
  color: #ffd700;
  max-width: 700px;
}

/* ================= SECTION ================= */
.aus-section {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  margin-bottom: 45px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  animation: fadeRise 0.9s ease both;
}

.aus-section h2 {
  font-size: 2rem;
  color: #2e8b57;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.aus-section h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #66cc66, #ffd700);
  position: absolute;
  bottom: -10px;
  left: 0;
  border-radius: 10px;
}

/* ================= ICON GRID ================= */
.aus-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.aus-icon-card {
  background: linear-gradient(135deg, #f0fff5, #ffffff);
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.aus-icon-card i {
  font-size: 2.5rem;
  color: #66cc66;
  margin-bottom: 15px;
}

.aus-icon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

/* ================= SCHOLARSHIP CARDS ================= */
.aus-scholarship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.aus-scholarship-card {
  border-top: 6px solid #66cc66;
  padding: 25px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
  transition: transform .35s ease;
}

.aus-scholarship-card:hover {
  transform: translateY(-8px);
}

.aus-scholarship-card h3 {
  color: #004aad;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* ================= APPLICATION STEPS ================= */
.aus-steps {
  counter-reset: step;
}

.aus-step {
  position: relative;
  padding-left: 70px;
  margin-bottom: 30px;
}

.aus-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  background: #66cc66;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= TIPS ================= */
.aus-tips {
  background: linear-gradient(135deg, #fff9db, #ffef99);
}

.aus-tips li {
  font-weight: 500;
}

/* ================= ANIMATIONS ================= */
@keyframes slideHero {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRise {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .aus-hero h1 {
    font-size: 2.4rem;
  }
  .aus-section {
    padding: 28px;
  }
}
