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

:root {
    --primary-blue: #3a8ec9;
    --dark-blue: #1b6ba3;
    --dark-bg: #0a1628;
    --dark-purple: #1a1a2e;
    --text-white: #ffffff;
    --gradient-start: #0f1b2e;
    --gradient-end: #1a1a3e;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

body.splash-active {
    overflow: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(0px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: none;
    transition: all 0.3s ease;
    overflow: visible;
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: visible;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.logo-animated,
.logo-static {
    height: 80px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.logo-animated::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    transform: translate(-50%, -4px);
    animation: rotateAroundLogo 3s linear infinite;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

@keyframes rotateAroundLogo {
    0% {
        transform: translate(-50%, -4px) rotate(0deg) translateY(40px) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -4px) rotate(360deg) translateY(40px) rotate(-360deg);
    }
}

.logo-static {
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
}

.logo-static[style*="display: block"] {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white);
}

.logo-sub {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--text-white);
    opacity: 0.9;
}

/* Navigation Styles */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.dropdown-only {
    cursor: pointer;
    user-select: none;
    pointer-events: auto;
}

.dropdown:hover .nav-link.dropdown-only {
    color: var(--primary-blue);
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--text-white);
    min-width: 250px;
    max-width: 300px;
    list-style: none;
    padding: 8px 0;
    margin-top: 15px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1001;
    pointer-events: auto;
    overflow: hidden;
}

/* Align Solutions dropdown to the right to prevent overflow */
.nav-list > li:last-child .dropdown-menu,
.nav-list > li:nth-last-child(2) .dropdown-menu {
    left: auto;
    right: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-menu::before {
    transform: scaleX(1);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 14px 24px;
    color: var(--dark-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(58, 142, 201, 0.1), transparent);
    color: var(--primary-blue);
    padding-left: 28px;
    transform: translateX(5px);
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu a.active {
    background-color: var(--primary-blue);
    color: var(--text-white);
}

.dropdown-menu a.active:hover {
    background-color: var(--dark-blue);
    color: var(--text-white);
}

.sub-dropdown {
    position: relative;
}

.sub-dropdown .dropdown-arrow {
    float: right;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 0 80px;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform;
    touch-action: pan-y;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
    z-index: 1;
    will-change: opacity;
}

.bg-slide:nth-child(3) {
    background-position: right center;
}

.bg-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 80% 50%, rgba(58, 142, 201, 0.15) 0%, transparent 70%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at right center, rgba(58, 142, 201, 0.1) 0%, transparent 70%);
    z-index: 4;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: flex-start;
}

