/* Root Variables */
:root {
    --linear-ease: linear(0, 0.068, 0.19 2.7%, 0.804 8.1%, 1.037, 1.199 13.2%, 1.245, 1.27 15.8%, 1.274, 1.272 17.4%, 1.249 19.1%, 0.996 28%, 0.949, 0.928 33.3%, 0.926, 0.933 36.8%, 1.001 45.6%, 1.013, 1.019 50.8%, 1.018 54.4%, 1 63.1%, 0.995 68%, 1.001 85%, 1);
}

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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(45deg, #0033cc, #6600cc);
    color: white;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Hyperspace animation background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 40px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 30px),
        radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 40px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    animation: hyperspace 20s linear infinite;
    z-index: -1;
}

/* Custom cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #00ff00;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s;
    transform-origin: center center;
    mix-blend-mode: difference;
}

.cursor::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,0,0.5) 0%, rgba(0,255,0,0) 70%);
    animation: pulse 1.5s infinite;
}

.cursor::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,0,0,0.3) 0%, rgba(255,0,0,0) 70%);
    animation: pulse 1.5s infinite 0.5s;
}

.electric-particle {
    position: fixed;
    pointer-events: none;
    width: 4px;
    height: 4px;
    background: #00ff00;
    border-radius: 50%;
    z-index: 9998;
}

.electric-trail {
    position: fixed;
    pointer-events: none;
    width: 2px;
    height: 2px;
    z-index: 9997;
    animation: fadeOut 1s linear forwards;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes spark {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Electric effect for links */
a:hover ~ .cursor {
    transform: scale(1.5);
    border-color: #ff0000;
}

a:hover ~ .cursor::before {
    background: radial-gradient(circle, rgba(255,0,0,0.5) 0%, rgba(255,0,0,0) 70%);
}

a:hover ~ .cursor::after {
    background: radial-gradient(circle, rgba(0,255,0,0.3) 0%, rgba(0,255,0,0) 70%);
}

/* Header Styles */
header {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

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

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #00f;
}

/* Main Content */
main {
    width: 100%;
    margin: 0;
    padding: 6rem 0 2rem;
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.animated-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    color: white;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
}

.highlight {
    background: linear-gradient(45deg, #0066ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s linear infinite;
    background-size: 200% 200%;
}

.animated-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    margin: 0 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0066ff, #00ffff);
    opacity: 1;
    z-index: -1;
    transition: all 0.3s ease;
}

.cta-button:hover::before {
    transform: scale(1.1);
}

.cta-button {
    color: white;
    border: none;
    background: transparent;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #0066ff;
}

.cta-button.secondary:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: #00ffff;
}

