/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Myriad Pro', 'Myriad', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1963B0 !important;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1963B0;
}

p {
    margin-bottom: 1rem;
    color: #1963B0 !important;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 123, 255, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1963B0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-logo a:hover {
    color: #0056CC;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #1963B0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #1963B0;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1963B0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #1963B0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    transform-style: preserve-3d;
}

/* Parallax Elements */
.parallax {
    transform-style: preserve-3d;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform-style: preserve-3d;
}

.parallax-back {
    transform: translateZ(-1px) scale(2);
}

.parallax-base {
    transform: translateZ(0);
}

.parallax-mid {
    transform: translateZ(-0.5px) scale(1.5);
}

.parallax-front {
    transform: translateZ(0.5px);
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    /* Video should be visible by default */
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.video-container video.loaded {
    opacity: 1;
}

/* Loading state styling - simplified */
.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
    opacity: 1;
}

/* Hide ALL video controls across entire website */
video, .page-video {
    pointer-events: none !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    /* Performance optimizations */
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Optimize rendering */
    contain: layout style paint;
    /* Ensure videos are visible */
    opacity: 1 !important;
    display: block !important;
    position: relative !important;
    z-index: 2 !important;
}

video::-webkit-media-controls {
    display: none !important;
    -webkit-appearance: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

video::-webkit-media-controls-panel {
    display: none !important;
}

video::-webkit-media-controls-play-button {
    display: none !important;
}

video::-webkit-media-controls-volume-slider {
    display: none !important;
}

video::-webkit-media-controls-mute-button {
    display: none !important;
}

video::-webkit-media-controls-timeline {
    display: none !important;
}

video::-webkit-media-controls-current-time-display {
    display: none !important;
}

video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

video::-webkit-media-controls-overlay-enclosure {
    display: none !important;
}

video::-webkit-media-controls-overlay-play-button {
    display: none !important;
}

video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

video::-moz-media-controls {
    display: none !important;
}

video::-ms-media-controls {
    display: none !important;
}

video::media-controls {
    display: none !important;
}

/* Additional security for controls */
video[controls] {
    controls: none !important;
}

video:focus {
    outline: none !important;
}

.tech-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(45deg, #1e293b, #0f172a, #334155);
    background-size: 400% 400%;
    animation: techGradient 10s ease infinite;
}

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.2) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: gridMove 15s linear infinite;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-particles::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 3px;
    height: 3px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 
        0 0 10px #3b82f6,
        40px 20px 0 #06b6d4,
        80px 40px 0 #8b5cf6,
        120px 10px 0 #3b82f6,
        160px 60px 0 #06b6d4;
    animation: particleGlow 8s ease-in-out infinite;
}

.floating-particles::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 20%;
    width: 2px;
    height: 2px;
    background: #06b6d4;
    border-radius: 50%;
    box-shadow: 
        0 0 8px #06b6d4,
        -30px -20px 0 #8b5cf6,
        -60px 10px 0 #3b82f6,
        -90px -30px 0 #06b6d4;
    animation: particleGlow 12s ease-in-out infinite reverse;
}

.circuit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background: 
        radial-gradient(circle at 25% 25%, #3b82f6 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, #06b6d4 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
    animation: circuitPulse 6s ease-in-out infinite;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    color: #1963B0;
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #1963B0;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-primary:hover {
    background: #1963B0;
    border-color: #1963B0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1963B0;
    border-color: #1963B0;
}

