/* Testimonial Section Styling */
.testimonial-section {
background-color: #f9f9f9;
}

.testimonial-section h2 {
color: #421F6F;
margin-bottom: 2rem; /* Increased margin for better spacing */
}

.testimonial-card {
background-color: white; /* White background for cards */
border: 1px solid #ddd; /* Light border for cards */
border-radius: 10px; /* Rounded corners */
padding: 2rem; /* Padding for content */
transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.testimonial-card:hover {
transform: translateY(-5px); /* Lift effect on hover */
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Deeper shadow on hover */
}

.testimonial-section img {
border: 2px solid #421F6F;
}

.testimonial-section p {
font-style: italic;
color: #555;
}

/* About Us Section Styling */
.about-us-section {
background-color: #ffffff; /* White background to contrast with the violet and light sections */
color: #421F6F; /* Consistent text color */
padding: 4rem 0; /* Extra padding for spacing */
}

p.about-text {
font-size: 1.2rem;
color: #555;
line-height: 1.5;
max-width: 800px;
margin: 0 auto; /* Center the paragraph */
text-align: justify;
}

/* How It Works Section Styling */
.how-it-works-section {
background-color: #f9f9f9; /* Light grey background */
color: #333;
}

.step-card {
background-color: white;
border-radius: 10px;
padding: 2rem;
transition: transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.step-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.step-icon {
width: 80px;
height: 80px;
background-color: #FFB907; /* Yellow background */
border-radius: 50%; /* Circular icon background */
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
}

.step-icon i {
color: #421F6F; /* Violet color for icons */
font-size: 2rem; /* Icon size */
}

.step-title {
font-size: 1.5rem;
font-weight: 600;
color: #421F6F;
margin-top: 1rem;
}

.step-description {
font-size: 1rem;
color: #555;
margin-top: 0.5rem;
line-height: 1.6;
}
/* Video Section Styling */
.video-section {
background-color: #ffffff;
color: #421F6F;
}

.video-title {
color: #421F6F;
margin-bottom: 1.5rem;
}

.video-wrapper {
position: relative;
padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
height: 0;
overflow: hidden;
max-width: 100%;
background-color: #000;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.video-description {
color: #555;
font-size: 1.1rem;
margin-top: 1rem;
margin-bottom: 1.5rem;
}

.btn-cta {
background-color: #FFB907;
color: white;
text-decoration: none;
font-size: 1.2rem;
padding: 0.5rem 1.5rem;
border-radius: 50px;
transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-cta:hover {
background-color: transparent;
color: #FFB907;
border: 2px solid #FFB907;
}

/* Hero section */
.hero-section {
display: flex;
align-items: center;
color: white;
position: relative;
/* background: url('./assets/images/logo_1.png') no-repeat right center/contain;
background-color: #421F6F; */
}

/* Left content section */
.content {
z-index: 1;
max-width: 600px;
text-align: left;
margin-left: 50px;
}

.content h1 {
font-weight: 600;
font-size: 3rem;
}

.content p {
font-size: 1.25rem;
margin-top: 20px;
}

/* Only show background image on larger screens */
@media (max-width: 800px) {
/* .hero-section {
    background-image: none;
    background-color:#421F6F;
    padding-top: 30px;
    padding-bottom: 30px;
} */
.content{
    margin-left: 0px;
    padding: 10px;
}
}

@media (max-width: 500px){
    p.about-text{
        font-size: 1rem;
        color: #555;
        margin-top: 0.5rem;
        line-height: 1.6;
        text-align: justify;
    }
}