/* Floating Devices Animation */
.floating-devices {
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.device-item {
    position: absolute;
    font-size: 2.5rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
}

.device-item.phone {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.device-item.watch {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.device-item.tablet {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.device-item.laptop {
    top: 30%;
    right: 10%;
    animation-delay: 3s;
}

/* Particle Effects */
.hero-particles {
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 10%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-particles::after {
    animation-delay: 2s;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .animated-title {
        font-size: 2.5rem;
    }

    .animated-text {
        font-size: 1rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-button {
        margin: 0;
        width: 80%;
    }

    .device-item {
        font-size: 2rem;
    }

    .content-container {
        padding: 0 1rem;
    }
    
    .hero-content,
    .about-hero .hero-content {
        padding: 0 1rem;
        margin-top: 4rem;
    }
}

/* Brand Sections */
.brand-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: #fff;
    font-size: 2rem;
}

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

/* Enhanced Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

/* Enhanced Product Cards */
.product-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.product-card:hover::before {
    transform: translateX(100%);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.product-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.product-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.product-card .price {
    color: #4CAF50;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 1rem 0;
}

.inquire-btn {
    background: linear-gradient(45deg, #2196F3, #00BCD4);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.inquire-btn:hover {
    background: linear-gradient(45deg, #1976D2, #0097A7);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-section {
        padding: 1rem;
    }

    .brand-title {
        font-size: 1.5rem;
    }

    .brand-logo {
        height: 30px;
    }

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

    .product-card {
        padding: 1rem;
    }

    .product-card h3 {
        font-size: 1.2rem;
    }

    .product-card .price {
        font-size: 1.1rem;
    }
}

/* Footer Styles */
footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #0066ff, transparent);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: #0066ff;
    padding-left: 5px;
}

.social-links-footer {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links-footer a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links-footer a:hover {
    background: #0066ff;
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: #0066ff;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .footer-section ul li a:hover {
        padding-left: 0;
    }

    .contact-info p {
        justify-content: center;
    }
}

/* Animations */
@keyframes hyperspace {
    from {
        transform: translateZ(0px);
        opacity: 0.5;
    }
    to {
        transform: translateZ(400px);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
} 

/* About Page Styles */
.about-section {
    padding: 2rem;
}

.about-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.about-text h2 {
    color: white;
    margin: 1.5rem 0 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.about-text li {
    margin: 0.5rem 0;
}

/* Contact Page Styles */
.contact-section {
    padding: 2rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-section,
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
}

.contact-details {
    margin-top: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

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

.submit-btn {
    background: #00f;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #0000cc;
}

/* Price Styles */
.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00f;
    margin-top: 1rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-section,
    .contact-form {
        padding: 1rem;
    }
} 

/* Gooey Navigation Styles */
.gooey-nav-container {
    position: relative;
}

.gooey-nav-container nav {
    display: flex;
    position: relative;
    transform: translate3d(0, 0, 0.01px);
}

.gooey-nav-container nav ul {
    display: flex;
    gap: 2em;
    list-style: none;
    padding: 0 1em;
    margin: 0;
    position: relative;
    z-index: 3;
    color: white;
    text-shadow: 0 1px 1px hsl(205deg 30% 10% / 0.2);
}

.gooey-nav-container nav ul li {
    position: relative;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.gooey-nav-container nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.gooey-nav-container nav ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    background: linear-gradient(45deg, #0066ff, #00ffff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.gooey-nav-container nav ul li:hover::before,
.gooey-nav-container nav ul li.active::before {
    opacity: 1;
}

.gooey-nav-container nav ul li.active {
    box-shadow: 0 0 15px #0066ff,
                0 0 25px #0066ff,
                0 0 35px #0066ff;
    transform: scale(1.05);
}

.gooey-nav-container nav ul li:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.gooey-nav-container nav ul li.active a {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

@keyframes activeGlow {
    0% {
        box-shadow: 0 0 15px #0066ff,
                    0 0 25px #0066ff,
                    0 0 35px #0066ff;
    }
    50% {
        box-shadow: 0 0 20px #0066ff,
                    0 0 30px #0066ff,
                    0 0 40px #0066ff;
    }
    100% {
        box-shadow: 0 0 15px #0066ff,
                    0 0 25px #0066ff,
                    0 0 35px #0066ff;
    }
}

.gooey-nav-container nav ul li.active {
    animation: activeGlow 2s infinite;
}

.gooey-nav-container .effect {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    opacity: 1;
    pointer-events: none;
    display: grid;
    place-items: center;
    z-index: 1;
}

.gooey-nav-container .effect.text {
    color: white;
    transition: color 0.3s ease;
}

.gooey-nav-container .effect.text.active {
    color: black;
}

.gooey-nav-container .effect.filter {
    filter: blur(7px) contrast(100) blur(0);
    mix-blend-mode: lighten;
}

.gooey-nav-container .effect.filter::before {
    content: "";
    position: absolute;
    inset: -75px;
    z-index: -2;
    background: black;
}

.gooey-nav-container .effect.filter::after {
    content: "";
    position: absolute;
    inset: 0;
    background: white;
    transform: scale(0);
    opacity: 0;
    z-index: -1;
    border-radius: 100vw;
}

.gooey-nav-container .effect.active::after {
    animation: pill 0.3s ease both;
}

/* Particle and Point Styles */
.particle,
.point {
    display: block;
    opacity: 0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    transform-origin: center;
}

.particle {
    --time: 5s;
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 8px);
    animation: particle calc(var(--time)) ease 1 -350ms;
}

.point {
    background: var(--color);
    opacity: 1;
    animation: point calc(var(--time)) ease 1 -350ms;
}

/* Animations */
@keyframes pill {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes particle {
    0% {
        transform: rotate(0deg) translate(calc(var(--start-x)), calc(var(--start-y)));
        opacity: 1;
        animation-timing-function: cubic-bezier(0.55, 0, 1, 0.45);
    }

    70% {
        transform: rotate(calc(var(--rotate) * 0.5)) translate(calc(var(--end-x) * 1.2), calc(var(--end-y) * 1.2));
        opacity: 1;
        animation-timing-function: ease;
    }

    85% {
        transform: rotate(calc(var(--rotate) * 0.66)) translate(calc(var(--end-x)), calc(var(--end-y)));
        opacity: 1;
    }

    100% {
        transform: rotate(calc(var(--rotate) * 1.2)) translate(calc(var(--end-x) * 0.5), calc(var(--end-y) * 0.5));
        opacity: 1;
    }
}

@keyframes point {
    0% {
        transform: scale(0);
        opacity: 0;
        animation-timing-function: cubic-bezier(0.55, 0, 1, 0.45);
    }

    25% {
        transform: scale(calc(var(--scale) * 0.25));
    }

    38% {
        opacity: 1;
    }

    65% {
        transform: scale(var(--scale));
        opacity: 1;
        animation-timing-function: ease;
    }

    85% {
        transform: scale(var(--scale));
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
} 

/* Value Proposition Styles */
.value-proposition {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 2rem 0;
}

.value-proposition h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

@keyframes glowing {
    0% {
        box-shadow: 0 0 5px rgba(0, 102, 255, 0.3),
                    0 0 10px rgba(0, 102, 255, 0.2),
                    0 0 15px rgba(0, 102, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 10px rgba(0, 102, 255, 0.4),
                    0 0 15px rgba(0, 102, 255, 0.3),
                    0 0 20px rgba(0, 102, 255, 0.2);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 102, 255, 0.3),
                    0 0 10px rgba(0, 102, 255, 0.2),
                    0 0 15px rgba(0, 102, 255, 0.1);
    }
}

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

.value-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-card:hover {
    animation: float 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.3),
                0 0 15px rgba(0, 102, 255, 0.2),
                0 0 20px rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.value-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 16px;
    background: linear-gradient(45deg, rgba(0, 102, 255, 0.3), rgba(0, 255, 255, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.value-card:hover::before {
    opacity: 0.5;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    color: #ffffff;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.value-card:hover h3 {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    transition: color 0.3s ease;
    font-weight: 400;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.value-card:hover p {
    color: #ffffff;
}

.value-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #00f;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: white;
    font-size: 1.1rem;
}

/* Responsive adjustments for value proposition */
@media (max-width: 768px) {
    .value-proposition {
        padding: 2rem 1rem;
    }

    .value-proposition h2 {
        font-size: 2rem;
    }

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

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

    .stat-number {
        font-size: 2rem;
    }
}

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

/* Social Media Section Styles */
.social-media {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 2rem 0;
}

.social-media h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

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

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px);
}

.social-btn i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.social-btn .follower-count {
    font-size: 0.9rem;
    opacity: 0.8;
}

.facebook {
    background: linear-gradient(45deg, #1877f2, #0a4da6);
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Trending Posts */
.trending-posts {
    margin-bottom: 3rem;
}

.trending-posts h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.social-post {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.social-post:hover {
    transform: translateY(-10px);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.post-info {
    padding: 1.5rem;
}

.post-info h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.post-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.post-stats {
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Social CTA */
.social-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

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

.social-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

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

.hashtags span {
    background: rgba(0, 0, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    color: white;
    font-size: 0.9rem;
}

/* Responsive adjustments for social media section */
@media (max-width: 768px) {
    .social-media {
        padding: 2rem 1rem;
    }

    .social-links {
        flex-direction: column;
        align-items: stretch;
    }

    .social-btn {
        text-align: center;
    }

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

/* Brands Showcase Styles */
.brands-showcase {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 2rem 0;
    overflow: hidden;
}

.brands-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.brands-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.brands-track {
    display: flex;
    animation: slideshow 20s linear infinite; /* Reduced from original duration */
    width: max-content;
}

.brand-item {
    flex: 0 0 auto;
    padding: 1.5rem 2rem;
    margin: 0 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.brand-item h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
}

@keyframes slideshow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Remove unused styles */
.brand-item img,
.brand-item p {
    display: none;
}

/* Add smooth fade edges */
.brands-slider::before,
.brands-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
}

.brands-slider::before {
    left: 0;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.8), 
        transparent
    );
}

.brands-slider::after {
    right: 0;
    background: linear-gradient(to left, 
        rgba(0, 0, 0, 0.8), 
        transparent
    );
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brands-showcase {
        padding: 2rem 1rem;
    }

    .brand-item {
        width: 200px;
        padding: 1rem;
    }

    .brand-item img {
        width: 80px;
        height: 80px;
    }

    .brand-item h3 {
        font-size: 1.2rem;
    }

    @keyframes slideshow {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 12 - 2rem * 12));
        }
    }
} 

.company-stats {
    padding: 2rem;
    margin-bottom: 2rem;
}

.company-stats h2 {
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
    font-weight: 600;
} 

/* Enhanced Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.floating-btn i {
    font-size: 24px;
    color: #fff;
    transition: transform 0.3s ease;
}

.floating-btn .tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-btn:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-btn {
    background: linear-gradient(145deg, #25d366, #128C7E);
    animation: whatsappPulse 2s infinite;
}

.call-btn {
    background: linear-gradient(145deg, #2196F3, #1976D2);
    animation: buttonPulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-btn:hover i {
    transform: scale(1.2);
}

/* Enhanced Floating Button Visibility */
.enhanced-visibility.floating-buttons {
    z-index: 1100;
}

.enhanced-visibility .floating-btn {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.enhanced-visibility .floating-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.glow-effect {
    position: relative;
    overflow: visible;
}

.button-highlight {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

.whatsapp-btn .button-highlight {
    background: radial-gradient(circle at center, 
        rgba(37, 211, 102, 0.4) 0%,
        rgba(37, 211, 102, 0.2) 50%,
        transparent 70%);
    animation: glowPulseGreen 2s infinite;
}

.call-btn .button-highlight {
    background: radial-gradient(circle at center, 
        rgba(33, 150, 243, 0.4) 0%,
        rgba(33, 150, 243, 0.2) 50%,
        transparent 70%);
    animation: glowPulseBlue 2s infinite;
}

/* Special styling for contact and about pages */
.contact-page .floating-buttons,
.about-page .floating-buttons {
    right: 40px;
    bottom: 40px;
}

.contact-page .floating-btn,
.about-page .floating-btn {
    width: 75px;
    height: 75px;
    border-width: 3px;
}

.contact-page .floating-btn i,
.about-page .floating-btn i {
    font-size: 32px;
}

.contact-page .floating-btn .tooltip,
.about-page .floating-btn .tooltip {
    font-size: 16px;
    padding: 10px 20px;
    right: 85px;
}

/* Enhanced glow animations */
@keyframes glowPulseGreen {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

@keyframes glowPulseBlue {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-page .floating-buttons,
    .about-page .floating-buttons {
        right: 20px;
        bottom: 20px;
    }

    .contact-page .floating-btn,
    .about-page .floating-btn {
        width: 65px;
        height: 65px;
    }

    .contact-page .floating-btn i,
    .about-page .floating-btn i {
        font-size: 28px;
    }

    .enhanced-visibility .floating-btn {
        transform: scale(1.05);
    }

    .enhanced-visibility .floating-btn:hover {
        transform: scale(1.1);
    }
} 

/* Typing Animation */
.typing-text {
    min-height: 30px;
    margin: 1rem 0;
    font-size: 1.2rem;
    color: #00ffff;
}

.cursor {
    display: inline-block;
    width: 2px;
    background-color: #00ffff;
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

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

.shape {
    position: absolute;
    border: 2px solid rgba(0, 102, 255, 0.3);
    animation: shapeFloat 8s ease-in-out infinite;
}

.shape.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid rgba(0, 102, 255, 0.3);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.shape.square {
    width: 40px;
    height: 40px;
    bottom: 30%;
    left: 25%;
    animation-delay: 4s;
}

.shape.hexagon {
    width: 50px;
    height: 30px;
    background: transparent;
    border: 2px solid rgba(0, 102, 255, 0.3);
    top: 40%;
    right: 25%;
    position: absolute;
    animation-delay: 6s;
}

.shape.hexagon:before,
.shape.hexagon:after {
    content: '';
    position: absolute;
    width: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
}

.shape.hexagon:before {
    bottom: 100%;
    border-bottom: 15px solid rgba(0, 102, 255, 0.3);
}

.shape.hexagon:after {
    top: 100%;
    border-top: 15px solid rgba(0, 102, 255, 0.3);
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.7;
    }
}

/* Glowing Lines */
.glowing-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #0066ff, transparent);
    animation: lineMove 8s linear infinite;
}

.line:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.line:nth-child(2) {
    left: 50%;
    animation-delay: 2s;
}

.line:nth-child(3) {
    left: 80%;
    animation-delay: 4s;
}

@keyframes lineMove {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* Ripple Effect */
.ripple-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(0, 102, 255, 0.3);
    border-radius: 50%;
    animation: rippleEffect 4s linear infinite;
}

.ripple:nth-child(1) {
    top: 30%;
    left: 30%;
    animation-delay: 0s;
}

.ripple:nth-child(2) {
    top: 50%;
    right: 30%;
    animation-delay: 1s;
}

.ripple:nth-child(3) {
    bottom: 30%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes rippleEffect {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Enhanced Hover Effects */
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 102, 255, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .geometric-shapes .shape,
    .glowing-lines .line,
    .ripple-container .ripple {
        display: none;
    }

    .typing-text {
        font-size: 1rem;
    }
} 

/* Products Hero Section */
.products-hero {
    position: relative;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    min-height: 80vh;
    background: linear-gradient(135deg, #0f1729 0%, #1a237e 100%);
    margin-bottom: 4rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Hero Text Animations */
.animated-title {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animated-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.animated-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.feature i {
    font-size: 1.5rem;
    color: #2196F3;
}

/* Featured Products Showcase */
.hero-showcase {
    margin-top: 4rem;
}

.showcase-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    perspective: 1000px;
}

.featured-product {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    width: 300px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.6s forwards;
}

.featured-product[data-position="left"] {
    transform: translateX(-100px) rotateY(-15deg);
}

.featured-product[data-position="right"] {
    transform: translateX(100px) rotateY(15deg);
}

.featured-product[data-position="center"] {
    transform: translateY(-30px) scale(1.1);
    z-index: 2;
}

.featured-product:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 3;
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-product:hover .product-image img {
    transform: scale(1.1);
}

.product-details {
    text-align: center;
    color: #fff;
}

.product-details h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.product-details p {
    color: rgba(255, 255, 255, 0.8);
}

/* Glow Effect */
.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: radial-gradient(circle at 50% 50%, 
        rgba(33, 150, 243, 0.3),
        transparent 70%);
}

.featured-product:hover .glow-effect {
    opacity: 1;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 8s infinite;
}

.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #2196F3;
    top: 20%;
    left: 10%;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86.6px solid #2196F3;
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.square {
    width: 80px;
    height: 80px;
    border: 2px solid #2196F3;
    top: 30%;
    right: 10%;
    animation-delay: 2s;
}

.hexagon {
    width: 100px;
    height: 57.735px;
    background: transparent;
    border: 2px solid #2196F3;
    position: absolute;
    top: 70%;
    left: 15%;
    animation-delay: 3s;
}

.hexagon:before,
.hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
}

.hexagon:before {
    bottom: 100%;
    border-bottom: 28.8675px solid #2196F3;
}

.hexagon:after {
    top: 100%;
    border-top: 28.8675px solid #2196F3;
}

/* Tech Lines */
.tech-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent,
        rgba(33, 150, 243, 0.2),
        transparent);
    height: 1px;
    width: 100%;
    animation: scanline 8s linear infinite;
}

.line-1 { top: 20%; animation-delay: 0s; }
.line-2 { top: 50%; animation-delay: 2s; }
.line-3 { top: 80%; animation-delay: 4s; }

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes scanline {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design for Hero Section */
@media (max-width: 1200px) {
    .showcase-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .featured-product[data-position="left"],
    .featured-product[data-position="right"],
    .featured-product[data-position="center"] {
        transform: none;
        width: 280px;
    }

    .featured-product:hover {
        transform: translateY(-5px);
    }

    .animated-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .products-hero {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .animated-features {
        flex-direction: column;
        gap: 1rem;
    }

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

    .animated-subtitle {
        font-size: 1.2rem;
    }

    .featured-product {
        width: 100%;
        max-width: 280px;
    }
} 

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2196F3, transparent);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:hover {
    transform: translateX(10px);
    border-color: rgba(33, 150, 243, 0.3);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-question h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    color: #2196F3;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    margin: 0;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.faq-answer ul {
    margin: 0;
    padding: 0 1.5rem 1.5rem 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.faq-answer li {
    margin: 0.5rem 0;
}

.faq-item.active .faq-question {
    background: rgba(33, 150, 243, 0.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: #fff;
}

/* FAQ Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p,
.faq-answer ul {
    animation: slideDown 0.3s ease-out;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 1rem;
    }

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

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-item:hover {
        transform: none;
    }
} 

/* Fluid Glass Hero Section */
.about-hero {
    position: relative;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 4rem;
}

.about-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.fluid-glass-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glass-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: bubbleFloat 20s infinite;
}

.glass-bubble:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -50px;
    left: 10%;
    animation-delay: 0s;
}

.glass-bubble:nth-child(2) {
    width: 400px;
    height: 400px;
    top: 30%;
    right: -100px;
    animation-delay: -5s;
}

.glass-bubble:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: 30%;
    animation-delay: -10s;
}

.glass-text {
    font-size: 4rem;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.glass-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.glass-stats .stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.glass-stats .stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.glass-stats .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-stats .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.glass-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.glass-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.glass-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.glass-features i {
    font-size: 1.5rem;
    color: #2196F3;
}

.glass-features span {
    color: #fff;
    font-size: 1.1rem;
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(0, 50px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, -30px) rotate(270deg);
    }
}

/* Fluid Glass Responsive Design */
@media (max-width: 1200px) {
    .glass-text {
        font-size: 3rem;
    }

    .glass-stats {
        gap: 2rem;
    }

    .glass-features {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 1rem;
    }

    .glass-text {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .glass-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .glass-stats .stat-item {
        padding: 1.5rem;
    }

    .glass-stats .stat-number {
        font-size: 2.5rem;
    }

    .glass-features {
        flex-direction: column;
        gap: 1rem;
    }

    .glass-features .feature-item {
        width: 100%;
        justify-content: center;
    }

    .glass-bubble {
        opacity: 0.5;
    }
} 

/* About Page Styles */
.about-page {
    background: linear-gradient(45deg, #1a237e, #4a148c);
    min-height: 100vh;
    color: white;
    padding: 2rem;
}

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

/* Hero Section */
.about-hero {
    position: relative;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 4rem;
    border-radius: 20px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    animation: glow 2s ease-in-out infinite alternate;
}

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

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
    animation-delay: -2s;
}

.shape:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 50%;
    animation-delay: -4s;
}

/* Story & Mission Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.about-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.about-card p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Features Section */
.features-section {
    text-align: center;
    padding: 2rem 0;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.feature-card {
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #fff;
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                     0 0 20px rgba(255, 255, 255, 0.8),
                     0 0 30px rgba(255, 255, 255, 0.8);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                     0 0 30px rgba(255, 255, 255, 0.8),
                     0 0 40px rgba(255, 255, 255, 0.8);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .about-container {
        padding: 1rem;
    }
}

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

    .about-card {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
} 

/* Enhanced About Hero Section */
.about-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 4rem;
}

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

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0033cc, #6600cc);
    opacity: 0.3;
    animation: gradientMove 15s ease infinite;
}

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

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, #fff 1px, transparent 1px),
        radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    animation: particleMove 20s linear infinite;
    opacity: 0.3;
}

.particles::after {
    animation-delay: -10s;
    opacity: 0.2;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
}

.about-hero .animated-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    background: linear-gradient(45deg, #fff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.about-hero .hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
    color: rgba(255, 255, 255, 0.9);
}

.about-hero .floating-tech {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.about-hero .tech-item {
    position: absolute;
    font-size: 2.5rem;
    animation: techFloat 6s ease-in-out infinite;
    opacity: 0.7;
}

.about-hero .tech-item.phone {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.about-hero .tech-item.laptop {
    top: 30%;
    right: 25%;
    animation-delay: 1.5s;
}

.about-hero .tech-item.watch {
    bottom: 30%;
    left: 25%;
    animation-delay: 3s;
}

.about-hero .tech-item.tablet {
    bottom: 25%;
    right: 20%;
    animation-delay: 4.5s;
}

.about-hero .geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.about-hero .shape {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: shapeFloat 8s ease-in-out infinite;
}

.about-hero .shape.circle {
    border-radius: 50%;
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.about-hero .shape.triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.about-hero .shape.square {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    transform: rotate(45deg);
}

.about-hero .shape.hexagon {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    bottom: 25%;
    right: 20%;
    animation-delay: 6s;
}

.about-hero .glowing-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.about-hero .line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: lineMove 8s linear infinite;
}

.about-hero .line:nth-child(1) { top: 25%; }
.about-hero .line:nth-child(2) { top: 50%; animation-delay: -2s; }
.about-hero .line:nth-child(3) { top: 75%; animation-delay: -4s; }

@keyframes techFloat {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

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

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

@keyframes lineMove {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
} 