/* Mobile layout: title first, button second, indicators last */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 20px;
    }
    
    .hero-text {
        order: 1;
        width: 100%;
        margin-top: 0 !important;
        text-align: center;
    }
    
    .hero-indicators {
        order: 3;
        flex-direction: row;
        margin-top: 20px;
        margin-right: 0;
        margin-bottom: 0;
        gap: 12px;
    }
    
    .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }
    
    .hero-title {
        font-size: 18px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        text-align: center;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        animation: fadeInFromLeftMobile 0.8s ease-out 0.2s forwards !important;
        transform: translateX(0) !important;
        padding: 0 !important;
        box-sizing: border-box;
        width: 100% !important;
        max-width: 100% !important;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    
    .hero-title-line1 {
        font-size: 18px !important;
        text-align: center;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        line-height: 1.3;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-title-line2 {
        font-size: 18px !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        line-height: 1.3;
        padding: 0 !important;
        box-sizing: border-box;
        width: 100% !important;
        max-width: 100% !important;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    
    .hero-title-line2-container {
        gap: 20px !important;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        opacity: 1 !important;
        visibility: visible !important;
        animation: fadeInFromLeftMobile 0.8s ease-out 0.4s forwards !important;
        transform: translateX(0) !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .cta-button {
        margin: 0 auto;
        opacity: 1 !important;
        visibility: visible !important;
        animation: fadeInFromLeftMobile 0.8s ease-out 0.6s forwards !important;
        transform: translateX(0) !important;
    }
    
    .indicator {
        width: 8px !important;
        height: 8px !important;
        border-width: 1.5px !important;
    }
    
    .indicator.active {
        transform: scale(1.1) !important;
    }
}

.hero-indicators {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-right: 50px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--text-white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: scale(1.2);
}

.hero-text {
    flex: 1;
    max-width: 900px;
    text-align: left;
    margin: 0;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title-line2-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-tagline-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 0;
    width: 100%;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 50px;
    margin-top: 30px;
    color: var(--text-white);
    text-shadow: none;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    text-align: left;
    display: block;
    position: relative;
    max-width: 100%;
    opacity: 0;
    animation: fadeInFromLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.8s forwards;
    letter-spacing: -0.02em;
}

.hero-title-line1 {
    display: block;
    margin-bottom: 10px;
    text-transform: capitalize;
    text-align: left;
    white-space: nowrap;
    font-size: 56px;
}

.hero-title-line2 {
    display: block;
    text-transform: capitalize;
    font-size: 56px;
    font-weight: 600;
    text-align: center;
    margin-top: 0;
    width: 100%;
    position: relative;
    margin-left: 0;
    margin-bottom: 0;
}

@keyframes fadeInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInFromLeftMobile {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-tagline {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 0;
    margin-right: 0;
    padding-bottom: 0;
    color: var(--text-white);
    text-shadow: none;
    letter-spacing: 6px;
    text-transform: capitalize;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    opacity: 0;
    position: relative;
    display: block;
    width: auto;
    text-align: center;
    animation: fadeInFromLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 3.2s forwards;
}


.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeInFromLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 3.2s forwards;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--text-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.5px;
    border-radius: 50px;
    margin-top: 0;
    clear: none;
    width: auto;
    min-width: auto;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(58, 142, 201, 0.4);
    vertical-align: middle;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(58, 142, 201, 0.6);
}

.cta-button .arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

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

/* Page Hero (for sub-pages) */
.page-hero {
    min-height: 40vh;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0d1525 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.logo-container a {
    display: inline-block;
    text-decoration: none;
}

/* Content Sections */
.section-content {
    min-height: 70vh;
    padding: 120px 0 80px;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.section-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(58, 142, 201, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

.section-content:nth-child(even) {
    background: #0d1525;
}

.section-content:nth-child(even)::before {
    animation-delay: -10s;
}

.section-title {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--text-white);
    text-align: center;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* Cards Styles */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 0 20px;
}

.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(58, 142, 201, 0.1), transparent);
    transition: left 0.6s ease;
}

.card:hover::before {
    left: 100%;
}

.card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(58, 142, 201, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::after {
    opacity: 1;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(58, 142, 201, 0.5);
    box-shadow: 0 20px 60px rgba(58, 142, 201, 0.3),
                0 0 0 1px rgba(58, 142, 201, 0.1);
    background: linear-gradient(135deg, rgba(58, 142, 201, 0.1) 0%, rgba(27, 107, 163, 0.05) 100%);
}

.card-icon {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    display: inline-block;
}

.card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--text-white);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.card:hover .card-title {
    color: var(--primary-blue);
}

.card-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.card:hover .card-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-blue);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card:hover {
    transform: translateX(10px);
    border-color: rgba(58, 142, 201, 0.3);
    background: rgba(58, 142, 201, 0.05);
    box-shadow: -10px 0 30px rgba(58, 142, 201, 0.2);
}

.feature-card h3 {
    color: var(--text-white);
    font-size: 20px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-blue);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.8) 0%, rgba(13, 21, 37, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(58, 142, 201, 0.25);
    background: linear-gradient(135deg, rgba(58, 142, 201, 0.15) 0%, rgba(13, 21, 37, 0.9) 100%);
}

.service-card-icon {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-card:hover .service-card-icon {
    transform: scale(1.15) rotateY(360deg);
    color: var(--text-white);
}

.service-card h4 {
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 15px;
    margin-top: 10px;
    font-weight: 600;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.service-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-top: 10px;
    flex-grow: 1;
    text-align: left;
}

/* About Hero Card */
.about-hero-card {
    background: linear-gradient(135deg, rgba(58, 142, 201, 0.1) 0%, rgba(27, 107, 163, 0.05) 100%);
    border: 1px solid rgba(58, 142, 201, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 60px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.about-hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(58, 142, 201, 0.3);
    border-color: rgba(58, 142, 201, 0.4);
}

.contact-info {
    text-align: center;
    margin-top: 40px;
}

.contact-info p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 15px 0;
}

.contact-info a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--text-white);
    text-decoration: underline;
    transform: translateX(5px);
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Product Image Cards - Base Styles */
.product-image-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Elegant card style for solution pages (single image cards) */
.product-image-card:not(.image-card-1):not(.image-card-2) {
    max-width: 700px !important;
    padding: 25px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(58, 142, 201, 0.1) !important;
    opacity: 0;
    visibility: visible !important;
    display: flex !important;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* Fallback: ensure images are visible if animation doesn't trigger */
.product-image-card:not(.image-card-1):not(.image-card-2) .product-image-item img {
    opacity: 1 !important;
    visibility: visible !important;
}

.product-image-item {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
}

/* Solution page image items - rectangular */
.product-image-card:not(.image-card-1):not(.image-card-2) .product-image-item {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
}

.product-image-item img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    margin: 0;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
}

/* Solution page images - rectangular with proper aspect ratio */
.product-image-card:not(.image-card-1):not(.image-card-2) .product-image-item {
    opacity: 1 !important;
}

.product-image-card:not(.image-card-1):not(.image-card-2) .product-image-item img {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    border: none !important;
    object-fit: contain !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.product-image-item img.loaded {
    opacity: 1;
    visibility: visible;
}

/* Ensure product-hero-grid displays correctly on desktop */
.product-hero-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    align-items: start !important;
}

/* Force two-column layout for all solution pages on desktop */
@media (min-width: 769px) {
    .product-hero-grid,
    div[style*="grid-template-columns: 1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 60px !important;
        align-items: start !important;
    }
}

/* Elegant hover for solution page cards */
.product-image-card:not(.image-card-1):not(.image-card-2):hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 60px rgba(58, 142, 201, 0.3), 0 0 0 1px rgba(58, 142, 201, 0.2) !important;
    border-color: rgba(58, 142, 201, 0.4) !important;
}

