:root {
    /* Primary Colors */
    --primary-peacock: #007A8C;
    --primary-royal: #0056b3;
    --primary-navy: #0A192F;
    --primary-cyan: #00F2FF;
    --white: #FFFFFF;
    --soft-gray: #F8F9FA;
    --text-main: #E6F1FF;
    --text-muted: #8892B0;
    
    /* Accents */
    --accent-teal: #64FFDA;
    --gradient-blue: linear-gradient(135deg, #007A8C 0%, #00F2FF 100%);
    --glass-bg: rgba(10, 25, 47, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(0, 242, 255, 0.3);
    
    /* Fonts */
    --font-inter: 'Inter', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
}

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

body {
    background-color: var(--primary-navy);
    color: var(--text-main);
    font-family: var(--font-inter);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-poppins);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

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

/* --- Buttons --- */
.btn-primary {
    background: var(--gradient-blue);
    color: var(--primary-navy);
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-poppins);
    border: none;
    cursor: pointer;
    display: inline-block;
    box-shadow: var(--shadow-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-teal);
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-poppins);
    border: 1px solid var(--accent-teal);
    cursor: pointer;
    display: inline-block;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(100, 255, 218, 0.1);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: 0.4s ease;
    backdrop-filter: blur(0);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-img-large {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-poppins);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-teal);
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    cursor: pointer;
}

