﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Noto+Sans+Devanagari:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #0D2459;
    --accent-blue: #1A75BC;
    --light-blue: #4A9FD8;
    --accent-orange: #F97316;
    --accent-orange-dark: #EA580C;
    --accent-orange-soft: #FB923C;
    --dark-bg: #0A1A3A;
    --text-light: #CADCFC;
    --white: #FFFFFF;
    --light-gray: #F4F6FA;
    --medium-gray: #64748B;
    --dark-gray: #2D3748;
    --success: #10B981;
    --error: #EF4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    color: var(--navy);
    overflow-x: hidden;
    background: var(--light-gray);
    line-height: 1.6;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-blue);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 36, 89, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

header.scrolled {
    padding: 0.7rem 2rem;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    display: block;
    height: 78px;
    width: auto;
    max-width: min(240px, 42vw);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--light-blue);
    outline: none;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.nav-dropdown > a::before {
    content: '';
    order: 2;
    width: 0.45rem;
    height: 0.45rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.25s ease;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 0;
    min-width: 240px;
    padding: 0.85rem 0;
    margin: 0;
    list-style: none;
    background: rgba(13, 36, 89, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 20;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.2rem;
    color: var(--white);
    font-weight: 500;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
    color: var(--white);
    background: rgba(249, 115, 22, 0.18);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover > a::before,
.nav-dropdown:focus-within > a::before {
    transform: rotate(225deg) translateY(-1px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.hero {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(rgba(13, 36, 89, 0.72), rgba(10, 26, 58, 0.72)),
        url('../../asset/banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 105px;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.hero::before {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(26, 117, 188, 0.15) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: float 20s ease-in-out infinite, colorShift 10s ease-in-out infinite;
}

.hero::after {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 159, 216, 0.1) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation: float 15s ease-in-out infinite reverse, colorShift 8s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

.hero-content::before,
.hero-content::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-content::before {
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: particleFloat 8s ease-in-out infinite;
}

.hero-content::after {
    bottom: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(74, 159, 216, 0.15) 0%, transparent 70%);
    animation: particleFloat 6s ease-in-out infinite reverse;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.9rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -1.5px;
    animation: slideInFromLeft 1s ease-out, glow 2s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
    line-height: 1.08;
}

.hero-title::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

.hero-description {
    font-size: clamp(0.98rem, 1.7vw, 1.15rem);
    color: var(--text-light);
    font-style: italic;
    margin: 0 auto 2rem;
    max-width: 560px;
    animation: fadeInScale 1.5s ease-out 0.5s both;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.4rem;
}

.hero-cta {
    animation: bounceIn 1s ease-out 1s both, pulse 2s ease-in-out infinite 3s;
    position: relative;
    overflow: hidden;
    min-width: 170px;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta:hover::before,
.hero-cta:focus::before {
    width: 300px;
    height: 300px;
}

.btn,
.button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(13, 36, 89, 0.18);
}

.btn-primary,
.button {
    background: linear-gradient(135deg, #d63504, #f1592a);
    color: var(--white);
    box-shadow: 0 10px 35px rgba(26, 117, 188, 0.35);
}

.btn-primary:hover,
.btn-primary:focus,
.button:hover,
.button:focus {
    background: linear-gradient(135deg, #e47847, #e47847);
    transform: translateY(-2px);
    box-shadow: 0 14px 45px rgba(26, 117, 188, 0.45);
}

.btn-secondary {
    background: transparent !important;
    color: #eb5121 !important;
    border: 2px solid var(--white) !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #12285c !important;
    color: #ffffff !important;
}

.hero .btn-primary,
.hero .btn-secondary,
.service-card .button {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-soft));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.35);
    padding: 0.5rem 1rem;
}

.hero .btn-primary:hover,
.hero .btn-primary:focus,
.hero .btn-secondary:hover,
.hero .btn-secondary:focus,
.service-card .button:hover,
.service-card .button:focus {
    background: linear-gradient(135deg, var(--accent-orange-dark), var(--accent-orange));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 16px 45px rgba(234, 88, 12, 0.42);
}

section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-blue);
}

.section-header p {
    color: var(--medium-gray);
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 700px;
    margin: 1.5rem auto 0;
    text-align: justify;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-top: 3px solid var(--accent-blue);
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-icon,
.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-icon {
    background: var(--accent-blue);
    color: #fff;
}

.card-icon {
    background: rgba(26, 117, 188, 0.12);
    color: var(--accent-blue);
    border: 1px solid rgba(26, 117, 188, 0.35);
}

.service-card h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    text-align: justify;
}

.service-hero {
    max-width: none;
    margin: 0;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--navy) 0%, #15356F 100%);
    color: var(--white);
}

