Australia Alludu – Media & News for Indian Students
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@import url(‘
https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Rubik:wght@400;600;700&display=swap’ ;);
:root {
–primary: #1e3a5f;
–accent: #ff6b3d;
–secondary: #f39c12;
–success: #27ae60;
–light-bg: #f8f9fa;
–dark-text: #2c3e50;
–border-color: #ecf0f1;
}
body {
font-family: ‘Rubik’, sans-serif;
line-height: 1.6;
color: var(–dark-text);
background: white;
overflow-x: hidden;
}
/* Header & Navigation */
header {
background: linear-gradient(135deg, var(–primary) 0%, #2d5a8a 100%);
color: white;
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
nav {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-family: ‘Merriweather’, serif;
font-size: 1.8rem;
font-weight: 700;
display: flex;
align-items: center;
gap: 0.8rem;
}
.logo-flag {
width: 40px;
height: 40px;
background: linear-gradient(135deg, #ff9500 0%, #ff6b3d 100%);
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
}
nav ul {
display: flex;
list-style: none;
gap: 2.5rem;
}
nav a {
color: white;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
font-size: 0.95rem;
position: relative;
}
nav a::after {
content: ”;
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(–accent);
transition: width 0.3s ease;
}
nav a:hover::after {
width: 100%;
}
/* Hero Banner */
.hero {
background: linear-gradient(135deg, var(–primary) 0%, #2d5a8a 100%);
color: white;
padding: 4rem 2rem;
text-align: center;
position: relative;
overflow: hidden;
min-height: 400px;
display: flex;
align-items: center;
justify-content: center;
}
.hero::before {
content: ”;
position: absolute;
top: -50%;
right: -10%;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(255, 107, 61, 0.2) 0%, transparent 70%);
border-radius: 50%;
}
.hero-content {
max-width: 800px;
position: relative;
z-index: 1;
animation: slideUp 0.8s ease-out;
}
.hero h1 {
font-family: ‘Merriweather’, serif;
font-size: 3.5rem;
margin-bottom: 1rem;
font-weight: 700;
line-height: 1.2;
}
.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 2rem;
font-weight: 400;
opacity: 0.95;
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.hero-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.btn {
padding: 0.9rem 2.2rem;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid transparent;
cursor: pointer;
font-size: 0.95rem;
}
.btn-primary {
background: var(–accent);
color: white;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(255, 107, 61, 0.3);
}
.btn-secondary {
background: transparent;
color: white;
border-color: white;
}
.btn-secondary:hover {
background: white;
color: var(–primary);
}
/* Content Container */
.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
}
/* Section */
.section {
padding: 4rem 0;
border-bottom: 1px solid var(–border-color);
}
.section-title {
font-family: ‘Merriweather’, serif;
font-size: 2.8rem;
margin-bottom: 2.5rem;
color: var(–primary);
position: relative;
padding-bottom: 1rem;
}
.section-title::after {
content: ”;
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 4px;
background: var(–accent);
border-radius: 2px;
}
/* News Grid */
.news-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.news-card {
background: white;
border-radius: 8px;
overflow: hidden;
border: 1px solid var(–border-color);
transition: all 0.3s ease;
cursor: pointer;
display: flex;
flex-direction: column;
}
.news-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
border-color: var(–accent);
}
.news-image {
width: 100%;
height: 200px;
background: linear-gradient(135deg, var(–primary), #2d5a8a);
display: flex;
align-items: center;
justify-content: center;
font-size: 4rem;
color: rgba(255, 255, 255, 0.3);
position: relative;
overflow: hidden;
}
.news-image::before {
content: ”;
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s ease;
}
.news-card:hover .news-image::before {
left: 100%;
}
.news-badge {
position: absolute;
top: 1rem;
right: 1rem;
background: var(–accent);
color: white;
padding: 0.4rem 0.8rem;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
z-index: 2;
}
.news-content {
padding: 1.8rem;
flex: 1;
display: flex;
flex-direction: column;
}
.news-meta {
display: flex;
gap: 1rem;
margin-bottom: 0.8rem;
font-size: 0.85rem;
color: #7f8c8d;
}
.news-meta-item {
display: flex;
align-items: center;
gap: 0.3rem;
}
.news-card h3 {
font-family: ‘Merriweather’, serif;
font-size: 1.3rem;
margin-bottom: 0.8rem;
color: var(–primary);
line-height: 1.4;
flex: 1;
}
.news-card p {
color: #555;
font-size: 0.95rem;
margin-bottom: 1rem;
flex: 1;
}
.news-read-more {
color: var(–accent);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: gap 0.3s ease;
}
.news-read-more:hover {
gap: 1rem;
}
/* Featured Article */
.featured-article {
background: linear-gradient(135deg, var(–light-bg) 0%, rgba(255, 107, 61, 0.05) 100%);
padding: 3rem;
border-radius: 8px;
margin-bottom: 3rem;
border-left: 5px solid var(–accent);
}
.featured-badge {
display: inline-block;
background: var(–accent);
color: white;
padding: 0.4rem 1rem;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
margin-bottom: 1rem;
}
.featured-article h2 {
font-family: ‘Merriweather’, serif;
font-size: 2rem;
margin-bottom: 1rem;
color: var(–primary);
}
.featured-article p {
margin-bottom: 1.5rem;
color: #555;
font-size: 1.05rem;
}
/* Stats Section */
.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin: 3rem 0;
}
.stat-card {
background: white;
padding: 2rem;
border-radius: 8px;
text-align: center;
border: 1px solid var(–border-color);
transition: all 0.3s ease;
}
.stat-card:hover {
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.stat-number {
font-family: ‘Merriweather’, serif;
font-size: 2.5rem;
font-weight: 700;
color: var(–accent);
margin-bottom: 0.5rem;
}
.stat-label {
font-size: 0.95rem;
color: #666;
font-weight: 500;
}
/* Sidebar */
.main-content {
display: grid;
grid-template-columns: 1fr 300px;
gap: 3rem;
align-items: start;
}
.sidebar {
display: flex;
flex-direction: column;
gap: 2rem;
}
.sidebar-box {
background: var(–light-bg);
padding: 1.8rem;
border-radius: 8px;
border-left: 4px solid var(–accent);
}
.sidebar-box h3 {
font-family: ‘Merriweather’, serif;
font-size: 1.2rem;
margin-bottom: 1rem;
color: var(–primary);
}
.sidebar-list {
list-style: none;
}
.sidebar-list li {
margin-bottom: 0.8rem;
padding-bottom: 0.8rem;
border-bottom: 1px solid #ddd;
}
.sidebar-list li:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
.sidebar-list a {
color: var(–primary);
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
font-size: 0.9rem;
}
.sidebar-list a:hover {
color: var(–accent);
}
/* Newsletter */
.newsletter {
background: linear-gradient(135deg, var(–primary) 0%, #2d5a8a 100%);
color: white;
padding: 3rem 2rem;
border-radius: 8px;
margin-bottom: 3rem;
}
.newsletter h3 {
font-family: ‘Merriweather’, serif;
font-size: 1.4rem;
margin-bottom: 0.5rem;
}
.newsletter p {
margin-bottom: 1.5rem;
font-size: 0.95rem;
opacity: 0.9;
}
.newsletter-form {
display: flex;
gap: 0.5rem;
}
.newsletter-form input {
flex: 1;
padding: 0.8rem;
border: none;
border-radius: 4px;
font-family: inherit;
}
.newsletter-form button {
padding: 0.8rem 1.5rem;
background: var(–accent);
color: white;
border: none;
border-radius: 4px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s ease;
}
.newsletter-form button:hover {
background: #ff5722;
}
/* Footer */
footer {
background: var(–primary);
color: white;
padding: 3rem 2rem;
margin-top: 4rem;
}
.footer-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h4 {
margin-bottom: 1rem;
font-size: 1rem;
font-weight: 600;
}
.footer-section ul {
list-style: none;
}
.footer-section ul li {
margin-bottom: 0.5rem;
}
.footer-section a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: color 0.3s ease;
font-size: 0.9rem;
}
.footer-section a:hover {
color: white;
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 2rem;
text-align: center;
font-size: 0.9rem;
opacity: 0.8;
}
/* Events Section */
.events-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 2rem;
margin: 3rem 0;
}
.event-card {
background: white;
border-radius: 10px;
overflow: hidden;
border: 2px solid var(–border-color);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
height: 100%;
}
.event-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
border-color: var(–accent);
}
.event-header {
position: relative;
height: 200px;
background: linear-gradient(135deg, var(–primary), #2d5a8a);
display: flex;
align-items: center;
justify-content: center;
font-size: 5rem;
overflow: hidden;
}
.event-header::before {
content: ”;
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
transition: left 0.6s ease;
}
.event-card:hover .event-header::before {
left: 100%;
}
.event-date-badge {
position: absolute;
top: 1rem;
left: 1rem;
background: var(–accent);
color: white;
padding: 0.6rem 1.2rem;
border-radius: 25px;
font-size: 0.85rem;
font-weight: 700;
z-index: 2;
}
.event-location-badge {
position: absolute;
bottom: 1rem;
right: 1rem;
background: rgba(255, 255, 255, 0.95);
color: var(–primary);
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
z-index: 2;
}
.event-body {
padding: 1.8rem;
flex: 1;
display: flex;
flex-direction: column;
}
.event-body h3 {
font-family: ‘Merriweather’, serif;
font-size: 1.4rem;
color: var(–primary);
margin-bottom: 0.8rem;
line-height: 1.3;
}
.event-details {
display: flex;
flex-direction: column;
gap: 0.8rem;
margin-bottom: 1.2rem;
font-size: 0.9rem;
color: #666;
flex: 1;
}
.event-detail-item {
display: flex;
align-items: flex-start;
gap: 0.8rem;
}
.event-detail-icon {
font-size: 1.2rem;
margin-top: 0.2rem;
}
.event-description {
color: #555;
font-size: 0.95rem;
margin-bottom: 1.2rem;
line-height: 1.6;
}
.event-register-btn {
background: linear-gradient(135deg, var(–accent), #ff5722);
color: white;
border: none;
padding: 0.8rem 1.5rem;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
align-self: flex-start;
}
.event-register-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(255, 107, 61, 0.3);
}
.event-category-tag {
display: inline-block;
background: rgba(255, 107, 61, 0.1);
color: var(–accent);
padding: 0.4rem 0.8rem;
border-radius: 4px;
font-size: 0.8rem;
font-weight: 600;
margin-top: auto;
align-self: flex-start;
}
.upcoming-timeline {
background: linear-gradient(135deg, var(–light-bg), rgba(255, 107, 61, 0.05));
padding: 2.5rem;
border-radius: 10px;
margin: 3rem 0;
border-left: 5px solid var(–accent);
}
.upcoming-timeline h3 {
font-family: ‘Merriweather’, serif;
font-size: 1.5rem;
color: var(–primary);
margin-bottom: 1.5rem;
}
.timeline-month {
margin-bottom: 2rem;
}
.timeline-month-title {
font-weight: 700;
color: var(–accent);
font-size: 1.1rem;
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.timeline-event-list {
list-style: none;
padding-left: 0;
}
.timeline-event {
display: flex;
gap: 1.5rem;
margin-bottom: 1.2rem;
padding-left: 0;
}
.timeline-dot {
width: 12px;
height: 12px;
background: var(–accent);
border-radius: 50%;
margin-top: 0.4rem;
flex-shrink: 0;
}
.timeline-event-text {
color: #666;
font-size: 0.95rem;
}
.timeline-event-text strong {
color: var(–primary);
}
/* Responsive */
@media (max-width: 768px) {
nav ul {
gap: 1rem;
font-size: 0.85rem;
}
.hero h1 {
font-size: 2rem;
}
.section-title {
font-size: 2rem;
}
.news-grid {
grid-template-columns: 1fr;
}
.main-content {
grid-template-columns: 1fr;
}
.featured-article {
padding: 1.5rem;
}
.hero-buttons {
flex-direction: column;
}
.btn {
width: 100%;
}
}
Study in Australia
Latest news, visa updates, and guidance for Indian students
Latest News
📌 Featured
Australia Extends Work Rights for International Students in 2024
The Australian government has announced an extension of post-study work visa (PSW) validity for eligible international students. Indian graduates can now work up to 5 years in skilled positions, opening more pathways to permanent residency. This change is expected to benefit thousands of Indian students completing their studies in 2024-2025.
Read Full Story →
2.8L+
Indian Students in Australia
AUD 20-25L
Average Annual Cost
📚
Education
📅 March 2024
⏱️ 5 min read
Melbourne University Offers Scholarships for Indian Students
University of Melbourne has announced special scholarships for engineering and commerce students from India. Eligible candidates can receive up to 50% tuition fee waiver.
Read More →
✈️
Visa
📅 March 2024
⏱️ 4 min read
New Student Visa Processing Times Reduced
Australian Department of Home Affairs has reduced student visa processing time from 12 weeks to 8 weeks for Indian applicants with complete documentation.
Read More →
💼
Work
📅 February 2024
⏱️ 6 min read
Top Employers Hiring Indian Graduates in Australia
Tech giants and multinational corporations are increasingly hiring Indian IT graduates for positions in Sydney, Melbourne, and Brisbane with salaries starting from AUD 70,000.
Read More →
🏠
Accommodation
📅 February 2024
⏱️ 5 min read
Affordable Housing Options for Students in Major Cities
New student accommodation facilities have opened in Sydney and Melbourne offering rooms from AUD 200-300/week. University halls remain the most affordable option.
Read More →
🎓
Campus Life
📅 January 2024
⏱️ 7 min read
Success Stories: From India to Australia Success
Read inspiring stories of Indian students who completed their degrees and achieved career success in Australia. From engineers to entrepreneurs, their journeys inspire many.
Read More →
💰
Finance
📅 January 2024
⏱️ 8 min read
Education Loans Guide: Financing Your Australian Studies
Complete guide to education loans from Indian banks for studying in Australia. Includes information on NEFT schemes, interest rates, and loan approval process.
Read More →
Upcoming Events & Festivals
Join our vibrant Indian community events in Australia. Celebrate festivals, network with fellow students, and participate in cultural celebrations.
📅 Event Calendar 2024
🎆 October – November
Diwali Mela – Major cities – Largest festival celebration with fireworks, food, and cultural programs
Durga Puja Celebrations – Sydney & Melbourne – Traditional Puja ceremonies and cultural performances
Featured Events
Ganesh Chaturthi Festival
📍
Sydney, Melbourne, Brisbane, Perth & All Major Cities
👥
1000+ Indian Students & Community Members
🎭
Cultural programs, Modak distribution, Prayer ceremonies
Celebrate the arrival of Lord Ganesha with grand community gatherings. Enjoy traditional modaks, cultural performances, bhajans, and community bonding. Perfect opportunity to connect with fellow Indian students!
Register Now
Cultural Festival
Diwali Mela 2024
📍
Sydney Park, Federation Square Melbourne & Other Venues
👥
2000+ Attendees from Indian Community
🎆
Fireworks, Food stalls, Music & Dance performances
The festival of lights celebration! Experience spectacular fireworks displays, traditional Indian cuisine food stalls, Bollywood performances, rangoli competitions, and family entertainment. Largest Indian festival in Australia!
Register Now
Festival
Holi Festival Celebration
📍
Parks in Sydney, Melbourne, Brisbane & Other Cities
👥
500+ Students & Families
🎨
Color powder play, Traditional sweets, Games & Music
Festival of colors celebration! Play with organic color powder, enjoy traditional Indian sweets, participate in fun games, and celebrate with the Indian community. Free entry and organic colors provided!
Register Now
Cultural Festival
Durga Puja Celebrations
📍
Cultural Centers in Sydney & Melbourne
👥
Bengali & Eastern Indian Communities
🎭
Puja ceremonies, Cultural programs, Bengali food stalls
Traditional Durga Puja celebrations with authentic Bengali culture. Attend sacred puja ceremonies, enjoy classical music and dance performances, and relish authentic Bengali cuisine. Connect with your roots!
Register Now
Religious Ceremony
Onam Festival
📍
Perth Convention Centre & Melbourne Community Hall
👥
Kerala Community & Friends
🎨
Flower rangoli, Kathakali dance, Traditional feast
Kerala’s harvest festival! Witness beautiful flower arrangements (Pookalam), Kathakali classical dance performances, and enjoy traditional Onam feast. Experience the vibrant culture of Kerala with the community!
Register Now
Harvest Festival
Pongal Celebrations
📍
Sydney Town Hall & Brisbane Cultural Center
👥
Tamil Community & All Interested Students
🍛
Traditional food festival, Tamil performances, Rangoli
Tamil harvest festival celebration! Enjoy traditional Pongal dishes (Pongal rice, Chikali, Payasam), watch Tamil classical dance and music performances, participate in rangoli competitions. Celebrate harvest and prosperity!
Register Now
Harvest Festival