.product-image-card:not(.image-card-1):not(.image-card-2):hover .product-image-item img {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4) !important;
}

/* Responsive Cards */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    /* Remove hover effects from product images on mobile */
    .product-image-card:hover,
    .product-image-card.image-card-1:hover,
    .product-image-card.image-card-2:hover {
        transform: none !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(58, 142, 201, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.15) !important;
    }
    
    .product-image-card:hover .product-image-item img,
    .product-image-card.image-card-1:hover .product-image-item img,
    .product-image-card.image-card-2:hover .product-image-item img {
        transform: none !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
        border-color: rgba(255, 255, 255, 0.2) !important;
    }
    
    .product-images-stack:hover .product-image-card:not(:hover) {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .product-image-card:hover::before {
        display: none !important;
    }
    
    .product-hero-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 50px;
        align-items: start;
        margin-bottom: 40px;
    }
    
    .product-images-stack {
        position: relative;
        width: 100%;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        align-items: center;
        justify-content: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .product-image-card {
        max-width: 280px;
    }
    
    .product-image-card.animate {
        animation: cardSlideIn 0.8s ease-out forwards;
    }
    
    @keyframes cardSlideIn {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    
    /* Smaller cards for point-to-point pages */
    .product-images-stack .product-image-card {
        max-width: 220px;
        padding: 20px;
    }
    
    /* Animation for single photos (solution pages) */
    .product-image-card:not(.image-card-1):not(.image-card-2).animate {
        animation: cardSlideIn 0.8s ease-out 0.2s forwards;
    }
    
    .product-image-card:not(.image-card-1):not(.image-card-2) .product-image-item.animate {
        animation: photoFadeIn 1s ease-out 0.4s forwards;
    }
    
    .product-image-item {
        position: relative;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 600px;
        height: auto;
        border-radius: 0;
        overflow: hidden;
    }
    
    /* Elegant card style for solution pages */
    .product-image-card:not(.image-card-1):not(.image-card-2) {
        max-width: 700px;
        padding: 25px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(58, 142, 201, 0.1);
    }
    
    .product-image-card:not(.image-card-1):not(.image-card-2) .product-image-item {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
        overflow: hidden;
    }
    
    /* Smaller images for point-to-point pages */
    .product-images-stack .product-image-item {
        width: 150px;
        height: 150px;
    }
    
    .product-image-card.image-card-1 {
        z-index: 2;
        opacity: 0;
    }
    
    .product-image-card.image-card-1.animate {
        animation: fadeInUp 0.6s ease-out 0.1s forwards;
    }
    
    .product-image-card.image-card-2 {
        z-index: 1;
        opacity: 0;
    }
    
    .product-image-card.image-card-2.animate {
        animation: fadeInUp 0.6s ease-out 0.3s forwards;
    }
    
    .product-image-card.image-card-1 .product-image-item.animate {
        animation: photoFadeIn 1s ease-out 0.2s forwards;
    }
    
    .product-image-card.image-card-2 .product-image-item.animate {
        animation: photoFadeIn 1s ease-out 0.4s forwards;
    }
    
    .product-image-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .product-image-card:hover::before {
        left: 100%;
    }
    
    .product-image-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 60px rgba(58, 142, 201, 0.4);
        border-color: rgba(58, 142, 201, 0.5);
        z-index: 10;
    }
    
    /* Remove hover effects on mobile for point-to-point and point-to-multipoint pages */
    @media (max-width: 768px) {
        .product-images-stack .product-image-card:hover,
        .product-images-stack .product-image-card.image-card-1:hover,
        .product-images-stack .product-image-card.image-card-2:hover {
            transform: none !important;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
            border-color: rgba(255, 255, 255, 0.1) !important;
        }
        
        .product-images-stack .product-image-card:hover .product-image-item img,
        .product-images-stack .product-image-card.image-card-1:hover .product-image-item img,
        .product-images-stack .product-image-card.image-card-2:hover .product-image-item img {
            transform: none !important;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
            border: 3px solid rgba(255, 255, 255, 0.2) !important;
        }
        
        .product-images-stack:hover .product-image-card:not(:hover) {
            opacity: 1 !important;
            transform: none !important;
        }
    }
    
    .product-image-item {
        position: relative;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        opacity: 0;
    }
    
    .product-image-item.animate {
        animation: photoFadeIn 1s ease-out forwards;
    }
    
    @keyframes photoFadeInScale {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    
    @keyframes photoFadeIn {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    
    .product-image-item img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.95);
        padding: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
        margin: 0;
        object-fit: contain;
        border: none;
        opacity: 0;
        visibility: hidden;
    }
    
    /* Remove circular border for solution pages */
    .product-image-card:not(.image-card-1):not(.image-card-2) .product-image-item img {
        border-radius: 12px;
        border: none;
        object-fit: contain;
    }
    
    .product-image-item img.loaded {
        opacity: 1;
        visibility: visible;
    }
    
    /* Fallback for mobile - ensure images show */
    @media (max-width: 768px) {
        .product-image-item img {
            opacity: 0;
            visibility: hidden;
        }
        
        .product-image-item img.loaded {
            opacity: 1 !important;
            visibility: visible !important;
            animation: mobileImageFadeIn 1s ease-out forwards;
        }
        
        /* Force show all images on mobile after 1.5 seconds as fallback */
        .product-image-card .product-image-item img {
            animation: mobileImageFadeIn 1s ease-out 1.5s forwards;
        }
        
        /* Ensure product images are visible on mobile */
        .product-image-card {
            display: flex !important;
            opacity: 1 !important;
            visibility: visible !important;
        }
        
        .product-image-card.animate {
            opacity: 1 !important;
        }
        
        .product-image-item {
            opacity: 1 !important;
            visibility: visible !important;
        }
        
        .product-image-item.animate {
            opacity: 1 !important;
        }
        
        @keyframes mobileImageFadeIn {
            from {
                opacity: 0;
                visibility: hidden;
            }
            to {
                opacity: 1 !important;
                visibility: visible !important;
            }
        }
    }
    
    .product-image-card:hover .product-image-item img {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(58, 142, 201, 0.7);
        border-color: var(--primary-blue);
        background: rgba(255, 255, 255, 1);
    }
    
    /* Elegant hover for solution page cards */
    .product-image-card:not(.image-card-1):not(.image-card-2):hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 20px 60px rgba(58, 142, 201, 0.3), 0 0 0 1px rgba(58, 142, 201, 0.2);
        border-color: rgba(58, 142, 201, 0.4);
    }
    
    .product-image-card:not(.image-card-1):not(.image-card-2):hover .product-image-item img {
        transform: scale(1.02);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    }
    
    .product-images-stack:hover .product-image-card:not(:hover) {
        opacity: 0.75;
        transform: scale(0.97);
    }
    
    @media (max-width: 480px) {
        /* Only stack on very small mobile screens */
        .product-hero-grid,
        div[style*="grid-template-columns: 1fr 1fr"] {
            grid-template-columns: 1fr !important;
            gap: 30px !important;
        }
        
        .product-image-card {
            order: -1;
            max-width: 100%;
            display: flex !important;
            opacity: 1 !important;
            visibility: visible !important;
        }
        
        .product-image-item {
            opacity: 1 !important;
            visibility: visible !important;
        }
        
        .product-image-item img {
            opacity: 1 !important;
            visibility: visible !important;
            display: block !important;
        }
        
        .product-image-card.image-card-2 {
            margin-top: 0;
        }
        
        .product-image-card.image-card-2:hover {
            margin-top: 10px;
        }
        
        div[style*="grid-template-columns: 1fr 1fr"] {
            grid-template-columns: 1fr !important;
            gap: 30px !important;
        }
        
        div[style*="grid-template-columns: 1fr 1fr"] .product-image-card {
            order: -1;
        }
        
        div[style*="grid-template-columns: repeat(3, 1fr)"] {
            grid-template-columns: 1fr !important;
        }
        
        div[style*="grid-template-columns: repeat(2, 1fr)"] {
            grid-template-columns: 1fr !important;
        }
        
        .product-images-stack {
            grid-template-columns: 1fr !important;
        }
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 20px 15px;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .card:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

/* Footer Styles */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
    opacity: 1;
    visibility: visible;
    display: block;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.1);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.contact-value {
    font-size: 16px;
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
}

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