.service-hero .container {
    max-width: 900px;
    text-align: center;
}

.service-hero-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 0.9rem;
}

.service-hero p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0.8rem auto;
}

.service-page-intro {
    margin-top: 0;
}

.service-hero-modern {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, #143773 58%, #0b1d42 100%);
}

.service-hero-backdrop {
    position: absolute;
    inset: 0;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.service-hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-hero-backdrop::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(13, 36, 89, 0.58), rgba(10, 26, 58, 0.64)),
        radial-gradient(circle at top left, rgba(74, 159, 216, 0.16) 0%, transparent 34%),
        radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.14) 0%, transparent 30%);
    z-index: 1;
}

.service-hero-modern::before,
.service-hero-modern::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.service-hero-modern::before {
    width: 380px;
    height: 380px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}

.service-hero-modern::after {
    width: 260px;
    height: 260px;
    bottom: -90px;
    left: -60px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.16) 0%, transparent 70%);
}

.service-hero-layout {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1000px;
    min-height: 420px;
}

.service-hero-copy {
    text-align: left;
    max-width: 620px;
}

.service-eyebrow,
.service-mini-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-hero-summary {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--white) !important;
    font-weight: 500;
}

.service-hero-detail {
    color: rgba(202, 220, 252, 0.9) !important;
}

.service-hero-actions {
    justify-content: flex-start;
}

.service-pillar-section {
    padding-top: 4rem;
}

.service-pillar-card {
    border-top-width: 4px;
}

.service-detail-shell {
    padding-top: 0;
}

.service-use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.service-scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card-illustration {
    margin-bottom: 1rem;
}

.service-card-illustration img {
    width: 100%;
    max-width: 210px;
    height: auto;
    display: block;
}

.service-scope-card,
.service-final-cta-card,
.service-use-case-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: 0 18px 50px rgba(13, 36, 89, 0.08);
}

.service-scope-card h3,
.service-final-cta-card h2 {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    color: var(--navy);
    margin: 1rem 0 0.75rem;
}

.service-scope-card p,
.service-use-case-card p,
.service-final-cta-card p {
    color: var(--medium-gray);
    text-align: justify;
}

.service-scope-marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.14);
    color: var(--accent-orange-dark);
    font-weight: 700;
}

.service-scope-intro-card,
.service-scope-closing-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #eef4fb);
    border: 1px solid rgba(26, 117, 188, 0.12);
}

.service-scope-intro-card {
    grid-column: span 2;
}

.service-scope-card h3,
.service-use-case-card h3,
.service-process-card h3 {
    margin-bottom: 0.35rem;
    color: var(--navy);
}

.service-process-section {
    padding-top: 1rem;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.service-process-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), #eef3fa);
    border: 1px solid rgba(26, 117, 188, 0.1);
    border-radius: 22px;
    padding: 2rem 1.6rem 1.6rem;
    box-shadow: 0 14px 38px rgba(13, 36, 89, 0.06);
}

.service-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-soft));
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-use-cases-section {
    padding-top: 1rem;
}

.service-use-case-card {
    border-top: 4px solid rgba(26, 117, 188, 0.7);
}

.service-final-cta {
    padding-top: 1rem;
}

.service-final-cta-card {
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.18) 0%, transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f4f7fc 100%);
    text-align: center;
}

.service-final-cta-card .hero-cta-group {
    justify-content: center;
    margin-top: 1.5rem;
}

