/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e3a8a;
    --primary-dark: #1e293b;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-900: #0f172a;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--slate-900);
    background: var(--slate-50);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--slate-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 700;
      background: linear-gradient(90deg, #235CE3 0%, #2055C9 45%, #18387E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-name-footer {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary), #ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--slate-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--slate-900);
    border-radius: 3px;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    padding: 0.75rem;
    color: var(--slate-700);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.3s;
}

.mobile-menu a:hover {
    background: var(--slate-100);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(to right, var(--accent), #eab308);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-gradient {
    background: linear-gradient(to right, var(--accent), #eab308);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.btn-gradient:hover {
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--slate-900);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 8rem;
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-900), #1e3a8a, var(--slate-900));
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: float 7s ease-in-out infinite;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 5rem;
    left: 2rem;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #3b82f6;
    top: 10rem;
    right: 2rem;
    animation-delay: 2s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #a855f7;
    bottom: 5rem;
    left: 25%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 4rem 4rem;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeIn 0.6s ease-out;
}

.badge svg {
    color: var(--accent);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    display: block;
    margin-top: 0.5rem;
    background: linear-gradient(to right, var(--accent), #fbbf24, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 1.875rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.3s;
}

.pill:hover {
    background: rgba(255, 255, 255, 0.2);
}

.pill svg {
    color: var(--accent);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: var(--slate-50);
    margin-top: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), #eab308);
    border-radius: 1rem;
    color: var(--white);
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    transition: transform 0.3s;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--slate-900), var(--slate-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--slate-600);
    font-weight: 600;
}

/* Section Styles */
.services-section,
.why-choose-section {
    padding: 6rem 0;
}

.services-section {
    background: var(--white);
}

.why-choose-section {
    background: linear-gradient(to bottom, var(--slate-50), var(--white));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.75rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--slate-900), var(--slate-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--slate-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    background: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card.gradient-blue::before {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.service-card.gradient-purple::before {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.service-card.gradient-amber::before {
    background: linear-gradient(135deg, var(--accent), #f97316);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.service-card.gradient-blue .service-icon {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.service-card.gradient-purple .service-icon {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.service-card.gradient-amber .service-icon {
    background: linear-gradient(135deg, var(--accent), #f97316);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(3deg);
}

.service-title {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.service-description {
    position: relative;
    z-index: 1;
    color: var(--slate-600);
    line-height: 1.7;
}

.service-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    transform: scaleX(0);
    transition: transform 0.5s;
}

.service-card.gradient-blue .service-border {
    background: linear-gradient(to right, #3b82f6, #06b6d4);
}

.service-card.gradient-purple .service-border {
    background: linear-gradient(to right, #a855f7, #ec4899);
}

.service-card.gradient-amber .service-border {
    background: linear-gradient(to right, var(--accent), #f97316);
}

.service-card:hover .service-border {
    transform: scaleX(1);
}

/* Why Choose Us Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    position: relative;
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-image {
    position: relative;
    height: 256px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.why-card:hover .why-image img {
    transform: scale(1.1);
}

.why-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    transition: opacity 0.5s;
}

.why-card:hover .why-overlay {
    opacity: 0.4;
}

.why-overlay.gradient-blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.why-overlay.gradient-purple {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.why-overlay.gradient-amber {
    background: linear-gradient(135deg, var(--accent), #f97316);
}

.why-content {
    padding: 2rem;
    position: relative;
}

.why-number {
    position: absolute;
    top: 0;
    left: 2rem;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.why-number.gradient-blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.why-number.gradient-purple {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.why-number.gradient-amber {
    background: linear-gradient(135deg, var(--accent), #f97316);
}

.why-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.why-description {
    color: var(--slate-600);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-900), #1e3a8a, var(--slate-900));
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--slate-900);
    color: var(--white);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, #1e40af, var(--primary));
}

.footer-description {
    color: var(--slate-300);
    font-size: 0.875rem;
}

.footer-title {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--slate-300);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact li {
    color: var(--slate-300);
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--slate-400);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Hero (for internal pages) */
.page-hero {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 6rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-900), #1e3a8a, var(--slate-900));
}

.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.page-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.page-hero-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Services Detail Section */
.services-detail-section {
    padding: 6rem 0;
    background: var(--slate-50);
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-detail-left {
    padding: 3rem;
    position: relative;
}

.gradient-blue-bg {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), transparent);
}

.gradient-purple-bg {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), transparent);
}

.gradient-amber-bg {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), transparent);
}

.service-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 1.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-detail-icon.gradient-blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.service-detail-icon.gradient-purple {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.service-detail-icon.gradient-amber {
    background: linear-gradient(135deg, var(--accent), #f97316);
}

.service-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.service-detail-description {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.7;
}

.service-detail-right {
    padding: 3rem;
    background: rgba(248, 250, 252, 0.5);
}

.features-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--slate-600);
    font-size: 1.125rem;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateX(4px);
}

.feature-icon {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
    transition: transform 0.3s;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .stats-grid,
    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .page-hero-description {
        font-size: 1.125rem;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
    }

    .service-detail-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}