:root {
    --primary: #4B0082;
    /* Indigo */
    --secondary: #00BFFF;
    /* Deep Sky Blue */
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(15, 23, 42, 0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--light);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--secondary);
    opacity: 1;
}

.btn-nav {
    background: var(--gradient);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    opacity: 1 !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Sections General */
section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 10rem;
    background: radial-gradient(circle at 50% 50%, rgba(75, 0, 130, 0.1) 0%, rgba(15, 23, 42, 1) 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(0, 191, 255, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 191, 255, 0.2);
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--gradient);
    color: white;
}

.btn-secondary {
    background: var(--glass);
    color: white;
    border: 1px solid var(--glass-border);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-visual {
    position: relative;
    height: 400px;
}

.tech-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(60px);
    opacity: 0.3;
    animation: blobMorph 10s infinite;
}

.icon-box {
    position: absolute;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    color: var(--secondary);
    animation: floating 4s ease-in-out infinite;
}

.ib-1 {
    top: 10%;
    right: 10%;
}

.ib-2 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.ib-3 {
    top: 60%;
    right: 40%;
    animation-delay: 2s;
}

/* Problems Section */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.problem-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
}

.problem-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
}

.problem-item i {
    color: #ff4757;
    margin-bottom: 1.5rem;
}

.problem-item h3 {
    margin-bottom: 1rem;
}

.problem-item p {
    color: var(--gray);
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 24px;
    transition: var(--transition);
}

.solution-card:hover {
    background: rgba(75, 0, 130, 0.1);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

/* Benefits Section */
.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.benefits-list i {
    color: var(--secondary);
}

.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.stats {
    display: flex;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    opacity: 0.1;
    margin-bottom: -2rem;
}

.step h3 {
    margin-bottom: 1rem;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.profile-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: var(--gradient);
    border-radius: 40px;
    padding: 10px;
}

.profile-bg {
    width: 100%;
    height: 100%;
    background: url('profile.png') center/cover no-repeat;
    border-radius: 30px;
}

/* CTA Final */
.cta-final {
    text-align: center;
}

.cta-final h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    margin-top: 2rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    background: #128c7e;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--gray);
}

/* Animations */
@keyframes blobMorph {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {

    .hero-container,
    .benefits-container,
    .about-container,
    .contact-grid,
    .contact-info {
        grid-template-columns: 1fr;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }

    .contact-action {
        width: 100%;
    }

    .whatsapp-btn {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .benefits-image {
        order: -1;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .problems-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Tech Section */
.tech-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tech-group {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
}

.tech-group h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    font-size: 1.2rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tech-tags span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.tech-tags span:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.erps-info {
    text-align: center;
    background: linear-gradient(90deg, rgba(75, 0, 130, 0.1), rgba(0, 191, 255, 0.1));
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.erps-info h3 {
    margin-bottom: 1rem;
    color: var(--light);
}

.erps-info p {
    font-size: 1.2rem;
    color: var(--gray);
}

.erps-info strong {
    color: var(--secondary);
}

/* Awards Section */
.awards-section {
    padding: 8rem 0;
}

.awards-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.awards-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.award-item {
    display: flex;
    gap: 1.5rem;
    background: var(--glass);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 1.5rem;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.award-item:hover {
    transform: scale(1.02);
    border-color: var(--secondary);
}

.award-item i {
    color: #ffd700;
    width: 32px;
    height: 32px;
}

.award-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--light);
}

.award-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .awards-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .award-item {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .btn {
        width: 100%;
    }

    .hero-btns {
        flex-direction: column;
    }
}