* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.network-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #5b73ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}



.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.tagline {
    font-size: 0.7rem;
    font-weight: 400;
    color: #00d4ff;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.logo-icon {
    font-size: 1.5rem;
    color: #00d4ff;
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-container {
        align-items: flex-start;
        position: relative;
        height: 40px;
    }
    
    .nav-logo {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.1rem;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .logo-image {
        height: 40px;
        align-self: flex-start;
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: center;
        width: 100%;
    }
    
    .tagline {
        font-size: 0.45rem;
        margin-top: 0;
        line-height: 1;
        text-align: left !important;
        align-self: flex-start;
    }
    
    .hamburger {
        position: absolute;
        right: 0;
        top: 0;
        height: 40px;
        align-items: center;
        justify-content: center;
    }
}

.logo-image:hover {
    filter: brightness(1.3);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #00d4ff;
}

.nav-menu a.active {
    color: #00d4ff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00d4ff 0%, #5b73ff 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-welcome {
    flex: 1;
    margin-left: 2rem;
}

.nav-welcome h2 {
    font-size: 1.2rem;
    margin: 0;
    color: white;
    font-weight: 600;
}

.nav-welcome p {
    font-size: 0.8rem;
    margin: 0;
    color: #888;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.btn-outline {
    padding: 0.5rem 1.5rem;
    border: 1px solid #00d4ff;
    background: transparent;
    color: #00d4ff;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: #00d4ff;
    color: #0a0a0a;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%), 
                linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
    padding: 2rem 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    max-width: 100%;
    word-wrap: break-word;
}

.animated-text {
    position: relative;
    display: block;
    height: 1.2em;
    width: 100%;
    vertical-align: top;
}

.text-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeOut 0.5s ease-in-out;
    background: linear-gradient(135deg, #00d4ff 0%, #5b73ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-item.active {
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-30px);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}



.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.network-node {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.network-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    transform-origin: left center;
}

@keyframes nodeFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-30px) scale(1.2);
        opacity: 1;
    }
}

