@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&family=Sora:wght@400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Sora', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 50%, #0f0a2e 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    letter-spacing: 0.3px;
}

/* Animated background elements */
.bg-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.glow-1 {
    top: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite;
}

.glow-2 {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* Header */
header {
    position: relative;
    z-index: 10;
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.05);
    padding: 15px;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow-pulse 3s ease-in-out infinite;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

.logo-icon {
    font-size: 2.2em;
    filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.3));
    animation: rotate-slow 8s linear infinite;
}

@keyframes rotate-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation Menu */
nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9em;
    transition: all 0.3s ease;
    text-shadow: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transition: width 0.3s ease;
}

nav a:hover {
    color: #ffffff;
}

nav a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00ffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 4px rgba(0, 255, 255, 0.25);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    padding: 15px;
    flex-direction: column;
    gap: 10px;
    z-index: 20;
    border-left: 3px solid #00ffff;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9em;
    padding: 8px 15px;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.mobile-menu a:hover {
    border-left-color: #00ffff;
    color: #ffffff;
}

@keyframes glow-pulse {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.2)); }
    50% { filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.3)); }
}

.tagline {
    font-size: 1.1em;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
    margin-top: 5px;
    letter-spacing: 2px;
    display: none;
}

/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    z-index: 50;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(37, 211, 102, 0.8), 0 4px 20px rgba(0, 0, 0, 0.4);
        transform: scale(1.1);
    }
}

.whatsapp-button:hover {
    transform: scale(1.2);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.9), 0 6px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
    color: white;
    font-size: 1.6em;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #25d366;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    text-shadow: 0 0 5px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Main Container */
.container {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Text Slider */
.text-slider {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 50%, rgba(0, 255, 255, 0.03) 100%);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.text-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.text-slider::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: radial-gradient(circle at 100% 50%, rgba(255, 0, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.slider-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.slider-item {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    padding: 0 40px;
}

.slider-item.active {
    opacity: 1;
}

.slider-item h1 {
    font-size: 4em;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
    letter-spacing: -1px;
    font-family: 'Sora', sans-serif;
    text-shadow: 0 10px 20px rgba(0, 255, 255, 0.1);
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.15));
}

.slider-item p {
    font-size: 1.4em;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.3px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Slider Dots */
.slider-dots {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    gap: 12px;
    z-index: 20;
    background: rgba(10, 14, 39, 0.5);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    width: 30px;
    border-radius: 5px;
}

/* Categories Grid */
.categories-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-top: 10px;
    margin-bottom: 30px;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    letter-spacing: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Category Card */
.category-card {
    position: relative;
    padding: 40px 30px;
    border: 2px solid transparent;
    border-radius: 15px;
    background: rgba(20, 20, 50, 0.6);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    text-align: center;
    transform: translateY(0);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card.neon-cyan {
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.25), inset 0 0 10px rgba(0, 255, 255, 0.05);
}

.category-card.neon-magenta {
    border-color: #ff00ff;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.25), inset 0 0 10px rgba(255, 0, 255, 0.05);
}

.category-card.neon-yellow {
    border-color: #ffff00;
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.25), inset 0 0 10px rgba(255, 255, 0, 0.05);
}

.category-card.neon-lime {
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.25), inset 0 0 10px rgba(0, 255, 0, 0.05);
}

.category-card.neon-pink {
    border-color: #ff10f0;
    box-shadow: 0 0 10px rgba(255, 16, 240, 0.25), inset 0 0 10px rgba(255, 16, 240, 0.05);
}

.category-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.15);
}

.card-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px currentColor);
}

