

:root {
--accent-color: #03346c; /* Your primary deep blue */
--accent-color-light: #006eff; /* A vibrant, lighter blue for gradients */
--text-dark: #333;
--text-light: #666;
--white: #ffffff;
--light-bg: #f9fafc;
--border-radius: 10px;
--box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
--transition: all 0.3s ease;
}



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

/* Header Styles */


/* Page Navigation */
.page-nav {
padding-top: 120px;
display: flex;
justify-content: center;
margin: 20px 0;
}

.page-nav button {
background: none;
border: none;
padding: 10px 20px;
margin: 0 10px;
cursor: pointer;
font-weight: 600;
color: var(--text-dark);
position: relative;
transition: var(--transition);
}

.page-nav button::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(to right, var(--accent-color), var(--accent-color-light));
transition: var(--transition);
}

.page-nav button.active {
color: var(--accent-color);
}

.page-nav button.active::after,
.page-nav button:hover::after {
width: 100%;
}

/* Page Content */
.page {
display: none;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.5s ease, transform 0.5s ease;
}

.page.active {
display: block;
opacity: 1;
transform: translateY(0);
}

/* Hero Section */
.hero {
padding: 140px 0 80px;
background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=2000&q=80') no-repeat center center;
background-size: cover;
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: -50px;
right: -50px;
width: 300px;
height: 300px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(3, 52, 108, 0.05) 0%, rgba(0, 110, 255, 0.1) 100%);
animation: float 8s ease-in-out infinite;
}

.hero-content {
position: relative;
z-index: 2;
max-width: 700px;
}

.hero h1 {
font-size: 2.8rem;
margin-bottom: 20px;
line-height: 1.2;
color: var(--accent-color);
animation: fadeInUp 0.8s ease-out forwards;
position: relative;
}

.hero h1::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 80px;
height: 3px;
background: linear-gradient(to right, var(--accent-color), var(--accent-color-light));
}

.hero p {
font-size: 1.1rem;
margin-bottom: 30px;
color: var(--text-light);
animation: fadeInUp 0.8s ease-out 0.2s forwards;
opacity: 0;
}

.hero .cta-button {
animation: fadeInUp 0.8s ease-out 0.4s forwards;
opacity: 0;
}

/* Features/Why Choose Section */
.features {
padding: 80px 0;
background-color: var(--white);
position: relative;
}

.features::before {
content: '';
position: absolute;
top: 50px;
left: -100px;
width: 200px;
height: 200px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(3, 52, 108, 0.05) 0%, rgba(0, 110, 255, 0.1) 100%);
z-index: 1;
}

.section-title {
text-align: center;
margin-bottom: 60px;
position: relative;
z-index: 2;
}

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

.section-title h2::after {
content: '';
width: 60px;
height: 3px;
background: linear-gradient(to right, var(--accent-color), var(--accent-color-light));
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
}

.section-title p {
color: var(--text-light);
max-width: 700px;
margin: 0 auto;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
position: relative;
z-index: 2;
}

.feature-card {
background-color: var(--white);
padding: 30px;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
transition: var(--transition);
position: relative;
overflow: hidden;
text-align: center;
}

.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 5px;
height: 0;
background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
transition: var(--transition);
}

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

.feature-card:hover::before {
height: 100%;
}

.feature-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
color: var(--white);
font-size: 30px;
margin-bottom: 20px;
transition: var(--transition);
}

.feature-card:hover .feature-icon {
transform: rotateY(180deg);
}

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

.feature-card p {
color: var(--text-light);
}

/* Services Section */
.services {
padding: 80px 0;
background-color: var(--light-bg);
position: relative;
overflow: hidden;
}

.services::after {
content: '';
position: absolute;
bottom: -100px;
right: -100px;
width: 300px;
height: 300px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(3, 52, 108, 0.05) 0%, rgba(0, 110, 255, 0.1) 100%);
z-index: 1;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
position: relative;
z-index: 2;
}

.service-card {
padding: 25px;
border-radius: var(--border-radius);
transition: var(--transition);
background-color: var(--white);
box-shadow: var(--box-shadow);
position: relative;
overflow: hidden;
border-bottom: 3px solid transparent;
height: 100%;
}

.service-card:hover {
transform: translateY(-5px);
border-bottom: 3px solid var(--accent-color-light);
}

.service-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
border-radius: 50%;
background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
color: var(--white);
font-size: 24px;
margin-bottom: 20px;
transition: var(--transition);
}

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

.service-card h3 {
font-size: 1.2rem;
margin-bottom: 10px;
color: var(--accent-color);
}

/* Benefits Section */
.benefits {
padding: 80px 0;
background-color: var(--white);
position: relative;
}

.benefits-list {
max-width: 800px;
margin: 0 auto;
padding: 30px;
background-color: var(--white);
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
position: relative;
z-index: 2;
}

