.course-detail {
padding: 60px 20px;
background-color: #ffffff;
}
.course-detail__container {
max-width: 900px;
margin: 0 auto;
}
.course-detail__heading {
font-family: 'Montserrat', sans-serif;
font-size: 36px;
font-weight: 700;
text-align: center;
margin: 0 0 16px;
color: #2D3E84;
}
.course-detail__description {
font-size: 16px;
line-height: 1.8;
color: #555555;
text-align: center;
max-width: 700px;
margin: 0 auto 48px;
}
.course-detail__section-title {
font-family: 'Montserrat', sans-serif;
font-size: 24px;
font-weight: 700;
color: #333333;
margin: 0 0 24px;
text-align: center;
}
.course-detail__curriculum {
margin-bottom: 48px;
}
.course-detail__table {
width: 100%;
border-collapse: collapse;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.course-detail__table tr {
border-bottom: 1px solid #E0E0E0;
}
.course-detail__table tr:last-child {
border-bottom: none;
}
.course-detail__table td {
padding: 16px 20px;
font-size: 15px;
}
.course-detail__table-label {
background: #F0F4FF;
font-weight: 600;
color: #1F2C5C;
width: 40%;
display: flex;
align-items: center;
gap: 8px;
}
.course-detail__table tr {
display: flex;
}
.course-detail__table-label {
flex: 0 0 40%;
}
.course-detail__table-value {
flex: 1;
color: #555555;
background: #ffffff;
}
.course-detail__areas {
margin-bottom: 48px;
}
.course-detail__areas-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.course-detail__area-card {
text-align: center;
padding: 32px 20px;
background: #F5F5F5;
border-radius: 16px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.course-detail__area-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
background: #F0F4FF;
}
.course-detail__area-icon {
font-size: 36px;
width: 36px;
height: 36px;
color: #2D3E84;
margin-bottom: 12px;
display: inline-block;
}
.course-detail__area-title {
font-family: 'Montserrat', sans-serif;
font-size: 16px;
font-weight: 600;
margin: 0 0 8px;
color: #333333;
}
.course-detail__area-desc {
font-size: 13px;
line-height: 1.5;
color: #666666;
margin: 0;
}
.course-detail__gallery {
margin-bottom: 48px;
}
.course-detail__gallery-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
}
.course-detail__gallery-item {
border-radius: 8px;
overflow: hidden;
aspect-ratio: 1;
}
.course-detail__gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.course-detail__gallery-item:hover img {
transform: scale(1.1);
}
.course-detail__cta-wrapper {
text-align: center;
margin-top: 32px;
}
.course-detail__cta {
display: inline-block;
padding: 16px 48px;
background: linear-gradient(135deg, #F8EC00, #FFC107);
color: #ffffff;
text-decoration: none;
border-radius: 50px;
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.course-detail__cta:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(255, 111, 0, 0.3);
color: #ffffff;
}
@media (max-width: 768px) {
.course-detail {
padding: 40px 16px;
}
.course-detail__heading {
font-size: 28px;
}
.course-detail__areas-grid {
grid-template-columns: repeat(2, 1fr);
}
.course-detail__gallery-grid {
grid-template-columns: repeat(2, 1fr);
}
.course-detail__table tr {
flex-direction: column;
}
.course-detail__table-label {
flex: none;
width: 100%;
}
}
@media (max-width: 480px) {
.course-detail__areas-grid {
grid-template-columns: 1fr;
}
}.course-list {
padding: 60px 20px;
background-color: #ffffff;
}
.course-list__container {
max-width: 1200px;
margin: 0 auto;
}
.course-list__heading {
font-family: 'Montserrat', sans-serif;
font-size: 32px;
font-weight: 700;
text-align: center;
margin: 0 0 32px;
color: #2D3E84;
text-transform: uppercase;
}
.course-list__filter {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 40px;
}
.course-list__filter-btn {
padding: 8px 24px;
border: 2px solid #E0E0E0;
background: #ffffff;
border-radius: 50px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
font-family: inherit;
color: #666666;
}
.course-list__filter-btn:hover {
border-color: #2D3E84;
color: #2D3E84;
}
.course-list__filter-btn--active {
background-color: #2D3E84;
border-color: #2D3E84;
color: #ffffff;
}
.course-list__grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}
.course-list__card {
display: flex;
flex-direction: row;
background: #ffffff;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.course-list__card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.course-list__image {
width: 240px;
min-height: 200px;
flex-shrink: 0;
overflow: hidden;
}
.course-list__image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.course-list__card:hover .course-list__image img {
transform: scale(1.05);
}
.course-list__image-placeholder {
width: 100%;
height: 100%;
background: #F0F4FF;
display: flex;
align-items: center;
justify-content: center;
}
.course-list__content {
padding: 24px;
display: flex;
flex-direction: column;
flex: 1;
}
.course-list__title {
font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-weight: 700;
margin: 0 0 12px;
color: #333333;
}
.course-list__description {
font-size: 14px;
line-height: 1.6;
color: #666666;
margin: 0 0 16px;
flex: 1;
}
.course-list__cta {
font-size: 14px;
font-weight: 600;
color: #F8EC00;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 4px;
transition: color 0.3s ease;
}
.course-list__cta:hover {
color: #D4CC00;
}
@media (max-width: 1024px) {
.course-list__grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.course-list {
padding: 40px 16px;
}
.course-list__heading {
font-size: 24px;
}
.course-list__card {
flex-direction: column;
}
.course-list__image {
width: 100%;
height: 200px;
min-height: auto;
}
}