2026-01-19 11:40:07 +05:30

356 lines
6.1 KiB
CSS

.featuresPage {
padding-top: 5rem;
}
.hero {
background-image: url('/images/inner-banner/features-banner.webp');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
padding: 8rem 0;
text-align: center;
color: white;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.3);
}
.heroContent {
max-width: 800px;
margin: 0 auto;
position: relative;
z-index: 1;
}
.heroTitle {
font-size: clamp(2.5rem, 5vw, 4rem);
margin-bottom: 1rem;
color: white;
}
.breadcrumb {
font-size: 1rem;
color: rgba(255, 255, 255, 0.9);
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
.breadcrumb a {
color: rgba(255, 255, 255, 0.9);
text-decoration: none;
transition: color 0.3s ease;
}
.breadcrumb a:hover {
color: #fff;
}
.breadcrumb span {
color: #fff;
font-weight: 600;
}
/* Why Choose Us Section */
.whySection {
padding-top: 4rem;
padding-bottom: 4rem;
overflow: hidden;
}
.whyGrid {
display: grid;
grid-template-columns: 1fr;
gap: 4rem;
align-items: center;
}
@media (min-width: 992px) {
.whyGrid {
grid-template-columns: 1fr 1fr;
}
}
.tagline {
color: var(--secondary);
font-weight: 600;
text-transform: uppercase;
font-size: 0.875rem;
letter-spacing: 1px;
display: block;
margin-bottom: 1rem;
}
.whyTitle {
font-size: clamp(2rem, 4vw, 3rem);
color: var(--foreground);
margin-bottom: 1.5rem;
}
.whyDescription {
color: var(--foreground-secondary);
font-size: 1.125rem;
margin-bottom: 2.5rem;
line-height: 1.7;
}
.benefitsRow {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
margin-bottom: 3rem;
}
@media (min-width: 640px) {
.benefitsRow {
grid-template-columns: 1fr 1fr;
}
}
.benefitItem {
display: flex;
align-items: flex-start;
gap: 1rem;
}
.benefitIconWrapper {
width: 50px;
height: 50px;
background: rgba(37, 99, 235, 0.1);
/* Blue tint */
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.benefitIcon {
color: var(--secondary);
width: 24px;
height: 24px;
}
.benefitText h3 {
font-size: 1.125rem;
margin-bottom: 0.25rem;
color: var(--foreground);
}
.benefitText p {
font-size: 0.9rem;
color: var(--foreground-secondary);
margin: 0;
}
.contactRow {
display: flex;
flex-direction: column;
gap: 2rem;
border-top: 1px solid var(--border-color);
padding-top: 2rem;
}
@media (min-width: 640px) {
.contactRow {
flex-direction: row;
align-items: center;
justify-content: space-between;
}
}
.profileMeta {
display: flex;
align-items: center;
gap: 1rem;
}
.profileImage,
.avatarPlaceholder {
width: 50px;
height: 50px;
border-radius: 50%;
overflow: hidden;
background: #e2e8f0;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
color: var(--foreground-secondary);
}
.profileName {
font-weight: 700;
color: var(--foreground);
font-size: 1rem;
}
.profileRole {
font-size: 0.875rem;
color: var(--foreground-secondary);
}
.contactInfo {
display: flex;
align-items: center;
gap: 0.75rem;
}
.phoneIcon {
width: 40px;
height: 40px;
background: var(--secondary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.contactLabel {
font-size: 0.75rem;
color: var(--foreground-secondary);
text-transform: uppercase;
}
.contactNumber {
font-weight: 700;
color: var(--foreground);
}
.whyImageWrapper {
position: relative;
padding: 2rem;
}
.imageBackgroundShape {
position: absolute;
top: 0;
right: 0;
width: 80%;
height: 90%;
background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
/* Purple to Blue */
border-radius: 200px 200px 0 0;
/* Semi-arch shape */
z-index: 0;
transform: rotate(-5deg);
}
.mainImageContainer {
position: relative;
z-index: 1;
border-radius: var(--radius-xl);
overflow: hidden;
box-shadow: var(--shadow-xl);
}
.mainImage {
width: 100%;
height: auto;
object-fit: cover;
display: block;
}
/* .categorySection {
margin-bottom: 5rem;
} */
.categoryHeader {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 3rem;
padding-bottom: 1rem;
border-bottom: 2px solid var(--background-secondary);
}
.categoryIcon {
font-size: 3rem;
}
.categoryTitle {
font-size: 2rem;
color: var(--foreground);
font-family: var(--font-display);
}
.featuresGrid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
}
@media (min-width: 768px) {
.featuresGrid {
grid-template-columns: repeat(3, 1fr);
}
}
.featureCard {
background: var(--background);
border-radius: var(--radius-xl);
padding: 2rem;
box-shadow: var(--shadow-md);
transition: all 0.3s ease;
border: 1px solid transparent;
}
.featureCard:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-xl);
border-color: var(--primary);
}
.featureIcon {
font-size: 3rem;
margin-bottom: 1rem;
}
.featureTitle {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 0.75rem;
color: var(--foreground);
font-family: var(--font-display);
}
.featureDescription {
color: var(--foreground-secondary);
line-height: 1.6;
}
.ctaSection {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 4rem 0;
text-align: center;
color: white;
/* margin-top: 4rem; */
}
.ctaContent {
max-width: 600px;
margin: 0 auto;
}
.ctaTitle {
font-size: 2.5rem;
margin-bottom: 1rem;
color: white;
}
.ctaSubtitle {
font-size: 1.25rem;
margin-bottom: 2rem;
color: rgba(255, 255, 255, 0.95);
}