.benefit-item {
display: flex;
align-items: flex-start;
margin-bottom: 25px;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefit-item.animated {
opacity: 1;
transform: translateY(0);
}

.benefit-icon {
color: var(--accent-color-light);
font-size: 24px;
margin-right: 20px;
flex-shrink: 0;
}

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

/* Process Section */
.process {
padding: 80px 0;
background-color: var(--white);
position: relative;
}

.process-steps {
display: flex;
flex-wrap: wrap;
justify-content: center;
position: relative;
z-index: 2;
margin-top: 40px;
}

.process-step {
flex: 1;
min-width: 200px;
max-width: 250px;
margin: 0 15px 30px;
text-align: center;
position: relative;
}

.process-step::after {
content: '';
position: absolute;
top: 30px;
right: -50%;
width: 100%;
height: 2px;
background: linear-gradient(to right, var(--accent-color), var(--accent-color-light));
z-index: -1;
}

.process-step:last-child::after {
display: none;
}

.step-number {
display: flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
border-radius: 50%;
background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
color: var(--white);
font-size: 24px;
font-weight: 600;
margin: 0 auto 20px;
position: relative;
z-index: 2;
}

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

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

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

.cta-section::before {
top: -100px;
left: -100px;
}

.cta-section::after {
bottom: -100px;
right: -100px;
}

.cta-section h2 {
font-size: 2.2rem;
margin-bottom: 20px;
position: relative;
z-index: 2;
}

.cta-section p {
max-width: 700px;
margin: 0 auto 30px;
font-size: 1.1rem;
position: relative;
z-index: 2;
}

.cta-button-light {
background: var(--white);
color: var(--accent-color);
padding: 12px 25px;
border-radius: var(--border-radius);
text-decoration: none;
font-weight: 600;
transition: var(--transition);
display: inline-block;
position: relative;
z-index: 2;
}

.cta-button-light:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
padding: 80px 0;
background-color: var(--light-bg);
position: relative;
overflow: hidden;
text-align: center;
}

.contact::before {
content: '';
position: absolute;
top: -50px;
left: -50px;
width: 200px;
height: 200px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(3, 52, 108, 0.05) 0%, rgba(0, 110, 255, 0.1) 100%);
}

.contact-info {
max-width: 800px;
margin: 0 auto;
padding: 40px;
background-color: var(--white);
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
position: relative;
z-index: 2;
text-align: center;
}

.contact-info p {
margin-bottom: 30px;
font-size: 1.1rem;
color: var(--text-light);
}

.contact-methods {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 30px;
margin-bottom: 40px;
}

.contact-method {
display: flex;
flex-direction: column;
align-items: center;
background-color: var(--white);
padding: 20px;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
transition: var(--transition);
min-width: 200px;
}

.contact-method:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-method-icon {
display: flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
border-radius: 50%;
background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
color: var(--white);
font-size: 24px;
margin-bottom: 15px;
}

.contact-method h3 {
font-size: 1.2rem;
margin-bottom: 5px;
color: var(--accent-color);
}

.contact-method p {
margin-bottom: 0;
font-size: 0.9rem;
}

.contact-buttons {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}

.contact-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
color: var(--white);
padding: 15px 30px;
border-radius: var(--border-radius);
text-decoration: none;
font-weight: 600;
transition: var(--transition);
border: none;
cursor: pointer;
}

.contact-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-button i {
font-size: 20px;
}

.contact-button.secondary {
background: var(--white);
color: var(--accent-color);
border: 2px solid var(--accent-color);
}

/* Footer */
footer {
padding: 60px 0 20px;
background-color: var(--accent-color);
color: var(--white);
}

.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-col h3 {
font-size: 1.2rem;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}

.footer-col h3::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 40px;
height: 2px;
background-color: var(--accent-color-light);
}

.footer-col ul {
list-style: none;
}

.footer-col ul li {
margin-bottom: 10px;
}

.footer-col ul li a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: var(--transition);
}

.footer-col ul li a:hover {
color: var(--white);
padding-left: 5px;
}

.social-links {
display: flex;
gap: 15px;
margin-top: 20px;
}

.social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
color: var(--white);
transition: var(--transition);
text-decoration: none;
}

.social-links a:hover {
background-color: var(--accent-color-light);
transform: translateY(-3px);
}

.copyright {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.7);
font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

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

.float-animation {
animation: float 3s ease-in-out infinite;
}

.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.animated {
opacity: 1;
transform: translateY(0);
}

/* Pulse Animation for CTA */
@keyframes pulse {
0% {
    box-shadow: 0 0 0 0 rgba(0, 110, 255, 0.4);
}
70% {
    box-shadow: 0 0 0 10px rgba(0, 110, 255, 0);
}
100% {
    box-shadow: 0 0 0 0 rgba(0, 110, 255, 0);
}
}

.pulse-animation {
animation: pulse 2s infinite;
}

/* Responsive Styles */
@media (max-width: 768px) {
.hero h1 {
    font-size: 2.2rem;
}

nav ul {
    display: none;
}

.mobile-menu {
    display: block !important;
    font-size: 24px;
    color: var(--accent-color);
    cursor: pointer;
}

.process-steps {
    flex-direction: column;
    align-items: center;
}

.process-step {
    max-width: 100%;
    margin-bottom: 40px;
}

.process-step::after {
    display: none;
}

.features-grid, .services-grid {
    grid-template-columns: 1fr;
}

.contact-methods {
    flex-direction: column;
    align-items: center;
}
}

@media (max-width: 480px) {
.hero {
    padding: 80px 0 60px;
}

.section-title h2 {
    font-size: 1.8rem;
}

.contact-buttons {
    flex-direction: column;
}
}

