:root {
/* Primary Brand Colors */
--accent-color: #03346c; /* Your primary deep blue */
--accent-color-light: #006eff; /* A vibrant, lighter blue for gradients */
--text-dark: #252B42;
--text-medium: #515B6C;
--text-light: #737373;
--background: #ffffff;
--shadow: rgba(3, 52, 108, 0.1);
}


.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}



/* Hero Section */
.hero {
padding: 160px 0 100px;
position: relative;
overflow: hidden;
background: linear-gradient(120deg, #ffffff 60%, rgba(0, 110, 255, 0.08) 100%);
}

.hero:before {
content: '';
position: absolute;
top: -10%;
right: -5%;
width: 600px;
height: 600px;
border-radius: 50%;
background: radial-gradient(circle, rgba(0,110,255,0.05) 0%, rgba(255,255,255,0) 70%);
z-index: -1;
}

.hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.hero-content h1 {
font-size: 3.5rem;
line-height: 1.2;
margin-bottom: 24px;
background: linear-gradient(to right, var(--accent-color), var(--accent-color-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;
}

.hero-content p {
font-size: 1.2rem;
color: var(--text-medium);
margin-bottom: 40px;
max-width: 540px;
}

.hero-buttons {
display: flex;
gap: 16px;
}

.btn-primary {
display: inline-flex;
align-items: center;
padding: 14px 30px;
background: linear-gradient(135deg, var(--accent-color), var(--accent-color-light));
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 6px 15px rgba(0, 110, 255, 0.25);
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0, 110, 255, 0.3);
}

.btn-primary i {
margin-left: 8px;
}

.btn-secondary {
display: inline-flex;
align-items: center;
padding: 14px 30px;
background: transparent;
color: var(--accent-color);
text-decoration: none;
border-radius: 8px;
font-weight: 600;
border: 2px solid var(--accent-color);
transition: all 0.3s ease;
}

.btn-secondary:hover {
background-color: rgba(3, 52, 108, 0.05);
}

.hero-image {
position: relative;
}

.hero-image img {
width: 100%;
border-radius: 16px;
box-shadow: 0 20px 50px rgba(3, 52, 108, 0.15);
animation: float 6s ease-in-out infinite;
}

@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}

.stats-card {
position: absolute;
bottom: -25px;
left: 20px;
background: white;
border-radius: 12px;
box-shadow: 0 15px 35px rgba(3, 52, 108, 0.1);
padding: 20px;
display: flex;
gap: 30px;
animation: slideIn 0.8s ease-out forwards;
}

@keyframes slideIn {
from { transform: translateX(-50px); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}

.stat h3 {
font-size: 2.2rem;
color: var(--accent-color-light);
margin-bottom: 5px;
}

.stat p {
font-size: 0.85rem;
color: var(--text-medium);
margin: 0;
}

/* Expertise Section */
.section {
padding: 100px 0;
position: relative;
}

.section-header {
text-align: center;
max-width: 800px;
margin: 0 auto 60px;
}

.section-header h2 {
font-size: 2.5rem;
color: var(--accent-color);
margin-bottom: 20px;
position: relative;
display: inline-block;
}

.section-header h2:after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(to right, var(--accent-color), var(--accent-color-light));
border-radius: 2px;
}

.section-header p {
font-size: 1.1rem;
color: var(--text-medium);
}

.expertise-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
gap: 30px;
}

.expertise-card {
background: white;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(3, 52, 108, 0.08);
padding: 40px 30px;
transition: all 0.4s ease;
border-bottom: 4px solid transparent;
}

.expertise-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(3, 52, 108, 0.12);
border-color: var(--accent-color-light);
}

.card-icon {
width: 70px;
height: 70px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, rgba(3, 52, 108, 0.1), rgba(0, 110, 255, 0.1));
border-radius: 20px;
margin-bottom: 25px;
}

.card-icon i {
font-size: 2.2rem;
color: var(--accent-color-light);
}

.expertise-card h3 {
font-size: 1.4rem;
color: var(--accent-color);
margin-bottom: 15px;
}

.expertise-card p {
color: var(--text-medium);
margin-bottom: 25px;
line-height: 1.7;
}

.card-link {
display: inline-flex;
align-items: center;
color: var(--accent-color-light);
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
}