.btn-secondary:hover {
    background: #1963B0;
    color: #FDFBD4;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    font-size: 1.5rem;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Page Header */
.page-header {
    color: white;
    text-align: center;
    padding: 120px 0 80px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
}

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

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.page-subtitle {
    font-size: 1.2rem;
    color: #FFFFFF;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Page Video Styling */
.page-header .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Startup Info Section */
.startup-info-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.startup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.startup-text h2 {
    color: #1963B0;
    margin-bottom: 2rem;
}

.startup-description {
    color: #1963B0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.startup-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1963B0;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #1963B0;
    font-weight: 500;
    font-size: 0.9rem;
}

.startup-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1963B0, #1963B0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.highlight-title {
    color: #1963B0;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.highlight-description {
    color: #1963B0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Sections */
.features-section,
.about-content,
.mission-vision,
.team-section,
.values-section,
.contact-section,
.services-overview {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #1963B0;
    margin-bottom: 1rem;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #1963B0;
    max-width: 600px;
    margin: 0 auto;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

/* Parallax scroll animations */
.parallax-fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.parallax-fade-up.parallax-visible {
    opacity: 1;
    transform: translateY(0);
}

.parallax-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.parallax-slide-left.parallax-visible {
    opacity: 1;
    transform: translateX(0);
}

.parallax-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.parallax-slide-right.parallax-visible {
    opacity: 1;
    transform: translateX(0);
}

.parallax-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.parallax-scale.parallax-visible {
    opacity: 1;
    transform: scale(1);
}

.parallax-rotate {
    opacity: 0;
    transform: rotateY(20deg);
    transition: all 0.8s ease-out;
}

.parallax-rotate.parallax-visible {
    opacity: 1;
    transform: rotateY(0);
}

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

.feature-card {
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

/* Enhanced parallax background effects */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.05), rgba(0, 123, 255, 0.05));
    transform: translateY(0);
    transition: transform 0.1s linear;
    z-index: -1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1963B0, #1963B0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #F5F5F5;
}

.feature-title {
    font-size: 1.3rem;
    color: #1963B0;
    margin-bottom: 1rem;
}

.feature-description {
    color: #1963B0;
    line-height: 1.6;
}

/* About Content */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #1963B0;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-placeholder {
    background: linear-gradient(135deg, #1963B0, #1963B0);
    color: #F5F5F5;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.visual-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.visual-placeholder h3 {
    font-size: 1.5rem;
    margin: 0;
}

/* Mission & Vision */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: #FFFFFF;
    padding: 3.5rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 4px solid #1963B0;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: #1963B0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #F5F5F5;
}

.mv-title {
    font-size: 1.5rem;
    color: #1963B0;
    margin-bottom: 1rem;
}

.mv-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1963B0;
    text-align: left;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    color: #1963B0;
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-name {
    font-size: 1.3rem;
    color: #1963B0;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #1963B0;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #1963B0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mission Detailed Section */
.mission-detailed {
    padding: 80px 0;
}

.mission-content {
    margin-top: 3rem;
}

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

.mission-card {
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1963B0, #1963B0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #F5F5F5;
}

.mission-title {
    font-size: 1.3rem;
    color: #1963B0;
    margin-bottom: 1rem;
}

.mission-description {
    color: #1963B0;
    line-height: 1.6;
}

.mission-statement {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #1963B0;
}

.mission-statement h3 {
    font-size: 1.8rem;
    color: #1963B0;
    margin-bottom: 1.5rem;
}

.mission-statement p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1963B0;
    max-width: 800px;
    margin: 0 auto;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem 1rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1963B0, #1963B0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.value-title {
    font-size: 1.2rem;
    color: #1963B0;
    margin-bottom: 1rem;
}