.social-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon i {
    font-size: 18px;
    line-height: 1;
}

.social-icon:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 20px rgba(58, 142, 201, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-tagline {
        font-size: 32px !important;
        letter-spacing: 6px !important;
    }
    
    .hero-text {
        max-width: 800px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--dark-bg);
        padding: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 10px;
        margin-left: 20px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 42px !important;
    }
    
    .hero-title-line1 {
        font-size: 42px !important;
        text-align: center;
    }
    
    .hero-title-line2 {
        font-size: 42px !important;
    }
    
    .hero-tagline {
        font-size: 16px !important;
        letter-spacing: 3px !important;
    }
    
    .section-title {
        font-size: 22px !important;
        white-space: normal;
        line-height: 1.3;
    }
    
    .section-title .title-line-2 {
        display: inline-block;
        margin-right: 8px;
    }
    
    .section-title .title-question {
        display: inline-block;
    }
    
    .section-description {
        font-size: 14px !important;
    }
    
    .card {
        padding: 20px 15px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .card-title {
        font-size: 18px !important;
        margin-bottom: 10px;
    }
    
    .card-description {
        font-size: 13px !important;
        line-height: 1.5;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-text {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-indicators {
        flex-direction: row !important;
        order: 3 !important;
        margin-top: 20px !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        gap: 12px !important;
    }
    
    .indicator {
        width: 8px !important;
        height: 8px !important;
        border-width: 1.5px !important;
    }
    
    .indicator.active {
        transform: scale(1.1) !important;
    }
    
    .hero-background {
        touch-action: pan-x;
    }
    
    .bg-slide {
        transition: transform 0.5s ease-in-out;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-tagline {
        font-size: 18px !important;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .hero-indicators {
        gap: 25px;
        margin-top: 35px;
    }
    
    .indicator {
        width: 20px;
        height: 20px;
        border-width: 3px;
    }
    
    .indicator.active {
        transform: scale(1.4);
    }
    
    .logo-main {
        font-size: 22px;
    }
    
    .logo-sub {
        font-size: 10px;
    }
    
    /* Splash Screen Mobile */
    .splash-logo-container {
        width: 200px;
        height: 200px;
    }
    
    .splash-logo-img {
        width: 100px;
    }
    
    .ring-1 {
        width: 200px;
        height: 200px;
    }
    
    .ring-2 {
        width: 165px;
        height: 165px;
    }
    
    .ring-3 {
        width: 130px;
        height: 130px;
    }
    
    .splash-company-name {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .splash-company-subtitle {
        font-size: 12px;
        letter-spacing: 4px;
    }
    
    .splash-loader {
        width: 150px;
    }
}

/* Animation for logo switching */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.logo-static {
    animation: fadeIn 0.5s ease;
}

/* Splash Screen Styles */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a1628 0%, #1a1a2e 50%, #0a1628 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 1s;
    overflow: hidden;
}

.splash-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(58, 142, 201, 0.1) 0%, transparent 70%);
    animation: splashRotate 20s linear infinite;
}

@keyframes splashRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.splash-logo-container {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-logo-center {
    position: relative;
    z-index: 10;
    animation: logoPulse 3s ease-in-out infinite;
}

.splash-logo-img {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(58, 142, 201, 0.6));
    animation: logoFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.splash-logo-ring {
    position: absolute;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    opacity: 0.3;
    box-shadow: 0 0 20px rgba(58, 142, 201, 0.3);
}

.ring-1 {
    width: 280px;
    height: 280px;
    animation: ringPulse 2.5s ease-in-out infinite;
    animation-delay: 0s;
}

.ring-2 {
    width: 230px;
    height: 230px;
    animation: ringPulse 2.5s ease-in-out infinite;
    animation-delay: 0.3s;
}

.ring-3 {
    width: 180px;
    height: 180px;
    animation: ringPulse 2.5s ease-in-out infinite;
    animation-delay: 0.6s;
}

.splash-text {
    text-align: center;
    animation: textFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.splash-company-name {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--text-white);
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(58, 142, 201, 0.6),
                 0 0 60px rgba(58, 142, 201, 0.3);
    animation: textGlow 2s ease-in-out infinite alternate;
    position: relative;
}

.splash-company-name::before {
    content: 'PROLIGHT';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #ffffff 0%, rgba(58, 142, 201, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    opacity: 0.8;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 20px rgba(58, 142, 201, 0.5),
                     0 0 40px rgba(58, 142, 201, 0.3);
    }
    100% {
        text-shadow: 0 0 40px rgba(58, 142, 201, 0.8),
                     0 0 80px rgba(58, 142, 201, 0.5);
    }
}

.splash-company-subtitle {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.splash-loader {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
    animation: loaderFadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 10px;
    animation: loaderProgress 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
    box-shadow: 0 0 10px rgba(58, 142, 201, 0.6);
}

/* Splash Screen Animations */
@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(15px);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes ringPulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.15;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loaderFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes loaderProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Smooth page reveal after splash */
body.splash-active .hero,
body.splash-active .header {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

body:not(.splash-active) .hero,
body:not(.splash-active) .header {
    opacity: 1;
}