.contact-section {
    background: var(--light-gray);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3,
.contact-form h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item-content h4 {
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.contact-item-content p,
.contact-item-content a {
    color: var(--medium-gray);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(26, 117, 188, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
}

.form-message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.form-message.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

.form-message.show {
    display: block;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.thank-you-section {
    padding: 8rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-container {
    background: white;
    width: 100%;
    max-width: 720px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thank-you-container .success-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--success);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
}

.thank-you-container .message {
    color: var(--medium-gray);
    font-size: 1.15rem;
    margin-bottom: 1.6rem;
}

.thank-you-container .buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

footer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(10, 26, 58, 0.9), rgba(10, 26, 58, 0.92)),
        url('../../asset/banner.png') center/cover no-repeat,
        var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 2rem 1.5rem;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(74, 159, 216, 0.12) 0%, transparent 35%),
        radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.12) 0%, transparent 35%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: var(--light-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: rgba(202, 220, 252, 0.92);
    line-height: 1.8;
    text-align: justify;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover,
.footer-section a:focus {
    color: var(--light-blue);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.social-link:hover,
.social-link:focus {
    color: var(--white) !important;
    transform: translateY(-2px);
}

.social-link-facebook:hover,
.social-link-facebook:focus {
    background: #1877f2;
}

.social-link-instagram:hover,
.social-link-instagram:focus {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social-link-linkedin:hover,
.social-link-linkedin:focus {
    background: #0a66c2;
}

.social-link-x:hover,
.social-link-x:focus {
    background: #000000;
}

.social-link-youtube:hover,
.social-link-youtube:focus {
    background: #ff0000;
}

.social-link svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
}

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

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

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(26, 117, 188, 0.3); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(26, 117, 188, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(26, 117, 188, 0); }
    100% { box-shadow: 0 0 0 0 rgba(26, 117, 188, 0); }
}

@keyframes colorShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
    50% { transform: translate(20px, -20px) rotate(180deg); opacity: 0.7; }
}

@media (max-width: 1024px) {
    section {
        padding: 4rem 1.5rem;
    }

    header,
    header.scrolled {
        padding: 0.9rem 1.4rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .service-hero-layout {
        min-height: 360px;
    }

    .service-use-cases-grid,
    .service-process-grid {
        grid-template-columns: 1fr;
    }

    .service-scope-intro-card {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 88px;
        left: -100%;
        width: 100%;
        max-height: calc(100vh - 88px);
        overflow-y: auto;
        background: var(--navy);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links > li > a {
        display: inline-flex;
    }

    .dropdown-menu {
        position: static;
        min-width: 100%;
        margin-top: 0.75rem;
        padding: 0.5rem 0 0 1rem;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown-menu a {
        padding: 0.45rem 0;
        color: var(--text-light);
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:focus {
        background: transparent;
        color: var(--white);
    }

    .services-grid,
    .form-row,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .logo img {
        height: 60px;
        max-width: 190px;
    }

    .service-hero {
        padding-top: 7rem;
    }

    .service-hero-copy {
        text-align: center;
        max-width: 100%;
    }

    .service-card-illustration img {
        margin: 0 auto;
    }

    .service-hero-actions,
    .service-final-cta-card .hero-cta-group,
    .social-links {
        justify-content: center;
    }

    .contact-item {
        align-items: flex-start;
    }

    .hero-title {
        animation: slideInFromLeft 1s ease-out;
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .hero-title::after,
    .hero-content::before,
    .hero-content::after {
        display: none;
    }

    .hero-description {
        animation: fadeInScale 1s ease-out 0.3s both;
        font-size: 1rem;
    }

    .hero-cta {
        animation: bounceIn 0.8s ease-out 0.6s both;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    header {
        padding: 0.8rem 1rem;
    }

    .logo img {
        height: 52px;
        max-width: 160px;
    }

    .nav-links {
        top: 78px;
        max-height: calc(100vh - 78px);
        padding: 1.5rem;
    }

    .hero-content,
    .service-hero-copy {
        padding-left: 0;
        padding-right: 0;
    }

    .service-scope-card,
    .service-process-card,
    .service-use-case-card,
    .contact-item {
        padding: 1.5rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .contact-form,
    .thank-you-container {
        padding: 1.5rem;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .hero-title {
        font-size: 1.75rem;
        animation: fadeInUp 0.8s ease-out;
    }

    .hero-description {
        font-size: 0.95rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-title,
    .hero-description,
    .hero-cta,
    .hero::before,
    .hero::after,
    .hero-content::before,
    .hero-content::after {
        animation: none !important;
    }

    .hero-title::after {
        display: none !important;
    }
}