/* --- Footer --- */
.footer {
    background: #020c1b;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-trust h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-trust ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-trust ul li i {
    color: var(--primary-cyan);
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.social-links a {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.social-links a:hover {
    color: var(--primary-cyan);
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--accent-teal);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-contact ul li i {
    color: var(--primary-cyan);
}

.footer-trust-elements {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-trust-elements span {
    font-size: 0.85rem;
    color: var(--accent-teal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.footer-trust-elements span i {
    width: 16px;
    height: 16px;
}

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

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

/* --- Mobile Menu --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary-navy);
    z-index: 2000;
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-poppins);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .whatsapp-float span {
        display: none;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .stat-item h2 {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}

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

.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
    filter: blur(100px);
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.text-gradient {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-item i {
    color: var(--accent-teal);
    width: 18px;
    height: 18px;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.card-1 { top: 10%; left: -10%; }
.card-2 { bottom: 20%; right: -5%; }
.card-3 { top: 50%; left: -20%; }

.icon-cyan { color: var(--primary-cyan); }
.icon-teal { color: var(--accent-teal); }
.icon-blue { color: var(--primary-royal); }

.hero-main-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
}

.code-window {
    width: 380px;
    background: #0d1117;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.window-header {
    background: #161b22;
    padding: 10px 15px;
    display: flex;
    gap: 6px;
}

.window-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.window-header span:nth-child(1) { background: #ff5f56; }
.window-header span:nth-child(2) { background: #ffbd2e; }
.window-header span:nth-child(3) { background: #27c93f; }

.window-body {
    padding: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
}

.code-keyword { color: #ff7b72; }
.code-class { color: #d2a8ff; }
.code-func { color: #79c0ff; }

/* --- Stats Section --- */
.stats-section {
    padding: 4rem 0;
    background: rgba(2, 12, 27, 0.5);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
}

.stat-item span {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    color: var(--accent-teal);
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Services Grid --- */
.services-section {
    padding: 8rem 0;
}

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

.service-card {
    position: relative;
    overflow: hidden;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-cyan);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-tech {
    font-size: 0.85rem;
    color: var(--accent-teal);
    font-weight: 500;
}

/* --- Cloud Section --- */
.cloud-section {
    padding: 8rem 0;
    background: radial-gradient(circle at left, rgba(0, 122, 140, 0.1) 0%, transparent 50%);
}

.cloud-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.cloud-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.server-node {
    width: 150px;
    height: 150px;
    background: var(--glass-bg);
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-cyan);
    z-index: 2;
}

.cloud-features {
    margin-top: 2rem;
}

.cloud-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.cloud-features li i {
    color: var(--accent-teal);
}

/* --- Tech Section --- */
.tech-section {
    padding: 6rem 0;
    overflow: hidden;
}

.tech-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 2rem;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: 4rem;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: 0.3s;
}

.tech-item:hover {
    color: var(--primary-cyan);
}

/* --- Portfolio Section --- */
.portfolio-preview {
    padding: 8rem 0;
}

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

.portfolio-card {
    padding: 0;
    overflow: hidden;
}

.portfolio-img {
    height: 200px;
    background: rgba(0, 122, 140, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-cyan);
    border-bottom: 1px solid var(--glass-border);
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-info h3 {
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.link-btn {
    color: var(--accent-teal);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all {
    text-align: center;
}

/* --- Testimonials --- */
.testimonials-section {
    padding: 8rem 0;
}

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

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-main);
    margin: 1.5rem 0;
}

.quote-icon {
    color: var(--primary-cyan);
    font-size: 2rem;
}

.client-info {
    margin-top: 2rem;
}

.client-name {
    font-weight: 700;
    color: var(--white);
}

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

/* --- Page Headers --- */
.page-header {
    padding: 12rem 0 6rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 122, 140, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Services Detail --- */
.services-detail {
    padding: 6rem 0;
}

.service-detail-card {
    padding: 3rem;
    height: 100%;
}

.service-detail-card h2 {
    margin-bottom: 1.5rem;
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.feature-list li::before {
    content: '→';
    color: var(--accent-teal);
    font-weight: 700;
}

/* --- Service Categories --- */
.service-category-wrapper {
    margin-bottom: 6rem;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-cyan);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.category-title i {
    width: 32px;
    height: 32px;
}

/* --- About Page --- */
.about-content {
    padding: 6rem 0;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

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

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

.value-item i {
    font-size: 2rem;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 0.9rem;
    color: var(--white);
}

.about-card {
    text-align: center;
    padding: 4rem 2rem;
}

.about-icon {
    font-size: 4rem;
    color: var(--accent-teal);
    margin-bottom: 2rem;
}

/* --- Portfolio Page --- */
.portfolio-detail {
    padding: 6rem 0;
}

.tech-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}

/* --- Technologies Page --- */
.tech-detail {
    padding: 6rem 0;
}

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

.tech-category h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--white);
    border-left: 4px solid var(--primary-cyan);
    padding-left: 1.5rem;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.tech-badge:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
}

.tech-badge i {
    color: var(--primary-cyan);
}

/* --- CTA Section --- */
.cta-section {
    padding: 8rem 0;
}

.cta-card {
    background: var(--gradient-blue);
    padding: 5rem;
    border-radius: 24px;
    text-align: center;
    color: var(--primary-navy);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-card h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.cta-card .btn-primary {
    background: var(--primary-navy);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


/* --- Contact Page --- */
.contact-section {
    padding: 6rem 0;
}

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

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

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan);
    font-size: 1.2rem;
}

.info-item h4 {
    color: var(--white);
    margin-bottom: 0.3rem;
}

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

.contact-form {
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    color: var(--white);
    font-family: var(--font-inter);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: rgba(255, 255, 255, 0.08);
}
/* --- Login Page --- */
.login-section {
    padding: 12rem 0;
    display: flex;
    justify-content: center;
}

.login-container {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-header h2 {
    font-size: 2rem;
    margin-top: 1rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.forgot-password {
    color: var(--primary-cyan);
}

.full-width {
    width: 100%;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
}

.login-footer a {
    color: var(--primary-cyan);
    font-weight: 600;
}

/* --- Dashboard --- */
.dashboard-section {
    padding: 10rem 0 6rem;
    background: #020c1b;
    min-height: 100vh;
}

.dashboard-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

.dashboard-sidebar {
    height: fit-content;
    padding: 2rem 1.5rem;
}

.dash-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.dash-logo img {
    height: 35px;
    width: auto;
}

.dash-logo span {
    font-family: var(--font-poppins);
    font-weight: 800;
    font-size: 1rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-navy);
}

.user-avatar.admin {
    background: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%);
}

.user-info h4 {
    font-size: 1rem;
    color: var(--white);
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dash-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dash-nav a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    color: var(--text-muted);
    font-weight: 500;
}

.dash-nav a:hover, .dash-nav a.active {
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary-cyan);
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.stat-card {
    padding: 1.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 2rem;
    color: var(--white);
    margin-top: 0.5rem;
}

.dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.dash-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.project-item {
    margin-bottom: 2rem;
}

.project-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.project-name h4 {
    font-size: 0.95rem;
}

.project-name span {
    font-size: 0.8rem;
    color: var(--accent-teal);
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress {
    height: 100%;
    background: var(--gradient-blue);
    border-radius: 10px;
}

.progress-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.activity-item {
    display: flex;
    gap: 1rem;
}

.activity-item i {
    margin-top: 0.2rem;
}

.activity-info p {
    font-size: 0.9rem;
}

.activity-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.text-success { color: #27c93f; }
.text-blue { color: var(--primary-cyan); }

/* --- Admin Dashboard Extra --- */
.status-badge {
    background: rgba(39, 201, 63, 0.1);
    color: #27c93f;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0px rgba(39, 201, 63, 0.4); }
    100% { box-shadow: 0 0 0 10px rgba(39, 201, 63, 0); }
}

.server-item {
    margin-bottom: 1.5rem;
}

.server-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-dot.online { background: #27c93f; }

.load-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.load {
    height: 100%;
    background: var(--primary-cyan);
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
}

.dash-table th {
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-bottom: 1rem;
}

.dash-table td {
    padding: 1rem 0;
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
}

.badge {
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge.active { background: rgba(39, 201, 63, 0.1); color: #27c93f; }
.badge.pending { background: rgba(255, 189, 46, 0.1); color: #ffbd2e; }

@media (max-width: 1024px) {
    .dashboard-container { grid-template-columns: 1fr; }
    .dashboard-sidebar { display: none; }
}

@media (max-width: 768px) {
    .dash-stats { grid-template-columns: 1fr; }
    .dash-grid { grid-template-columns: 1fr; }
}

/* --- Careers Page --- */
.careers-content {
    padding: 6rem 0;
}

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

.benefit-card {
    text-align: center;
    padding: 3rem 2rem;
}

.benefit-card i {
    font-size: 3rem;
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
}

.open-positions {
    margin-top: 6rem;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.position-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.position-info h3 {
    margin-bottom: 0.5rem;
}

.position-info p {
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .position-item { flex-direction: column; text-align: center; gap: 1.5rem; }
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

/* --- Process Section --- */
.process-section {
    padding: 8rem 0;
    background: rgba(10, 25, 47, 0.3);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    margin-top: 4rem;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--glass-border);
    z-index: 1;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 90px;
    height: 90px;
    background: var(--primary-navy);
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.step-item h4 {
    margin-bottom: 0.8rem;
    color: var(--white);
}

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

/* --- Products Section --- */
.products-section {
    padding: 8rem 0;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
}

.product-visual {
    background: var(--gradient-blue);
    height: 300px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-navy);
    box-shadow: var(--shadow-glow);
}

.product-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.product-features {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
}

.product-features li i {
    color: var(--accent-teal);
}

/* --- Why Choose Section --- */
.why-choose-section {
    padding: 8rem 0;
}

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

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

.why-item i {
    font-size: 2.5rem;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
}

/* --- Industries Section --- */
.industries-section {
    padding: 8rem 0;
    background: rgba(0, 242, 255, 0.02);
}

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

.industry-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 8rem 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem 2rem;
}

.faq-question {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Consultation Badge --- */
.consultation-hook {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(100, 255, 218, 0.1);
    border: 1px dashed var(--accent-teal);
    border-radius: 12px;
    display: inline-block;
}

.consultation-hook strong {
    color: var(--accent-teal);
}

@media (max-width: 1024px) {
    .process-steps { flex-direction: column; align-items: center; }
    .process-steps::before { display: none; }
    .product-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
}

