* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fcfcfc;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 85%;
    margin: auto;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #006633; /* Dark Islamic Green */
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #006633;
}

.btn-contact {
    background: #006633;
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1584281723351-9572e397d24b?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto 35px;
}

.btn-primary {
    background: #ffc107;
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e0ac08;
}

/* Courses */
.courses {
    padding: 100px 0;
    text-align: center;
}

.section-title {
    margin-bottom: 60px;
    font-size: 36px;
    color: #006633;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.course-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
    border-bottom: 4px solid transparent;
}

.course-card:hover {
    transform: translateY(-15px);
    border-color: #006633;
}

.course-card .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.course-card h3 {
    margin-bottom: 15px;
    color: #006633;
}