.value-description {
    color: #1963B0;
    line-height: 1.6;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container {
    background: linear-gradient(135deg, #1963B0, #1963B0);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
}

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

.form-success {
    display: none;
    background: #d1fae5;
    color: #065f46;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
}

.form-success i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Contact Info */
.contact-info {
    padding: 2rem 0;
}

.info-title {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #1963B0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 1rem;
}

.contact-text h3 {
    font-size: 1.1rem;
    color: #1963B0;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #1963B0;
    margin: 0;
}

.contact-social h3 {
    font-size: 1.2rem;
    color: #1963B0;
    margin-bottom: 1rem;
}

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

.service-card {
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

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

.service-icon {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #1963B0, #1963B0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    overflow: hidden;
}

.service-image {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.2rem;
    color: #1963B0;
    margin-bottom: 1rem;
}

.service-description {
    color: #1963B0;
    line-height: 1.6;
}

/* Service Process */
.service-process {
    padding: 40px 0;
    background: #FFFFFF;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.process-step {
    text-align: center;
    padding: 1rem 0.8rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1963B0, #1963B0);
    color: #F5F5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.1rem;
    color: #1963B0;
    margin-bottom: 0.8rem;
}

.step-description {
    color: #1963B0;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: #FFFFFF;
    color: #1963B0;
    text-align: center;
    padding: 80px 0;
    border-top: 2px solid #1963B0;
}

.cta-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #1963B0;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #1963B0;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1963B0, #1963B0);
    color: white !important;
    padding: 4rem 0 1rem;
}

.footer * {
    color: white !important;
}

.footer p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer h3,
.footer h4,
.footer h5 {
    color: white !important;
}

.footer a {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer a:hover {
    color: white !important;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: nowrap;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand {
    flex: 2;
    max-width: 350px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-contact-info {
    margin-bottom: 2rem;
}

.footer-contact {
    flex: 1.5;
    min-width: 200px;
}

.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.footer-contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    word-break: break-all;
    line-height: 1.4;
}

.footer-contact-info i {
    color: rgba(255, 255, 255, 0.9);
    width: 16px;
}

.footer-column {
    margin-bottom: 0;
    flex: 1;
    min-width: 120px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.footer-newsletter {
    margin-top: 2rem;
}

.footer-newsletter h5 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .footer-brand {
        flex: 100%;
        max-width: none;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }
    
    .footer-brand,
    .footer-column,
    .footer-contact {
        flex: none;
        max-width: none;
        min-width: auto;
        text-align: center;
        width: 100%;
    }
    
    .footer-contact-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact-info p {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Additional mobile fixes for very small screens */
@media (max-width: 480px) {
    .footer-content {
        padding: 0 1rem;
        text-align: center;
    }
    
    .footer-brand,
    .footer-column,
    .footer-contact {
        text-align: center;
        margin: 0 auto;
    }
    
    .footer-contact-info p {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom-content {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom-content p {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        text-align: center;
    }
}

/* Animations */
.animate-fadeInUp {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

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

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes techGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(30px, 30px);
    }
}

@keyframes particleGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes circuitPulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .features-grid,
    .team-grid,
    .values-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .page-header {
        padding: 100px 0 60px;
        height: 50vh;
        min-height: 300px;
    }

    .startup-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .startup-stats {
        grid-template-columns: 1fr 1fr;
    }

    .features-section,
    .about-content,
    .mission-vision,
    .team-section,
    .values-section,
    .contact-section,
    .services-overview,
    .startup-info-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 0 1rem;
    }

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

    .feature-card,
    .service-card {
        padding: 2rem 1.5rem;
    }

    .mv-card {
        padding: 2rem 1.5rem;
    }
    
    /* Additional mobile optimizations */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .startup-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Additional device-specific media queries */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Tablet landscape orientation */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
    }
    
    .page-header {
        height: 70vh;
    }
    
    .startup-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Large screens optimization */
@media (min-width: 1400px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .video-container video {
        image-rendering: optimizeQuality;
    }
}

/* Print styles */
@media print {
    .navbar,
    .contact-widgets,
    #page-progress,
    .video-container {
        display: none !important;
    }
    
    .hero-section,
    .page-header {
        height: auto;
        background: white;
        color: #1963B0;
    }
    
    * {
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
}

/* Contact Widgets Cross-Device Optimization */
.contact-widgets {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 768px) {
    .contact-widgets {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .contact-widget {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .contact-widgets {
        bottom: 10px;
        right: 10px;
        gap: 6px;
    }
    
    .contact-widget {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
    }
}

/* Form Field Enhancements */
.form-group input,
.form-group textarea,
.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.btn:focus {
    outline: 2px solid #1963B0;
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .video-container video {
        animation: none !important;
    }
}

/* Dark mode support preparation */
@media (prefers-color-scheme: dark) {
    /* Currently maintaining light theme but prepared for future dark mode */
    :root {
        --text-color: #1963B0;
        --bg-color: #FFFFFF;
        --accent-color: #1963B0;
    }
}



/* Cross-Browser Compatibility Enhancements */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* iOS Safari specific fixes */
@supports (-webkit-overflow-scrolling: touch) {
    .video-container video {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    .hero-section, .page-header {
        -webkit-overflow-scrolling: touch;
    }
}

/* Android Chrome specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 1.5) {
    .video-container video {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimizeSpeed;
    }
}

/* Samsung Internet Browser fixes */
@supports (-webkit-appearance: none) {
    input, textarea, button {
        -webkit-appearance: none;
        border-radius: 0;
    }
}

/* Microsoft Edge/IE compatibility */
@supports (-ms-ime-align: auto) {
    .nav-menu {
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

/* Interactive Features */
#page-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10000;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#progress-bar {
    height: 100%;
    background: #1963B0;
    background: linear-gradient(90deg, #1963B0, #0056CC, #1963B0);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
    position: relative;
    display: block !important;
    border: none;
    outline: none;
}

#progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
    animation: progressShine 1s infinite;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1963B0;
}

.modal-body {
    padding: 30px;
}

.modal-body h3 {
    color: #1963B0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.modal-body p {
    color: #000;
    line-height: 1.6;
    font-size: 1rem;
}

.card-overlay {
    display: none !important;
}

.interactive-card {
    position: relative;
    cursor: default;
}

/* About Page Interactive Features */
.interactive-mv-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.interactive-mv-card.card-hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pulse-icon {
    transition: all 0.3s ease;
}

.pulse-icon.animate-pulse i {
    animation: iconPulse 2s infinite;
}

.pulse-icon.icon-bounce i {
    animation: iconBounce 0.6s ease;
}

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

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.read-more-btn {
    background: linear-gradient(135deg, #1963B0, #1963B0);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #1963B0, #1963B0);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.read-more-btn.active {
    background: linear-gradient(135deg, #1963B0, #0056CC);
}

.read-more-btn::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;
}

.read-more-btn:hover::before {
    left: 100%;
}

.mv-card.expanded {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(0, 86, 204, 0.05));
    border-left: 4px solid #1963B0;
}

.mv-summary, .mv-expanded-content {
    transition: all 0.4s ease;
}

.footer-links a {
    transition: all 0.3s ease;
}

.social-link {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-contact-info p {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 4px;
}

.footer-contact-info p:hover {
    background: rgba(0, 123, 255, 0.1);
    transform: translateX(3px);
}

/* Services Page Interactive Features */
.services-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #1963B0;
    color: #1963B0;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #1963B0, #1963B0);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.filter-btn::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;
}

.filter-btn:hover::before {
    left: 100%;
}

.interactive-service-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.interactive-service-card.service-hover,
.interactive-service-card.expanded {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.interactive-service-card.expanded {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9));
    border: 2px solid rgba(0, 123, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 123, 255, 0.2);
}

.interactive-service-card.expanded .service-overlay {
    opacity: 0 !important;
    pointer-events: none;
}

.interactive-service-card.expanded .service-image {
    transform: scale(1.1) !important;
}

.interactive-service-card.expanded .service-details {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.9), rgba(0, 86, 204, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-overlay.overlay-visible {
    opacity: 1;
}

.service-overlay i {
    font-size: 2.5rem;
    color: white;
    animation: overlayPulse 2s infinite;
}

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

.service-image.image-zoom {
    transform: scale(1.1);
}

.service-learn-more {
    background: linear-gradient(135deg, #1963B0, #1963B0);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.service-learn-more:hover {
    background: linear-gradient(135deg, #1963B0, #1963B0);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.service-learn-more.active {
    background: linear-gradient(135deg, #1963B0, #0056CC);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.service-features li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: #1963B0;
    font-size: 0.9rem;
}

.service-price {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 86, 204, 0.1));
    color: #1963B0;
    padding: 8px 15px;
    border-radius: 15px;
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.service-card.expanded {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(0, 86, 204, 0.05));
    border-left: 4px solid #1963B0;
}

.short-desc, .service-details {
    transition: all 0.4s ease;
}

/* Process Timeline Enhancements */
.process-timeline {
    position: relative;
    padding: 1rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 40px;
    height: 0%;
    transform: translateX(-50%);
    transition: height 0.8s ease;
    z-index: 1;
    overflow: visible;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #1963B0, #1963B0, #1963B0, #1963B0, #1963B0);
    border-radius: 2px;
    transform: translateX(-50%);
    clip-path: path('M2,0 Q10,5% 2,10% Q-6,15% 2,20% Q10,25% 2,30% Q-6,35% 2,40% Q10,45% 2,50% Q-6,55% 2,60% Q10,65% 2,70% Q-6,75% 2,80% Q10,85% 2,90% Q-6,95% 2,100%');
    animation: sineWaveGlow 4s ease-in-out infinite;
}



@keyframes sineWaveGlow {
    0% {
        filter: brightness(1) drop-shadow(0 0 4px rgba(0, 123, 255, 0.6));
        transform: translateX(-50%) scaleX(1);
    }
    25% {
        filter: brightness(1.2) drop-shadow(0 0 8px rgba(0, 123, 255, 0.8));
        transform: translateX(-50%) scaleX(1.1);
    }
    50% {
        filter: brightness(1.1) drop-shadow(0 0 6px rgba(0, 86, 204, 0.7));
        transform: translateX(-50%) scaleX(0.9);
    }
    75% {
        filter: brightness(1.3) drop-shadow(0 0 10px rgba(0, 123, 255, 0.9));
        transform: translateX(-50%) scaleX(1.05);
    }
    100% {
        filter: brightness(1) drop-shadow(0 0 4px rgba(0, 123, 255, 0.6));
        transform: translateX(-50%) scaleX(1);
    }
}

.interactive-process-step {
    position: relative;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.interactive-process-step:nth-child(odd) .step-content {
    text-align: right;
    padding-right: 3rem;
}

.interactive-process-step:nth-child(even) .step-content {
    text-align: left;
    padding-left: 3rem;
    margin-left: auto;
}

.animated-step {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.animated-step.step-pulse {
    animation: stepPulse 2s infinite;
}

@keyframes stepPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
}

.step-expand {
    background: linear-gradient(135deg, #1963B0, #1963B0);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.step-expand:hover {
    background: linear-gradient(135deg, #1963B0, #1963B0);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.step-expand.active {
    background: linear-gradient(135deg, #1963B0, #0056CC);
}

.step-details ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.step-details li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.step-details li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #1963B0;
    font-size: 0.8rem;
}

.step-duration {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 86, 204, 0.1));
    color: #1963B0;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.process-step.step-expanded {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(0, 86, 204, 0.05));
    border-radius: 12px;
    padding: 15px;
    border-left: 3px solid #1963B0;
}

/* Additional sine wave effects for enhanced visual appeal */
.timeline-line:hover::before {
    animation-duration: 2s;
    filter: brightness(1.5) saturate(1.4) drop-shadow(0 0 12px rgba(0, 123, 255, 1));
}

/* Sine wave shadow effect */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 8px;
    height: 100%;
    background: transparent;
    transform: translateX(-50%);
    z-index: 0;
    box-shadow: 
        0 0 8px rgba(0, 123, 255, 0.3),
        0 0 16px rgba(0, 123, 255, 0.2);
    clip-path: path('M4,0 Q12,5% 4,10% Q-4,15% 4,20% Q12,25% 4,30% Q-4,35% 4,40% Q12,45% 4,50% Q-4,55% 4,60% Q12,65% 4,70% Q-4,75% 4,80% Q12,85% 4,90% Q-4,95% 4,100%');
    animation: sineGlowPulse 5s ease-in-out infinite;
}

@keyframes sineGlowPulse {
    0%, 100% {
        opacity: 0.4;
        box-shadow: 
            0 0 8px rgba(0, 123, 255, 0.3),
            0 0 16px rgba(0, 123, 255, 0.2);
    }
    50% {
        opacity: 0.7;
        box-shadow: 
            0 0 12px rgba(0, 123, 255, 0.5),
            0 0 24px rgba(0, 123, 255, 0.3);
    }
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .interactive-process-step:nth-child(odd) .step-content,
    .interactive-process-step:nth-child(even) .step-content {
        text-align: left;
        padding-left: 3rem;
        padding-right: 1rem;
        margin-left: 0;
    }
    
    .services-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Contact Widgets */
.contact-widgets {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 9999;
    display: flex !important;
    flex-direction: column;
    gap: 15px;
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-widget, .call-widget {
    cursor: pointer;
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-widget:hover, .call-widget:hover {
    opacity: 0.8;
}

.whatsapp-icon, .call-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 30px;
    text-decoration: none;
}

.whatsapp-icon {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon:hover {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.call-icon {
    background: #B19CD9;
    box-shadow: 0 4px 15px rgba(177, 156, 217, 0.3);
}

.call-icon:hover {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.whatsapp-tooltip, .call-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #1963B0;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip:after, .call-tooltip:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border: 5px solid transparent;
    border-left-color: #1963B0;
}

.whatsapp-widget:hover .whatsapp-tooltip,
.call-widget:hover .call-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Removed pulse animation for static widgets */

/* Static Widgets - No Animations */

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}
