

: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;
}



/* Hero Section */
.hero {
padding: 100px 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 {
padding-top: 80px;
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;
}

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

.why-choose::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(300px, 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;
}

.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: 70px;
height: 70px;
border-radius: 50%;
background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-light) 100%);
color: var(--white);
font-size: 28px;
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(300px, 1fr));
gap: 30px;
position: relative;
z-index: 2;
}

.service-card {
padding: 30px;
border-radius: var(--border-radius);
background-color: var(--white);
box-shadow: var(--box-shadow);
position: relative;
overflow: hidden;
transition: var(--transition);
height: 100%;
display: flex;
flex-direction: column;
}

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

.service-number {
position: absolute;
top: 10px;
right: 10px;
font-size: 40px;
font-weight: 700;
color: rgba(3, 52, 108, 0.1);
}

.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;
position: relative;
z-index: 1;
transition: var(--transition);
}

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

.service-card h3 {
font-size: 1.3rem;
margin-bottom: 15px;
color: var(--accent-color);
position: relative;
z-index: 1;
}

.service-card p {
color: var(--text-light);
position: relative;
z-index: 1;
flex-grow: 1;
}

/* CTA 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);
}

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

.faq::before {
content: '';
position: absolute;
top: -80px;
left: -80px;
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%);
}

.faq-container {
max-width: 800px;
margin: 0 auto;
position: relative;
z-index: 2;
}

.faq-item {
margin-bottom: 20px;
border-radius: var(--border-radius);
overflow: hidden;
background-color: var(--white);
box-shadow: var(--box-shadow);
transition: var(--transition);
}

.faq-item:hover {
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
padding: 20px;
background-color: var(--white);
color: var(--accent-color);
font-weight: 600;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: var(--transition);
}

.faq-question:hover {
background-color: rgba(0, 110, 255, 0.05);
}

.faq-question i {
transition: var(--transition);
}

.faq-answer {
padding: 0 20px;
max-height: 0;
overflow: hidden;
transition: var(--transition);
}

.faq-answer ul {
list-style-position: inside;
margin-top: 10px;
margin-left: 10px;
}

.faq-answer ul li {
margin-bottom: 5px;
color: var(--text-light);
}

.faq-item.active .faq-question i {
transform: rotate(180deg);
}

.faq-item.active .faq-answer {
padding: 20px;
max-height: 1000px;
}

/* 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);
}



/* 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;
}

