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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

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

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

.nav-logo h2 {
    font-weight: 700;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

.logo-text {
    background: linear-gradient(to right, #d1d5db, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-highlight {
    background: linear-gradient(to right, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #d1d5db;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Full width dropdown for "What we do" menu */
.nav-item.dropdown:first-child .dropdown-menu {
    position: fixed;
    top: 80px; /* Height of navbar */
    left: 0;
    right: 0;
    width: 100vw;
    min-width: 100vw;
    border-radius: 0;
    border-left: none;
    border-right: none;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem 0;
    z-index: 1000;
}

/* Container for full width dropdown content */
.nav-item.dropdown:first-child .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background: transparent;
    z-index: -1;
}

/* Grid layout for full width dropdown items */
.nav-item.dropdown:first-child .dropdown-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    padding: 2rem;
}

.nav-item.dropdown:first-child .dropdown-menu li {
    margin: 0;
    padding: 0;
}

.nav-item.dropdown:first-child .dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 120px;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.nav-item.dropdown:first-child .dropdown-menu a:hover {
    background: rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.2);
}

/* Add icons to the full width dropdown items */
.nav-item.dropdown:first-child .dropdown-menu a::before {
    content: '';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: rgba(79, 70, 229, 0.8);
    display: block;
}

.nav-item.dropdown:first-child .dropdown-menu li:nth-child(1) a::before {
    content: '\f233'; /* server icon */
}

.nav-item.dropdown:first-child .dropdown-menu li:nth-child(2) a::before {
    content: '\f095'; /* headset icon */
}

.nav-item.dropdown:first-child .dropdown-menu li:nth-child(3) a::before {
    content: '\f0c0'; /* users icon */
}

.nav-item.dropdown:first-child .dropdown-menu li:nth-child(4) a::before {
    content: '\f6ff'; /* network icon */
}

.nav-item.dropdown:first-child .dropdown-menu li:nth-child(5) a::before {
    content: '\f3ed'; /* shield icon */
}

.nav-item.dropdown:first-child .dropdown-menu li:nth-child(6) a::before {
    content: '\f0c2'; /* cloud icon */
}

/* Enhanced text styling for full width dropdown */
.nav-item.dropdown:first-child .dropdown-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.4;
}