.category-card.neon-cyan .card-icon { color: #00ffff; }
.category-card.neon-magenta .card-icon { color: #ff00ff; }
.category-card.neon-yellow .card-icon { color: #ffff00; }
.category-card.neon-lime .card-icon { color: #00ff00; }
.category-card.neon-pink .card-icon { color: #ff10f0; }

.category-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.category-card p {
    color: #b0e0e6;
    margin-bottom: 25px;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Build Button */
.build-btn {
    padding: 12px 30px;
    font-size: 1em;
    font-weight: 600;
    border: 2px solid currentColor;
    background: transparent;
    color: inherit;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-card.neon-cyan .build-btn {
    color: #00ffff;
    border-color: #00ffff;
}

.category-card.neon-magenta .build-btn {
    color: #ff00ff;
    border-color: #ff00ff;
}

.category-card.neon-yellow .build-btn {
    color: #ffff00;
    border-color: #ffff00;
}

.category-card.neon-lime .build-btn {
    color: #00ff00;
    border-color: #00ff00;
}

.category-card.neon-pink .build-btn {
    color: #ff10f0;
    border-color: #ff10f0;
}

.build-btn:hover {
    background: currentColor;
    color: #ffffff;
    font-weight: 700;
    transform: scale(1.05);
    box-shadow: 0 0 8px currentColor;
}

/* Custom Category Card */
.custom-card {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/* Features Section */
.features {
    margin-top: 80px;
    padding: 50px;
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 15px;
    background: rgba(20, 20, 50, 0.4);
    backdrop-filter: blur(10px);
}

.features h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.6);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    font-size: 2.5em;
    color: #00ffff;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.4));
}

.feature-item h3 {
    color: #ffff00;
    margin-bottom: 5px;
    text-shadow: 0 0 4px rgba(255, 255, 0, 0.25);
}

.feature-item p {
    color: #b0e0e6;
    font-size: 0.95em;
}

/* Footer */
footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    border-top: 2px solid rgba(0, 255, 255, 0.3);
    margin-top: 60px;
    color: #00ffff;
}

footer p {
    font-size: 1em;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.2);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 100%);
    margin: 5% auto;
    padding: 40px;
    border: 2px solid #00ffff;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    color: #00ffff;
    float: right;
    font-size: 2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.close-btn:hover {
    color: #ff00ff;
    text-shadow: 0 0 5px rgba(255, 0, 255, 0.4);
}

.modal h2 {
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
    margin-bottom: 20px;
    font-size: 2em;
}

.modal p {
    color: #b0e0e6;
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    font-weight: 700;
    color: #00ffff;
    background: transparent;
    border: 2px solid #00ffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
}

.modal-btn:hover {
    background: #00ffff;
    color: #0a0e27;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

/* About Us Page Styles */
.about-section {
    padding: 60px 20px;
    text-align: center;
}

.about-hero {
    margin-bottom: 80px;
}

.about-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

.about-hero p {
    font-size: 1.3em;
    color: #b0e0e6;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.about-card {
    padding: 40px;
    border: 2px solid #00ffff;
    border-radius: 15px;
    background: rgba(20, 20, 50, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    transition: all 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.about-card h2 {
    font-size: 2em;
    color: #00ffff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.about-card p {
    color: #b0e0e6;
    line-height: 1.8;
    font-size: 1.05em;
}

.vision-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.4));
}

.team-section {
    margin-top: 80px;
    padding: 50px;
    border: 2px solid rgba(255, 0, 255, 0.4);
    border-radius: 15px;
    background: rgba(20, 20, 50, 0.4);
}

.team-section h2 {
    font-size: 2.5em;
    color: #ff00ff;
    margin-bottom: 60px;
    text-shadow: 0 0 5px rgba(255, 0, 255, 0.3);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    padding: 30px;
    border: 2px solid #ff10f0;
    border-radius: 15px;
    background: rgba(20, 20, 50, 0.6);
    box-shadow: 0 0 8px rgba(255, 16, 240, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(255, 16, 240, 0.4);
}

.member-icon {
    font-size: 3em;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(255, 16, 240, 0.8));
}

.team-member h3 {
    color: #ff10f0;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.team-member p {
    color: #b0e0e6;
    font-size: 0.95em;
}

.cta-section {
    margin-top: 80px;
    padding: 50px;
    border: 2px solid #ffff00;
    border-radius: 15px;
    background: rgba(20, 20, 50, 0.4);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5em;
    color: #ffff00;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(255, 255, 0, 0.3);
}

.cta-section p {
    font-size: 1.2em;
    color: #b0e0e6;
    margin-bottom: 30px;
}

.cta-btn {
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: 700;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #0a0e27;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.25);
}

.cta-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .header-content {
        width: 100%;
    }

    nav {
        display: none;
        gap: 20px;
    }

    .hamburger {
        display: flex;
    }

    .slider-item h1 {
        font-size: 2.2em;
    }

    .slider-item p {
        font-size: 1.1em;
    }

    .text-slider {
        height: 350px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 1.5em;
    }

    .category-card {
        padding: 30px 20px;
    }

    .features {
        padding: 30px 20px;
    }

    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6em;
    }

    .about-hero h1 {
        font-size: 2.2em;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .team-section h2 {
        font-size: 2em;
    }

    .cta-section h2 {
        font-size: 2em;
    }
}