/* Page header for internal pages */
.page-header {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 90px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1c2e 0%, #1d2d42 100%);
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 144, 226, 0.08) 0%, transparent 50%);
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
    font-weight: 800;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 700px;
    margin: 0 auto;
}

/* Support page specific styles */
.support-section {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.support-section:hover::before {
    transform: scaleX(1);
}

.support-section:hover {
    transform: translateY(-5px);
}

.support-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 600;
    text-align: left;
}

.support-section h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--text-color);
}

.support-section p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.support-section p strong {
    color: var(--text-color);
}

.support-section ul {
    list-style-position: inside;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.support-section li {
    margin-bottom: 15px;
    padding-left: 5px;
    position: relative;
}

.support-section li::marker {
    color: var(--accent-color);
}

.services-list li {
    padding-left: 25px;
    position: relative;
    list-style-type: none;
}

.services-list li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

.info-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.info-item:hover {
    background-color: rgba(74, 144, 226, 0.1);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    width: 70px;
    height: 70px;
    background-color: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--text-color);
}

.info-item p,
.info-item a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--accent-color);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.faq-item h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .support-section {
        padding: 30px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .support-section h2 {
        font-size: 1.6rem;
    }

    .faq-item h3 {
        font-size: 1.2rem;
    }
}

:root {
    --dark-blue: #0f1c2e;
    --light-blue: #233446;
    --accent-color: #4a90e2;
    --accent-hover: #2d7adb;
    --secondary-accent: #ff6b6b;
    --text-color: #ffffff;
    --text-muted: #c0c7d1;
    --muted-blue: #7fa8d7;
    --card-bg: rgba(58, 74, 90, 0.7);
    --border-radius: 10px;
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--dark-blue);
    overflow-x: hidden;
}

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

header {
    background-color: rgba(24, 42, 60, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-highlight {
    color: var(--accent-color);
    margin-left: 3px;
}

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

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.nav-links a:hover {
    color: var(--accent-color);
}

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

.nav-cta {
    background-color: var(--accent-color);
    color: white;
    padding: 10px 20px !important;
    border-radius: 5px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background-color: var(--accent-hover);
    color: white !important;
}

.nav-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    font-size: 2rem;
    padding: 8px 12px;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1c2e 0%, #1d2d42 100%);
}

.floating-ball {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

@keyframes float {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(var(--moveX), var(--moveY));
    }
}

@keyframes grow-shrink {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(var(--scale));
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 0 0 55%;
    text-align: left;
    max-width: 700px;
}

.hero-image {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    font-weight: 800;
}

.hero h1 span {
    color: var(--accent-color);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.3s both;
    color: var(--text-muted);
    max-width: 90%;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-btns {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid var(--accent-color);
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: white;
}

.stats-bar {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.service-card,
.specialty-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: left;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}

.service-card:hover,
.specialty-card:hover {
    transform: translateY(-10px);
    border-color: rgba(74, 144, 226, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card::before,
.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before,
.specialty-card:hover::before {
    transform: scaleX(1);
}

.service-icon,
.specialty-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.service-card h3,
.specialty-card h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 700;
}

.service-card p,
.specialty-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.service-features {
    list-style-type: none;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features li::before {
    content: '✓';
    color: var(--accent-color);
    margin-right: 10px;
    font-weight: bold;
}

.link-arrow {
    display: flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

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

.link-arrow::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.link-arrow:hover::after {
    transform: translateX(3px);
}

.importance {
    background-color: var(--light-blue);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.importance::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.importance .container {
    position: relative;
    z-index: 1;
}

.importance p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.case-studies {
    padding: 100px 0;
    display: none;
    /* Hidden as requested */
}

.process {
    padding: 100px 0;
    background-color: var(--light-blue);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 30px;
    right: 30px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

.process-step-number {
    width: 80px;
    height: 80px;
    background-color: var(--dark-blue);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #1a2a3a 0%, #2a3a4a 100%);
    position: relative;
    overflow: hidden;
}

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

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-muted);
}

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

footer {
    background-color: var(--dark-blue);
    padding: 80px 0 20px;
    position: relative;
}

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

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-color);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-contact a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--text-color);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

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

/* Support page specific styles */
.support-section {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.support-section:hover::before {
    transform: scaleX(1);
}

.support-section:hover {
    transform: translateY(-5px);
}

.support-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 600;
    text-align: left;
}

.support-section h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--text-color);
}

.support-section p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.support-section p strong {
    color: var(--text-color);
}

.support-section ul {
    list-style-position: inside;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.support-section li {
    margin-bottom: 15px;
    padding-left: 5px;
    position: relative;
}

.support-section li::marker {
    color: var(--accent-color);
}

.services-list li {
    padding-left: 25px;
    position: relative;
    list-style-type: none;
}

.services-list li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

.info-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.info-item:hover {
    background-color: rgba(74, 144, 226, 0.1);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    width: 70px;
    height: 70px;
    background-color: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--text-color);
}

.info-item p,
.info-item a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--accent-color);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.faq-item h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .support-section {
        padding: 30px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .support-section h2 {
        font-size: 1.6rem;
    }

    .faq-item h3 {
        font-size: 1.2rem;
    }
}

/* Fix for specific width range issues */
@media (max-width: 870px) and (min-width: 769px) {
    .nav-links li {
        margin-left: 15px;
    }

    .nav-cta {
        padding: 8px 15px !important;
    }

    .logo {
        font-size: 1.6rem;
    }
}

/* Additional breakpoint for problematic width range */
@media (max-width: 820px) and (min-width: 769px) {
    .nav-links li {
        margin-left: 10px;
    }

    .nav-cta {
        padding: 6px 10px !important;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.5rem;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-text {
        flex: 0 0 50%;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .process-steps::before {
        left: 20px;
        right: 20px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text,
    .hero-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero-text {
        margin-bottom: 40px;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--light-blue);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: 100;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-bar {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        flex: 0 0 48%;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .stat-item {
        flex: 0 0 100%;
    }

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

/* Hide navigation on very small screens */
@media (max-width: 450px) {
    header nav {
        justify-content: center;
    }

    .logo {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        display: none;
    }
}