body {
background-color: #ffffff;
color: #1e293b;
}

/* main services container - no header/footer */
.services-page {
padding: 0 0;
background: #ffffff;
}

.section-header {
background-color: #1e293b;
padding: 4rem 0 2rem;
color: white;
margin-bottom: 3rem;
}

.section-badge {
display: inline-block;
background: #eef2ff;
color: #4f46e5;
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.5px;
padding: 0.3rem 1rem;
border-radius: 40px;
margin-bottom: 1.2rem;
text-transform: uppercase;
}

.section-title {
font-size: 3rem;
font-weight: 600;
color: #fff;
letter-spacing: -0.02em;
margin-bottom: 1rem;
}

.section-subtitle {
font-size: 1.1rem;
color: #fff;
max-width: 700px;
margin-bottom: 2.8rem;
line-height: 1.5;
}

.h2-section-title {
font-weight: 600;
font-size: 2.5rem;
color: #0f172a;
}

.section-description {
max-width: 800px;
margin: 10px auto 40px;
color: #6c757d;
}
/* service card style — clean, white, subtle shadow */
.service-card {
background: #ffffff;
border-radius: 24px;
padding: 1.8rem 1.5rem;
transition: all 0.25s ease;
border: 1px solid #e9edf2;
box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.05);
height: 100%;
display: flex;
flex-direction: column;
}

.service-card:hover {
transform: translateY(-4px);
border-color: #cbd5e1;
box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
}

.service-icon {
font-size: 1.5rem;
color: #4f46e5;
margin-bottom: 1.2rem;
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
background: #f1f5f9;
border-radius: 100%;
transition: 0.2s;
}

.service-card:hover .service-icon {
background: #4f46e5;
color: white;
}

.service-title {
font-weight: 600;
font-size: 1.2rem;
margin-bottom: 0.75rem;
color: #0f172a;
}

.service-desc {
font-size: 0.9rem;
color: #475569;
line-height: 1.5;
margin-bottom: 1rem;
flex: 1;
}

.region-tag {
display: none;
align-items: center;
gap: 6px;
font-size: 0.7rem;
font-weight: 600;
background: #f8fafc;
padding: 0.25rem 0.9rem;
border-radius: 30px;
width: fit-content;
color: #334155;
border: 1px solid #e2e8f0;
margin-top: 0.5rem;
}

.region-tag i {
font-size: 0.7rem;
color: #4f46e5;
}

.why-us-section-badge {
display: inline-flex;
align-items: center;
background: rgba(37, 99, 235, 0.1);
color: #2563eb;
padding: 8px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 1rem;
}

.why-us-section-badge i {
margin-right: 8px;
}

.why-us-section-title {
font-size: 2.5rem;
font-weight: 700;
color: #0f172a;
margin-bottom: 1rem;
}

.why-us-section-subtitle {
font-size: 1.1rem;
color: #475569;
max-width: 600px;
margin: 0 auto;
}

/* Feature Block Styles */
.feature-block {
background: white;
border-radius: 12px;
padding: 2rem;
height: 100%;
box-shadow:
  0 4px 6px -1px rgba(0, 0, 0, 0.1),
  0 2px 4px -1px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
border: 1px solid #e5e7eb;
}

.feature-block:hover {
transform: translateY(-5px);
box-shadow:
  0 10px 15px -3px rgba(0, 0, 0, 0.1),
  0 4px 6px -2px rgba(0, 0, 0, 0.05);
border-color: #cbd5e1;
}

.feature-icon {
width: 60px;
height: 60px;
background: rgba(37, 99, 235, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
color: #2563eb;
font-size: 1.8rem;
transition: all 0.3s ease;
}

.feature-block:hover .feature-icon {
background: #2563eb;
color: white;
}

.feature-title {
font-size: 1.3rem;
font-weight: 600;
color: #0f172a;
margin-bottom: 1rem;
}

.feature-description {
color: #475569;
line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.section-title {
  font-size: 2rem;
}

.feature-block {
  padding: 1.5rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
}
}

.limited-offer-cta {
background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
border-radius: 20px;
padding: 40px;
text-align: center;
color: white;
position: relative;
overflow: hidden;
max-width: 1000px;
margin: 0 auto;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.offer-badge {
display: inline-block;
background: rgba(255, 255, 255, 0.2);
color: white;
padding: 8px 16px;
border-radius: 20px;
font-size: 14px;
margin-bottom: 20px;
backdrop-filter: blur(5px);
}

.offer-badge i {
margin-right: 8px;
}

.offer-title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 15px;
line-height: 1.2;
}

.offer-description {
font-size: 1.1rem;
margin-bottom: 30px;
opacity: 0.9;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.cta_btn {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.offer-button {
cursor: pointer;
display: inline-block;
background: white;
color: #2563eb;
padding: 12px 30px;
border-radius: 40px;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.portfolio-button {
display: inline-block;
background: transparent;
color: #ffffff;
border: 1px solid #fff;
padding: 12px 30px;
border-radius: 40px;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.portfolio-button:hover {
background: white;
color: #2563eb;
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.offer-button:hover {
background: transparent;
color: #fff;
border: 1px solid #fff;
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
.offer-title {
  font-size: 2rem;
}

.offer-description {
  font-size: 1rem;
}

.limited-offer-cta {
  padding: 30px 20px;
}
}

/* two column layout for responsive */
@media only screen and (max-width: 500px) {
.section-header{
  padding: 3rem 0 1rem;
}
.h2-section-title,
.offer-title,
.why-us-section-title {
  font-size:1.8rem;
}
.section-title {
  font-size: 2rem;
}

.service-card {
  padding: 1.4rem;
}
}