.nav-item.dropdown:first-child .dropdown-menu a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Add subtle animation for full width dropdown */
.nav-item.dropdown:first-child:hover .dropdown-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Responsive adjustments for full width dropdown */
@media (max-width: 768px) {
    .nav-item.dropdown:first-child .dropdown-menu {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .nav-item.dropdown:first-child .dropdown-menu a {
        min-height: 80px;
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .nav-item.dropdown:first-child .dropdown-menu a::before {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
}

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

/* Enhanced dropdown styling for "Who we are" */
.nav-item.dropdown:hover .nav-link {
    color: #ffffff;
}

.nav-item.dropdown:hover .nav-link i {
    transform: rotate(180deg);
    color: #a855f7;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.025em;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: translateX(4px);
    padding-left: 2rem;
}

/* Staggered animation for dropdown items */
.dropdown-menu li {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.nav-item:hover .dropdown-menu li {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-menu li:nth-child(1) { transition-delay: 0.1s; }
.dropdown-menu li:nth-child(2) { transition-delay: 0.15s; }
.dropdown-menu li:nth-child(3) { transition-delay: 0.2s; }
.dropdown-menu li:nth-child(4) { transition-delay: 0.25s; }
.dropdown-menu li:nth-child(5) { transition-delay: 0.3s; }
.dropdown-menu li:nth-child(6) { transition-delay: 0.35s; }
.dropdown-menu li:nth-child(7) { transition-delay: 0.4s; }

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.email-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-icon:hover {
    background: #374151;
    transform: scale(1.05);
}

.schedule-btn {
    background: linear-gradient(135deg, #7c3aed, #1f2937);
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.schedule-btn:hover {
    background: linear-gradient(135deg, #8b5cf6, #374151);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #030303;
    color: #e5e7eb;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.radial-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(99, 102, 241, 0.05), transparent, rgba(244, 63, 94, 0.05));
    filter: blur(3rem);
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.elegant-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.08), transparent);
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.1);
    animation: float-shape 12s ease-in-out infinite;
}

.elegant-shape::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 70%);
}

.shape-1 {
    width: 600px;
    height: 140px;
    left: -10%;
    top: 15%;
    transform: rotate(12deg);
    background: linear-gradient(to right, rgba(99, 102, 241, 0.15), transparent);
    animation-delay: 0.3s;
}

.shape-2 {
    width: 500px;
    height: 120px;
    right: -5%;
    top: 70%;
    transform: rotate(-15deg);
    background: linear-gradient(to right, rgba(244, 63, 94, 0.15), transparent);
    animation-delay: 0.5s;
}

.shape-3 {
    width: 300px;
    height: 80px;
    left: 5%;
    bottom: 5%;
    transform: rotate(-8deg);
    background: linear-gradient(to right, rgba(139, 92, 246, 0.15), transparent);
    animation-delay: 0.4s;
}

.shape-4 {
    width: 200px;
    height: 60px;
    right: 15%;
    top: 10%;
    transform: rotate(20deg);
    background: linear-gradient(to right, rgba(245, 158, 11, 0.15), transparent);
    animation-delay: 0.6s;
}

.shape-5 {
    width: 150px;
    height: 40px;
    left: 20%;
    top: 5%;
    transform: rotate(-25deg);
    background: linear-gradient(to right, rgba(6, 182, 212, 0.15), transparent);
    animation-delay: 0.7s;
}

@keyframes float-shape {
    0%, 100% { transform: translateY(0) rotate(var(--rotation, 0deg)); }
    50% { transform: translateY(15px) rotate(var(--rotation, 0deg)); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.badge-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.8);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #ffffff;
}

.title-line-1 {
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2 {
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: linear-gradient(to right, rgba(99, 102, 241, 0.8), rgba(244, 63, 94, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.025em;
}

.hero-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.animated-button {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 9999px;
    padding: 1.5px;
}

.button-border {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 9999px;
    padding: 1.5px;
}

.button-border::before {
    content: '';
    position: absolute;
    inset: -1000%;
    background: conic-gradient(from 90deg at 50% 50%, #E2CBFF 0%, #393BB2 50%, #E2CBFF 100%);
    animation: spin 2s linear infinite;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(to right, rgba(161, 161, 170, 0.1), rgba(147, 51, 234, 0.2), transparent);
    border: 1px solid #374151;
    border-radius: 9999px;
    color: #e5e7eb;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(12px);
}

.cta-button:hover {
    background: linear-gradient(to right, rgba(161, 161, 170, 0.2), rgba(147, 51, 234, 0.3), transparent);
    transform: translateY(-2px);
}

.dashboard-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.dashboard-card {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

.card-header {
    background: #111827;
    padding: 1rem;
    border-bottom: 1px solid #374151;
}

.header-dots {
    display: flex;
    gap: 0.5rem;
}

.header-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
}

.header-dots span:nth-child(1) { background: #ef4444; }
.header-dots span:nth-child(2) { background: #f59e0b; }
.header-dots span:nth-child(3) { background: #10b981; }

.card-content {
    padding: 2rem;
}

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

.grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #111827;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.grid-item:hover {
    background: #1f2937;
    transform: translateY(-2px);
}

.grid-item i {
    font-size: 1.5rem;
    color: #a855f7;
}

.grid-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #030303, transparent, rgba(3, 3, 3, 0.8));
    pointer-events: none;
    z-index: 5;
}

/* Service Pages Styles */
.service-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #030303;
    color: #e5e7eb;
    padding-top: 80px;
    overflow: hidden;
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.service-badge i {
    font-size: 1rem;
    color: #3b82f6;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.025em;
}

.service-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-hero-stats .stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.service-hero-stats .stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.service-hero-stats .stat p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.service-details {
    padding: 100px 0;
    background: #111827;
}

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

.service-feature {
    background: #1f2937;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #374151;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-feature::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;
}

.service-feature:hover::before {
    left: 100%;
}

.service-feature:hover {
    transform: translateY(-5px);
    border-color: #4b5563;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.service-feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f9fafb;
}

.service-feature p {
    color: #9ca3af;
    line-height: 1.6;
}

.service-cta {
    padding: 100px 0;
    background: #0a0a0a;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-secondary {
    background: transparent;
    color: #e5e7eb;
    border: 2px solid #374151;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #374151;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Services Background Canvas */
.services-bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Ensure services content stays above background canvas */
.services > *:not(.services-bg-canvas) {
    position: relative;
    z-index: 2;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Modern Service Cards */
.glow-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Modern gradient overlay */
.glow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(79, 70, 229, 0.1) 0%, 
        rgba(147, 51, 234, 0.05) 50%, 
        rgba(236, 72, 153, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
    z-index: 1;
}

.glow-card:hover::before {
    opacity: 1;
}

/* Hover Effect Animation */
.hover-background {
    position: absolute;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(79, 70, 229, 0.2);
}

/* Modern hover effects */
.glow-card {
    position: relative;
    z-index: 20;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 25px 50px -12px rgba(102, 126, 234, 0.25),
        0 0 0 1px rgba(102, 126, 234, 0.1);
    background: linear-gradient(135deg, #1e1e2e 0%, #1a1a3e 50%, #0f1f4f 100%);
}

.glow-card::before,
.glow-card::after {
    pointer-events: none;
    content: "";
    position: absolute;
    inset: calc(var(--border-size) * -1);
    border: var(--border-size) solid transparent;
    border-radius: calc(var(--radius) * 1px);
    background-attachment: fixed;
    background-size: calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

/* Remove old glow effects - replaced with modern gradient overlay */

/* Modern color variations for different services */
.glow-card[data-glow-color="blue"] .service-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.glow-card[data-glow-color="purple"] .service-icon {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.glow-card[data-glow-color="green"] .service-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.glow-card[data-glow-color="red"] .service-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.glow-card[data-glow-color="orange"] .service-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

/* Hover color variations */
.glow-card[data-glow-color="blue"]:hover {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 25px 50px -12px rgba(102, 126, 234, 0.25);
}

.glow-card[data-glow-color="purple"]:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 25px 50px -12px rgba(168, 85, 247, 0.25);
}

.glow-card[data-glow-color="green"]:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.25);
}

.glow-card[data-glow-color="red"]:hover {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 25px 50px -12px rgba(239, 68, 68, 0.25);
}

.glow-card[data-glow-color="orange"]:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.25);
}

/* Remove old hover effect - now handled by JavaScript */

/* Modern fallback for older browsers */
@supports not (backdrop-filter: blur(10px)) {
    .glow-card {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }
}

/* Enhanced glow effect for better visibility */
.glow-card {
    transition: all 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 
        0 10px 25px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.glow-card:hover .service-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.glow-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.glow-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.glow-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #9ca3af;
    font-weight: 500;
}

.team-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.team-illustration i {
    font-size: 8rem;
    color: #3b82f6;
    opacity: 0.1;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #111827;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    width: 40px;
}

.contact-item h4 {
    font-weight: 600;
    color: #f9fafb;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #9ca3af;
}

.contact-form {
    background: #1f2937;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #374151;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #374151;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #111827;
    color: #e5e7eb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: #1f2937;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

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

/* Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid #374151;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fbbf24;
    color: #1f2937;
    border-color: #fbbf24;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

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

    .nav-actions {
        display: none;
    }

    .dropdown-menu {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        margin-top: 1rem;
    }

    .dropdown-menu a {
        color: #d1d5db;
        padding: 0.5rem 1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .shape-1 {
        width: 400px;
        height: 100px;
        left: -5%;
        top: 20%;
    }

    .shape-2 {
        width: 300px;
        height: 80px;
        right: 0%;
        top: 75%;
    }

    .shape-3 {
        width: 200px;
        height: 60px;
        left: 10%;
        bottom: 10%;
    }

    .shape-4 {
        width: 150px;
        height: 40px;
        right: 20%;
        top: 15%;
    }

    .shape-5 {
        width: 100px;
        height: 30px;
        left: 25%;
        top: 10%;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .dashboard-preview {
        margin-top: 3rem;
    }

    .dashboard-card {
        max-width: 350px;
    }

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

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

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

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

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

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

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.service-card,
.contact-item,
.about-text {
    animation: fadeInUp 0.6s ease-out;
} 