/* Global Container Fix */
.container {
width: 100%;
max-width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}

@media (min-width: 576px) {
.container {
    max-width: 540px;
}
}

@media (min-width: 768px) {
.container {
    max-width: 720px;
}
}

@media (min-width: 992px) {
.container {
    max-width: 960px;
}
}

@media (min-width: 1200px) {
.container {
    max-width: 1140px;
}
}

/* Hero Section */
.hero-section {
position: relative;
min-height: 85vh;
background: linear-gradient(135deg,rgb(49, 50, 51) 0%,rgb(188, 192, 195) 100%);
color: white;
display: flex;
align-items: center;
overflow: hidden;
width: 100vw;
margin-left: calc(-50vw + 50%);
margin-right: calc(-50vw + 50%);
padding: 0;
}

.hero-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url("../images/pexels-karolina-grabowska-4475524 (1).jpg") center/cover;
opacity: 0.1;
z-index: 1;
animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
from { transform: scale(1); }
to { transform: scale(1.1); }
}

.hero-content {
position: relative;
z-index: 2;
max-width: 800px;
margin: 0 auto;
padding: 2rem;
text-align: center;
}

.hero-title {
font-size: clamp(2.5rem, 5vw, 3.5rem);
font-weight: 700;
line-height: 1.2;
margin-bottom: 1.5rem;
opacity: 0;
transform: translateY(30px);
animation: fadeInUp 1s ease forwards;
font-family: 'Times New Roman' !important;
}

.hero-subtitle {
font-size: clamp(1.1rem, 1.5vw, 1.4rem);
font-weight: 400;
opacity: 0;
transform: translateY(30px);
animation: fadeInUp 1s ease 0.3s forwards;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}

@keyframes fadeInUp {
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Services Section */
.services-section {
padding: 5rem 0;
background: #f8f9fa;
position: relative;
width: 100%;
overflow: hidden;
}

.services-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(to right, transparent, #3498db, transparent);
}

.section-title {
font-size: clamp(2rem, 3vw, 2.5rem);
font-weight: 700;
margin-bottom: 3rem;
text-align: center;
position: relative;
color: #2c3e50;
font-family: 'Times New Roman' !important;
}

.section-title::after {
content: '';
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: #3498db;
border-radius: 2px;
}

.service-card {
background: white;
border-radius: 20px;
padding: 2.5rem;
height: 100%;
position: relative;
overflow: hidden;
transition: all 0.4s ease;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
border: 1px solid rgba(0,0,0,0.05);
}

.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(135deg, #3498db, #2c3e50);
opacity: 0;
transition: opacity 0.4s ease;
}

.service-card:nth-child(2)::before {
background: linear-gradient(135deg, #3498db, #2ecc71);
}

.service-card:nth-child(3)::before {
background: linear-gradient(135deg, #e74c3c, #f1c40f);
}

.service-card:nth-child(4)::before {
background: linear-gradient(135deg, #9b59b6, #3498db);
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card:hover::before {
opacity: 1;
}

.service-icon {
font-size: 2.5rem;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, #3498db, #2c3e50);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
transition: transform 0.4s ease;
}

.service-card:nth-child(2) .service-icon {
background: linear-gradient(135deg, #3498db, #2ecc71);
-webkit-background-clip: text;
}

.service-card:nth-child(3) .service-icon {
background: linear-gradient(135deg, #e74c3c, #f1c40f);
-webkit-background-clip: text;
}

.service-card:nth-child(4) .service-icon {
background: linear-gradient(135deg, #9b59b6, #3498db);
-webkit-background-clip: text;
}

.service-card:hover .service-icon {
transform: scale(1.1);
}

.service-title {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1.5rem;
color: #2c3e50;
font-family: 'Times New Roman' !important;
}

.service-list {
list-style: none;
padding: 0;
margin: 0;
}

.service-list li {
display: flex;
align-items: center;
margin-bottom: 1rem;
color: #6c757d;
font-size: 1.1rem;
transition: transform 0.3s ease, color 0.3s ease;
}

.service-list li:hover {
transform: translateX(10px);
color: #2c3e50;
}

.service-list li i {
color: #3498db;
margin-right: 1rem;
font-size: 1.2rem;
transition: transform 0.3s ease;
}

.service-list li:hover i {
transform: scale(1.2);
}

/* Differentiators Section */
.differentiators-section {
padding: 5rem 0;
background: white;
position: relative;
width: 100%;
overflow: hidden;
}

.differentiators-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(to right, transparent, #3498db, transparent);
}

.differentiator-card {
background: #f8f9fa;
border-radius: 20px;
padding: 2.5rem;
margin-bottom: 2rem;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
border: 1px solid rgba(0,0,0,0.05);
}

.differentiator-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(135deg, #3498db, #2c3e50);
opacity: 0;
transition: opacity 0.4s ease;
}

.differentiator-card:hover {
transform: translateX(10px);
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.differentiator-card:hover::before {
opacity: 1;
}

.differentiator-icon {
font-size: 2.5rem;
color: #3498db;
margin-bottom: 1.5rem;
transition: transform 0.4s ease;
}

.differentiator-card:hover .differentiator-icon {
transform: scale(1.1);
}

.differentiator-title {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1rem;
color: #2c3e50;
font-family: 'Times New Roman' !important;
}

.differentiator-text {
color: #6c757d;
line-height: 1.6;
margin: 0;
font-size: 1.1rem;
}

.differentiator-image {
border-radius: 20px;
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
transition: transform 0.4s ease;
}

.differentiator-image:hover {
transform: scale(1.02);
}

/* Responsive Styles */
@media (max-width: 992px) {
.hero-section {
    min-height: 70vh;
}

.service-card {
    margin-bottom: 2rem;
}

.differentiator-image {
    margin-top: 2rem;
}
}

@media (max-width: 768px) {
.hero-section {
    min-height: 60vh;
}

.hero-content {
    padding: 1.5rem;
}

.section-title {
    margin-bottom: 2.5rem;
}

.service-card {
    padding: 2rem;
}

.differentiator-card {
    padding: 2rem;
}

.service-list li {
    font-size: 1rem;
}
}

@media (max-width: 576px) {
.hero-section {
    min-height: 50vh;
}

.hero-content {
    padding: 1rem;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.service-card {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.3rem;
}

.differentiator-card {
    padding: 1.5rem;
}

.differentiator-title {
    font-size: 1.3rem;
}

.service-list li {
    font-size: 0.95rem;
}
}