@keyframes linePulse {
    0%, 100% { 
        opacity: 0.2;
        transform: scaleX(0.8);
    }
    50% { 
        opacity: 0.8;
        transform: scaleX(1.1);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 20px 0;
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #888;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00d4ff 0%, #5b73ff 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-ghost {
    padding: 1rem 2rem;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.company-overview {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #00d4ff;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 20px;
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 10px;
}

.stat-card .stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

.mission-vision {
    padding: 80px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #00d4ff;
}

.mission-card p, .vision-card p {
    color: #64748b;
    line-height: 1.7;
}

.core-values {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #00d4ff;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

.expertise-areas {
    padding: 80px 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.expertise-category h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #00d4ff;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.why-choose-us {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

.about-cta {
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #0f0f0f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
}

.service-card.featured {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #888;
    line-height: 1.5;
    font-size: 0.9rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #00d4ff;
    font-weight: 500;
}

.service-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    color: #00d4ff;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #0a0a0a;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.about-text-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tech-showcase {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-category h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge {
    padding: 0.4rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #00d4ff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #0f0f0f;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    color: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.08);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.contact-card h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
}

.method-icon {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.method-info {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

.method-value {
    color: #ffffff;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-left {
    flex: 1;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex: 2;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-right {
    flex: 1;
    max-width: 200px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo .tagline {
    font-size: 0.8rem;
    font-weight: 400;
    color: #00d4ff;
    margin-top: 3px;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #00d4ff;
}

.footer-column ul li a {
    color: #888;
    text-decoration: none;
    cursor: pointer;
}

.footer-column ul li a:hover {
    color: #aaa;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-right a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #00d4ff;
}

.footer-right span {
    color: #666;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-with-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-with-social h4 {
    margin: 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: #00d4ff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-link:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 0.9rem;
}

/* Team Section */
.team-section {
    margin-top: 4rem;
    text-align: center;
}

.team-section h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 3px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.photo-placeholder {
    font-size: 3rem;
    color: #00d4ff;
}

.member-info h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.cert-badge {
    padding: 0.3rem 0.8rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #00d4ff;
    font-weight: 500;
    white-space: nowrap;
}

.cert-badge-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 212, 255, 0.2);
}

.cert-badge-img:hover {
    transform: scale(1.1);
    border-color: rgba(0, 212, 255, 0.5);
}

/* Business Scale Section */
.business-scale-section {
    margin-top: 4rem;
    text-align: center;
}

.business-scale-section h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #ffffff;
}

.scale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.scale-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.scale-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.scale-card.featured {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

.scale-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.scale-card h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.scale-card p {
    color: #888;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.scale-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.scale-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #00d4ff;
    font-weight: 500;
    white-space: nowrap;
}



/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding: 6rem 0 2rem;
        z-index: 1000;
        justify-content: flex-start;
        gap: 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    

    
    .nav-menu li:last-child {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu .mobile-login {
        display: inline-block;
        padding: 0.8rem 2rem;
        border: 1px solid #00d4ff;
        background: transparent;
        color: #00d4ff;
        border-radius: 6px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .nav-menu .mobile-login:hover {
        background: #00d4ff;
        color: #0a0a0a;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
    
    .animated-text {
        width: 100%;
        height: auto;
        min-height: 1.5em;
    }
    
    .text-item {
        font-size: 1.8rem;
        width: 100%;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.2;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-ghost {
        width: 100%;
        max-width: 280px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .scale-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .contact-form,
    .contact-card {
        padding: 1.5rem;
    }
}
/* Scrolling Cards Section */
.trusted-by {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.scrolling-cards {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
}

.card-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.trust-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.trust-card:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    transform: translateY(-2px);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.scrolling-cards:hover .card-track {
    animation-play-state: paused;
}

/* Cloud Platforms Section */
.cloud-platforms {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.platform-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.platform-card p {
    color: #888;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.platform-card ul {
    list-style: none;
    text-align: left;
}

.platform-card li {
    color: #888;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.platform-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

/* Industries Section */
.industries-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.industry-card p {
    color: #888;
    line-height: 1.6;
}

/* Advantages Section */
.advantages-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #888;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: rgba(0, 212, 255, 0.05);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Hero Section */
.service-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.service-hero-content p {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Responsive for scrolling cards */
@media (max-width: 768px) {
    .card-track {
        gap: 1rem;
    }
    
    .trust-card {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .platform-grid,
    .industries-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* Privacy Policy Styles */
.privacy-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.privacy-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.last-updated {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 500;
}

.privacy-content {
    padding: 80px 0;
    background: #0a0a0a;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    align-items: start;
}

.privacy-toc {
    position: sticky;
    top: 120px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
}

.privacy-toc h3 {
    color: #00d4ff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.privacy-toc ul {
    list-style: none;
}

.privacy-toc li {
    margin-bottom: 10px;
}

.privacy-toc a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.privacy-toc a:hover {
    color: #00d4ff;
}

.privacy-main {
    max-width: none;
}

.privacy-section {
    margin-bottom: 50px;
    scroll-margin-top: 120px;
}

.privacy-section h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    padding-bottom: 10px;
}

.privacy-section h3 {
    color: #00d4ff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.privacy-section p {
    color: #888;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.privacy-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.privacy-section li {
    color: #888;
    margin-bottom: 8px;
    line-height: 1.6;
}

.privacy-section li strong {
    color: #ffffff;
}

.contact-info-privacy {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
}

.contact-method-privacy {
    color: #888;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-method-privacy strong {
    color: #00d4ff;
    margin-right: 10px;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 1024px) {
    .privacy-layout {
        grid-template-columns: 200px 1fr;
        gap: 40px;
    }
    
    .privacy-toc {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .privacy-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .privacy-toc {
        position: static;
        order: 2;
        margin-top: 40px;
    }
    
    .privacy-main {
        order: 1;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
    }
    
    .privacy-content {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .privacy-hero-content h1 {
        font-size: 2rem;
    }
    
    .privacy-section {
        margin-bottom: 40px;
    }
    
    .privacy-toc,
    .contact-info-privacy {
        padding: 20px;
    }
}
/* Hero Slider */
.hero-slider {
    height: 75vh;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 75vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image,
.slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    transform: scale(1);
    animation: zoomIn 8s ease-out forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.slide:not(.active) .slide-image,
.slide:not(.active) .slide-video {
    animation: none;
    transform: scale(1);
}

.slide-content {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    max-width: 600px;
    text-align: center;
}

.glass-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 0;
    padding: 4rem 6rem;
    animation: slideUp 1s ease-out;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-nav {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #00d4ff;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(0, 212, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

.hero-stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.glass-card h1 {
    font-size: 3rem;
    margin: 0 0 2rem 0;
    line-height: 1.2;
    font-weight: 700;
}

.glass-card .hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.slide:nth-child(3) .slide-image {
    object-fit: contain;
    background: #000;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.benefit-card .benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.benefit-card h4 {
    color: white;
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}
.horizontal-scroll-container {
    overflow: hidden;
    margin: 2rem 0;
}

.horizontal-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.horizontal-scroll::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.horizontal-scroll .feature-card {
    min-width: 280px;
    flex-shrink: 0;
}
.horizontal-scroll {
    animation: autoScroll 20s linear infinite;
}

.horizontal-scroll:hover {
    animation-play-state: paused;
}

@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.billing-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 25px;
    margin: 2rem;
}

.billing-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.8) rotateY(45deg);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.billing-slide.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

.billing-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.billing-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.billing-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.billing-dot.active {
    background: white;
    transform: scale(1.2);
}
.hero-slider .billing-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
}

.hero-slider .slide-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 600px;
}

.hero-slider .billing-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-slider .slide-image {
    width: 100%;
    height: 100vh;
    object-fit: contain;
    filter: brightness(0.4);
}
@media (max-width: 768px) {
    .login-header .nav-logo {
        align-items: center !important;
    }
    
    .login-header .logo-image {
        align-self: center !important;
    }
    
    .login-header .logo-text {
        align-items: center !important;
    }
    
    .login-header .tagline {
        text-align: center !important;
        align-self: center !important;
    }
    
    .hero-slider {
        height: 60vh;
    }
    
    .hero-slider .slide-content {
        position: absolute !important;
        left: 10px !important;
        margin-top: 120px !important;
        padding: 20px !important;
        text-align: left !important;
        max-width: calc(100% - 20px) !important;
    }
    
    .slide-content h1 {
        font-size: 1.0rem;
        margin-bottom: 0.4rem;
    }
    
    .slide-content p {
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .slider-nav {
        bottom: 10px;
    }
    
    .nav-dot {
        width: 8px;
        height: 8px;
    }
}
.hero-slider .slide-content {
    position: absolute !important;
    left: 20px !important;
    z-index: 10 !important;
    max-width: 600px;
    text-align: left;
    margin-top: 150px;
    padding: 50px;
}
/* Login Page Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 2rem;
}

.login-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    max-width: 400px;
    width: 100%;
    backdrop-filter: blur(10px);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header .nav-logo {
    align-items: center !important;
}

.login-header .logo-text {
    align-items: center !important;
}

.login-header .tagline {
    text-align: center !important;
}

.login-header .logo-icon {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
    display: block;
}

.login-header h1 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.login-header p {
    color: #888;
    margin: 0;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.login-form input {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
}

.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-container input {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    cursor: pointer;
    user-select: none;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: rgba(255, 255, 255, 0.9);
}

.login-form input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.login-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Portal Styles */
.portal-hero {
    padding: 8rem 0 4rem;
    text-align: center;
}

.portal-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.portal-hero p {
    font-size: 1.2rem;
    color: #888;
}

.portal-services {
    padding: 2rem 0 4rem;
    margin-top: 6rem;
}

.portal-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portal-services .service-card {
    cursor: pointer;
}

/* List Page Styles */
.list-header {
    padding: 8rem 0 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-content h1 {
    font-size: 2.5rem;
    margin: 0;
}

.list-content {
    padding: 2rem 0 4rem;
}

.list-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.list-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.list-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.item-info h3 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.item-info p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

.btn-download {
    background: #00d4ff;
    color: #0a0a0a;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: #00b8e6;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .list-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .portal-hero h1 {
        font-size: 2rem;
    }
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: rgba(10, 10, 10, 0.95);
    border: 2px solid #00d4ff;
    border-radius: 15px;
    margin: 2% auto;
    padding: 2rem;
    width: 95%;
    max-width: 1500px;
    max-height: 90vh;
    position: relative;
    backdrop-filter: blur(10px);
    overflow-y: auto;
}

.close {
    color: #888;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: white;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-content h2 {
    color: white;
    margin: 0;
}

.btn-add-user {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.modal-content .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal-content .form-row-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.modal-content .form-group {
    margin-bottom: 1rem;
}

.modal-content label {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.modal-content select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23ffffff" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    background-size: 10px;
    padding-right: 2rem;
}

.modal-content select option {
    background: #1a1a1a;
    color: white;
    padding: 0.5rem;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
}

.modal-content input:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .nav-container > div:first-child {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .nav-welcome {
        margin-left: 0;
        margin-top: 0.3rem;
        width: 100%;
    }
    
    .nav-welcome h2 {
        font-size: 0.8rem;
        margin: 0;
        line-height: 1.2;
    }
    
    .nav-welcome p {
        font-size: 0.65rem;
        margin: 0;
        line-height: 1.1;
        color: #aaa;
    }
    
    .btn-outline {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .modal-content .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content .form-row-4 {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 95%;
        padding: 1rem;
        max-height: 90vh;
    }
    
    .modal-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .btn-add-user {
        width: 100%;
    }
    
    .table,
    .users-table {
        font-size: 0.8rem;
    }
    
    .table th,
    .table td,
    .users-table th,
    .users-table td {
        padding: 8px 4px;
    }
    
    .id-card-modal {
        width: 95%;
        max-width: none;
    }
    
    .id-card-holder {
        transform: scale(0.8);
        margin: 0 auto;
    }
}
.nav-cta {
    display: flex;
    gap: 1rem;
}
/* Invoice Table Styles */
.items-table {
    margin: 1rem 0;
}

.table-header {
    display: grid;
    grid-template-columns: 40px 2fr 1fr 80px 1fr 60px;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: bold;
    color: white;
    font-size: 0.9rem;
}

.item-row {
    display: grid;
    grid-template-columns: 40px 2fr 1fr 80px 1fr 60px;
    gap: 0.5rem;
    padding: 0.5rem;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-no, .item-total {
    color: white;
    text-align: center;
    font-size: 0.9rem;
}

.item-desc, .item-price, .item-qty {
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: white;
    font-size: 0.9rem;
}

.btn-add, .btn-remove {
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
}

.btn-add {
    background: #00d4ff;
    color: #0a0a0a;
    margin-top: 0.5rem;
}

.btn-remove {
    background: #ff4444;
    color: white;
}

.totals-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: white;
}

.final-total {
    font-weight: bold;
    font-size: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .table-header, .item-row {
        grid-template-columns: 30px 1.5fr 80px 60px 80px 40px;
        font-size: 0.8rem;
    }
}

/* Invoice Preview Styles for PDF */
.invoice-preview {
    font-family: 'Inter', sans-serif;
    padding: 20px;
    background: white;
    color: #333;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.bill-to {
    margin: 20px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.invoice-table th {
    background: #343a40;
    color: white;
    padding: 8px;
}

.invoice-table td {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.invoice-table tr:nth-child(even) {
    background: #f9f9f9;
}

.totals {
    text-align: right;
    margin-top: 20px;
}

.totals h3 {
    color: #007bff;
}

.invoice-preview footer {
    margin-top: 40px;
    text-align: center;
    color: #777;
    font-style: italic;
}

/* Table Styles */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.table th {
    background: rgba(0, 212, 255, 0.1);
    color: white;
    padding: 12px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.table td {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

/* Users Table Styles */
.users-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.users-table th {
    background: rgba(0, 212, 255, 0.1);
    color: white;
    padding: 12px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.users-table td {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.users-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.btn-edit {
    background: #00d4ff;
    color: #0a0a0a;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-edit:hover {
    background: #00b8e6;
}

.password-eye {
    cursor: pointer;
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.password-eye:hover {
    color: rgba(255, 255, 255, 0.9);
}

.password-display {
    font-family: monospace;
}

/* User Photo Styles */
.user-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.user-photo:hover {
    border-color: #00d4ff;
    transform: scale(1.1);
}

/* Photo Modal Styles */
.photo-modal {
    background-color: rgba(0, 0, 0, 0.9);
}

.photo-modal-content {
    background: none;
    border: none;
    margin: 5% auto;
    padding: 0;
    width: auto;
    max-width: 80%;
    text-align: center;
    position: relative;
}

.photo-modal-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.photo-modal-content p {
    color: white;
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 500;
}

.photo-modal .close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ID Card Styles */
.btn-id-card {
    background: #10b981;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    margin-left: 5px;
    transition: background 0.3s ease;
}

.btn-id-card:hover {
    background: #059669;
}

.id-card-modal {
    max-width: 600px;
}

.id-card-actions {
    display: flex;
    gap: 10px;
}

.btn-secondary {
    background: #6b7280;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #4b5563;
}

.id-card-holder {
    width: 225px;
    padding: 4px;
    margin: 0 auto;
    background-color: #1f1f1f;
    border-radius: 5px;
    position: relative;
}

.id-card-holder:after {
    content: '';
    width: 7px;
    display: block;
    background-color: #0a0a0a;
    height: 100px;
    position: absolute;
    top: 50px;
    border-radius: 0 5px 5px 0;
}

.id-card-holder:before {
    content: '';
    width: 7px;
    display: block;
    background-color: #0a0a0a;
    height: 100px;
    position: absolute;
    top: 50px;
    left: 222px;
    border-radius: 5px 0 0 5px;
}

.id-card {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 1.5px 0px #b9b9b9;
    font-family: 'Verdana', sans-serif;
}

.id-card img {
    margin: 0 auto;
}

.header img {
    width: 60px;
    margin-top: 10px;
}

.photo img {
    width: 80px;
    margin-top: 10px;
    border-radius: 50%;
    object-fit: cover;
    height: 80px;
}

.id-card h2 {
    font-size: 14px;
    margin: 8px 0;
    color: #333;
    font-weight: bold;
}

.id-card h3 {
    font-size: 11px;
    margin: 3px 0;
    font-weight: 300;
    color: #666;
}

.qr-code {
    height: 15px;
    margin: 5px 0;
}

.id-card hr {
    border: 0;
    height: 1px;
    background: #ccc;
    margin: 8px 0;
}

.id-card p {
    font-size: 7px;
    margin: 1px;
    color: #999;
    line-height: 1.2;
}

.id-card p strong {
    color: #333;
}



/* Loading Progress Bar */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.loading-progress::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #5b73ff);
    border-radius: 2px;
    animation: loadingProgress 1.5s ease-in-out infinite;
}

.loading-text {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

@keyframes loadingProgress {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}