.feedback-section {
padding: 60px 20px;
background-color: #F5F5F5;
}
.feedback-section__container {
max-width: 1200px;
margin: 0 auto;
}
.feedback-section__heading {
font-family: 'Montserrat', sans-serif;
font-size: 32px;
font-weight: 700;
text-align: center;
margin: 0 0 48px;
color: #2D3E84;
text-transform: uppercase;
}
.feedback-section__carousel {
overflow: hidden;
}
.feedback-section__track {
display: flex;
transition: transform 0.5s ease;
}
.feedback-section__card {
min-width: 33.333%;
padding: 0 12px;
box-sizing: border-box;
flex-shrink: 0;
}
.feedback-section__media {
position: relative;
width: 100%;
height: 220px;
border-radius: 12px 12px 0 0;
overflow: hidden;
background: #F0F4FF;
}
.feedback-section__photo {
width: 100%;
height: 100%;
object-fit: cover;
}
.feedback-section__photo-placeholder {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: #F0F4FF;
}
.feedback-section__play-btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 56px;
height: 56px;
border-radius: 50%;
background: rgba(46, 125, 50, 0.85);
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
transition: transform 0.3s ease, background 0.3s ease;
}
.feedback-section__play-btn:hover {
transform: translate(-50%, -50%) scale(1.1);
background: rgba(46, 125, 50, 1);
}
.feedback-section__content {
background: #ffffff;
padding: 24px;
border-radius: 0 0 12px 12px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.feedback-section__quote {
font-size: 14px;
line-height: 1.7;
color: #555555;
font-style: italic;
margin: 0 0 16px;
}
.feedback-section__author {
display: flex;
flex-direction: column;
margin-bottom: 8px;
}
.feedback-section__name {
font-weight: 600;
font-size: 15px;
color: #333333;
}
.feedback-section__role {
font-size: 13px;
color: #999999;
}
.feedback-section__more {
font-size: 13px;
font-weight: 600;
color: #F8EC00;
text-decoration: none;
}
.feedback-section__more:hover {
color: #D4CC00;
}
.feedback-section__nav {
display: flex;
justify-content: center;
gap: 12px;
margin-top: 32px;
}
.feedback-section__arrow {
width: 40px;
height: 40px;
border-radius: 50%;
border: 2px solid #2D3E84;
background: transparent;
color: #2D3E84;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s ease, color 0.3s ease;
}
.feedback-section__arrow:hover {
background-color: #2D3E84;
color: #ffffff;
}
@media (max-width: 1024px) {
.feedback-section__card {
min-width: 50%;
}
}
@media (max-width: 768px) {
.feedback-section {
padding: 40px 16px;
}
.feedback-section__heading {
font-size: 24px;
margin-bottom: 32px;
}
.feedback-section__card {
min-width: 100%;
}
}.hero-slider {
position: relative;
width: 100%;
height: 80vh;
min-height: 500px;
max-height: 800px;
overflow: hidden;
}
.hero-slider__track {
position: relative;
width: 100%;
height: 100%;
}
.hero-slider__slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
background-color: #2D3E84;
opacity: 0;
transition: opacity 0.8s ease;
z-index: 1;
}
.hero-slider__slide--active {
opacity: 1;
z-index: 2;
}
.hero-slider__overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
display: flex;
align-items: center;
justify-content: center;
}
.hero-slider__content {
text-align: center;
color: #ffffff;
padding: 20px;
max-width: 800px;
}
.hero-slider__heading {
font-family: 'Montserrat', sans-serif;
font-size: 48px;
font-weight: 700;
margin: 0 0 16px;
text-transform: uppercase;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
line-height: 1.2;
}
.hero-slider__subheading {
font-size: 20px;
margin: 0 0 32px;
opacity: 0.95;
font-weight: 300;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.hero-slider__button {
display: inline-block;
padding: 14px 40px;
background-color: #F8EC00;
color: #ffffff;
text-decoration: none;
border-radius: 50px;
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
transition: background-color 0.3s ease, transform 0.3s ease;
}
.hero-slider__button:hover {
background-color: #D4CC00;
transform: translateY(-2px);
color: #ffffff;
}
.hero-slider__arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
background: rgba(255, 255, 255, 0.2);
border: 2px solid rgba(255, 255, 255, 0.5);
color: #ffffff;
width: 48px;
height: 48px;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.3s ease;
backdrop-filter: blur(4px);
}
.hero-slider__arrow:hover {
background: rgba(255, 255, 255, 0.4);
}
.hero-slider__arrow--prev {
left: 24px;
}
.hero-slider__arrow--next {
right: 24px;
}
.hero-slider__dots {
position: absolute;
bottom: 24px;
left: 50%;
transform: translateX(-50%);
z-index: 10;
display: flex;
gap: 10px;
}
.hero-slider__dot {
width: 12px;
height: 12px;
border-radius: 50%;
border: 2px solid #ffffff;
background: transparent;
cursor: pointer;
padding: 0;
transition: background 0.3s ease;
}
.hero-slider__dot--active {
background: #ffffff;
}
@media (max-width: 768px) {
.hero-slider {
height: 60vh;
min-height: 400px;
}
.hero-slider__heading {
font-size: 28px;
}
.hero-slider__subheading {
font-size: 16px;
margin-bottom: 24px;
}
.hero-slider__button {
padding: 12px 28px;
font-size: 14px;
}
.hero-slider__arrow {
width: 36px;
height: 36px;
}
.hero-slider__arrow--prev {
left: 12px;
}
.hero-slider__arrow--next {
right: 12px;
}
}