.card-link i {
margin-left: 8px;
transition: transform 0.3s;
}

.card-link:hover {
color: var(--accent-color);
}

.card-link:hover i {
transform: translateX(5px);
}

/* Technology Section */
.tech-section {
background-color: rgba(0, 110, 255, 0.02);
position: relative;
overflow: hidden;
}

.tech-section:before {
content: '';
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
background: radial-gradient(circle, rgba(3, 52, 108, 0.05) 0%, rgba(255,255,255,0) 70%);
top: -100px;
left: -100px;
z-index: 0;
}

.tech-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 25px;
}

.tech-feature {
background: white;
border-radius: 16px;
padding: 30px;
text-align: center;
box-shadow: 0 8px 25px rgba(3, 52, 108, 0.06);
transition: all 0.3s ease;
position: relative;
z-index: 1;
}

.tech-feature:hover {
transform: translateY(-8px);
box-shadow: 0 15px 35px rgba(3, 52, 108, 0.1);
}

.tech-icon {
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
background: linear-gradient(135deg, var(--accent-color), var(--accent-color-light));
border-radius: 50%;
color: white;
}

.tech-icon i {
font-size: 1.8rem;
}

.tech-feature h3 {
font-size: 1.2rem;
color: var(--accent-color);
margin-bottom: 15px;
}

.tech-feature p {
color: var(--text-medium);
font-size: 0.95rem;
margin: 0;
}

/* Solutions Section */
.solutions-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
}

.solution-card {
background: white;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(3, 52, 108, 0.08);
padding: 30px;
transition: all 0.3s ease;
display: flex;
flex-direction: column;
align-items: flex-start;
border-left: 4px solid transparent;
}

.solution-card:hover {
transform: translateY(-8px);
border-left: 4px solid var(--accent-color-light);
box-shadow: 0 15px 40px rgba(3, 52, 108, 0.12);
}

.solution-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, rgba(3, 52, 108, 0.1), rgba(0, 110, 255, 0.1));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.solution-icon i {
font-size: 1.8rem;
color: var(--accent-color-light);
}

.solution-card h3 {
font-size: 1.3rem;
color: var(--accent-color);
margin-bottom: 15px;
}

.solution-card p {
color: var(--text-medium);
margin: 0;
}

/* Why Choose Us Section */
.why-us-section {
position: relative;
overflow: hidden;
}

.why-us-section:after {
content: '';
position: absolute;
width: 400px;
height: 400px;
border-radius: 50%;
background: radial-gradient(circle, rgba(0, 110, 255, 0.05) 0%, rgba(255,255,255,0) 70%);
bottom: -200px;
right: -200px;
z-index: 0;
}

.why-us-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.why-us-image {
position: relative;
}

.why-us-image img {
width: 100%;
border-radius: 16px;
box-shadow: 0 20px 50px rgba(3, 52, 108, 0.12);
animation: float 6s ease-in-out infinite;
position: relative;
z-index: 1;
}

.benefits-list {
display: flex;
flex-direction: column;
gap: 25px;
}

.benefit-item {
display: flex;
gap: 20px;
align-items: flex-start;
}

.benefit-icon {
min-width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--accent-color), var(--accent-color-light));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.3rem;
box-shadow: 0 6px 15px rgba(0, 110, 255, 0.2);
}

.benefit-content h3 {
font-size: 1.2rem;
color: var(--accent-color);
margin-bottom: 8px;
}

.benefit-content p {
color: var(--text-medium);
margin: 0;
}

/* CTA Section */
.cta-section {
background: linear-gradient(135deg, var(--accent-color), var(--accent-color-light));
padding: 80px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.cta-section:before, .cta-section:after {
content: '';
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.05);
}

.cta-section:before {
top: -150px;
right: -150px;
}

.cta-section:after {
bottom: -150px;
left: -150px;
}

.cta-content {
max-width: 700px;
margin: 0 auto;
position: relative;
z-index: 1;
}

.cta-content h2 {
font-size: 2.5rem;
color: white;
margin-bottom: 20px;
}

.cta-content p {
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 40px;
}

.cta-btn {
display: inline-flex;
align-items: center;
padding: 16px 40px;
background: white;
color: var(--accent-color);
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cta-btn i {
margin-left: 8px;
}

