:root {
    --primary-color: #0061ff;
    /* Deep Navy/Blue */
    --secondary-color: #60a5fa;
    /* Sky Blue */
    --accent-color: #3b82f6;
    --dark-bg: #ffffff;
    /* White background */
    --card-bg: #f8fafc;
    /* Very light gray/white */
    --text-dark: #0f172a;
    /* Slate 900 */
    --text-body: #334155;
    /* Slate 700 */
    --text-muted: #64748b;
    /* Slate 500 */
    --border-color: #e2e8f0;
    /* Soft gray border */
    --transition-speed: 0.3s;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-body);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none !important;
    transition: all 0.3s ease;
}

/* --- Background Mesh Gradient --- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 97, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reveal-item {
    display: inline-block;
}

/* --- Section Styling --- */
section {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 80px;
    text-align: center;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* --- Status Popup Modal --- */
.status-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.status-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.status-popup-card {
    background: #fff;
    width: 90%;
    max-width: 450px;
    padding: 50px 40px;
    border-radius: 32px;
    text-align: center;
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.status-popup-overlay.active .status-popup-card {
    transform: scale(1) translateY(0);
}

.status-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
}

.status-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: status-pulse 2s infinite;
}

.status-success .status-icon-wrapper {
    background: rgba(0, 97, 255, 0.1);
    color: var(--primary-color);
}

.status-success .status-icon-wrapper::after {
    box-shadow: 0 0 0 rgba(0, 97, 255, 0.4);
}

.status-error .status-icon-wrapper {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-error .status-icon-wrapper::after {
    box-shadow: 0 0 0 rgba(239, 68, 68, 0.4);
}

@keyframes status-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 97, 255, 0.2);
        opacity: 1;
    }

    70% {
        transform: scale(1.3);
        box-shadow: 0 0 0 20px rgba(0, 97, 255, 0);
        opacity: 0;
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 97, 255, 0);
        opacity: 0;
    }
}

.status-popup-card h3 {
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.status-popup-card p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.status-popup-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.status-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 97, 255, 0.2);
}

/* --- Navigation --- */
.navbar {
    padding: 24px 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-bottom: 1px solid transparent;
}

/* Scroll Progress Bar */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: var(--scroll-percent, 0%);
    z-index: 1001;
    transition: width 0.1s ease-out;
}

.backdrop-blur {
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background: rgba(255, 255, 255, 0.1) !important;
}

.navbar.bg-dark {
    padding: 12px 0 !important;
    background: var(--primary-color) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark) !important;
    padding: 10px 0 !important;
    margin: 0 18px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.navbar.bg-dark .nav-link {
    color: #ffffff !important;
}

/* Sliding Underline Effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar.bg-dark .nav-link::after {
    background: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar.bg-dark .nav-link:hover {
    color: #ffffff !important;
    opacity: 0.8;
}

.nav-link i {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    margin-right: 8px;
    font-size: 1rem;
}

.nav-link:hover i {
    transform: translateY(-3px) scale(1.1);
    color: var(--primary-color);
}

.nav-link.active i {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Navbar Toggle Animation */
.navbar-toggler {
    padding: 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-icon {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    display: block;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.bg-dark .toggler-icon {
    background-color: #ffffff;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    opacity: 1;
}

.navbar.bg-dark .nav-link.active,
.navbar.bg-dark .nav-link:hover {
    color: #ffffff !important;
    opacity: 1;
}

.navbar.bg-dark .text-dark,
.navbar.bg-dark .text-primary {
    color: #ffffff !important;
}

.logo-img {
    height: 42px;
    width: 42px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(0, 97, 255, 0.1);
    background: #fff;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar-brand:hover .logo-img {
    transform: rotate(360deg) scale(1.1);
}

.animated-name {
    display: inline-block;
    background: linear-gradient(90deg, #0f172a, var(--primary-color), #0f172a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-text 3s linear infinite;
    font-weight: 800;
    letter-spacing: 1px;
}

@keyframes shine-text {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* --- Social Cards --- */
.social-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.social-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--primary-color) !important;
}

.social-card .btn-primary-custom:hover {
    transform: translateY(-2px) scale(1.02);
}

.transition-all {
    transition: all 0.3s ease;
}

/* --- Footer Custom Styles --- */
footer.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004ecc 100%) !important;
}

footer.bg-primary .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer.bg-primary .social-links-footer a {
    color: rgba(255, 255, 255, 0.8);
}

footer.bg-primary .social-links-footer a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.hover-primary:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
    display: inline-block;
}

.hover-light:hover {
    color: #ffffff !important;
    transform: translateX(5px);
    display: inline-block;
}

.social-links-footer a {
    transition: all 0.3s ease;
    display: inline-block;
    color: #94a3b8;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}

.hover-white:hover {
    color: #ffffff !important;
}

footer .footer-nav a {
    transition: all 0.3s ease;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* --- FAQ Section --- */
.faq-accordion .accordion-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px !important;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion .accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 97, 255, 0.05);
}

.faq-accordion .accordion-button {
    padding: 25px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    background: transparent !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\f068';
    color: var(--primary-color);
    transform: rotate(180deg);
}

.faq-accordion .accordion-body {
    padding: 0 30px 30px;
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) rotate(15deg);
    color: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- Buttons --- */
.btn-primary-custom {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(0, 97, 255, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    background: #0056e0;
    box-shadow: 0 15px 25px -5px rgba(0, 97, 255, 0.4);
    color: #fff;
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    padding: 12px 32px;
    border-radius: 100px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* --- About / Vision Section --- */
.vision-feature-item {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vision-feature-item:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 97, 255, 0.05);
}

.vision-icon-sm {
    width: 45px;
    height: 45px;
    background: #eff6ff;
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.vision-feature-item:hover .vision-icon-sm {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(360deg);
}

.vision-card-container:hover .vision-card-bg {
    transform: translate(15px, 15px);
    opacity: 0.1;
}

.vision-card-bg {
    transition: all 0.5s ease;
}

.stat-item {
    padding: 15px;
    border-left: 3px solid #eff6ff;
    transition: all 0.3s ease;
}

.vision-card-container:hover .stat-item {
    border-left-color: var(--primary-color);
}

/* --- Hero Section --- */
.hero {
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 70vh;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-shape {
    display: none;
}

/* --- Global Sections & Utilities --- */
section {
    padding: 120px 0;
}

.innovation-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 97, 255, 0.05);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 97, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 0 rgba(0, 97, 255, 0.2);
    animation: badge-glow 2s infinite alternate;
}

@keyframes badge-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 97, 255, 0.1);
    }

    100% {
        box-shadow: 0 0 15px 5px rgba(0, 97, 255, 0.2);
    }
}

/* --- Cards & Features --- */
.custom-card {
    background: #ffffff;
    border: 1px solid rgba(0, 97, 255, 0.08);
    border-radius: 28px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.custom-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 97, 255, 0.08);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 97, 255, 0.05);
    color: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.custom-card:hover .icon-box {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

/* --- Vision Items (About Section) --- */
.vision-feature-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 97, 255, 0.05);
    transition: all 0.3s ease;
}

.vision-feature-item:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 97, 255, 0.05);
    transform: translateX(5px);
}

.vision-icon-sm {
    width: 40px;
    height: 40px;
    background: rgba(0, 97, 255, 0.05);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Animated Headline --- */
.headline-reveal {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 992px) {
    .headline-reveal {
        justify-content: flex-start;
    }
}

.reveal-item {
    display: inline-block;
    margin-right: 0.15em;
    transform: translateY(100%);
    opacity: 0;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero .reveal-item {
    font-size: 0.7em;
}

.hero .badge-ai {
    font-size: 0.6em;
}

[data-aos="reveal-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

.headline-rollup {
    overflow: hidden;
}

.reveal-item[data-aos="rollup"] {
    transform: translateY(110%) rotateX(-90deg);
    transform-origin: top;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-item[data-aos="rollup"].aos-animate {
    transform: translateY(0) rotateX(0deg);
    opacity: 1;
}

.reveal-item-special {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00d2ff 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.badge-ai {
    background: var(--primary-color);
    color: #fff;
    padding: 2px 15px;
    border-radius: 12px;
    font-size: 0.6em;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 97, 255, 0.3);
    animation: pulse-ai 2s infinite ease-in-out;
}

@keyframes pulse-ai {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 97, 255, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(0, 97, 255, 0.5);
    }
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-visual-wrapper {
    padding: 30px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-mockup img {
    border: 8px solid #fff;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.main-mockup:hover img {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.floating-tech {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    /* Glassmorphism background */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 18px 28px;
    border-radius: 24px;
    z-index: 2;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Refined border */
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    /* Softer shadow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-tech:hover {
    transform: translateY(-10px) scale(1.05) !important;
    background: rgba(255, 255, 255, 0.3);
    /* Slightly more opaque on hover */
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 97, 255, 0.15);
}

/* --- Tech Tree Effects --- */
.tech-tree-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.tech-branch {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2px;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0.15;
    animation: grow-branch 3s forwards;
    animation-delay: 1.5s;
}

@keyframes grow-branch {
    to {
        stroke-dashoffset: 0;
    }
}

.tech-hub-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0, 97, 255, 0.1) 0%, transparent 70%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-glow 4s infinite ease-in-out;
}

/* Organic Tree Swaying - Visible Spread Positions */
.tech-card-1 {
    top: 5%;
    left: 5%;
    animation: sway-1 8s infinite ease-in-out;
}

.tech-card-2 {
    top: 15%;
    right: 5%;
    animation: sway-2 7s infinite ease-in-out;
}

.tech-card-3 {
    bottom: 8%;
    left: 8%;
    animation: sway-3 9s infinite ease-in-out;
}

.tech-card-4 {
    bottom: 20%;
    right: 5%;
    animation: sway-1 6s infinite ease-in-out;
}

.tech-card-5 {
    top: 60%;
    left: 2%;
    animation: sway-2 8.5s infinite ease-in-out;
}

.tech-card-6 {
    top: 10%;
    right: 35%;
    animation: sway-3 7.5s infinite ease-in-out;
}

@keyframes sway-1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(2deg);
    }

    50% {
        transform: translate(15px, -10px) rotate(-2deg);
    }
}

@keyframes sway-2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(-1deg);
    }

    50% {
        transform: translate(-15px, 10px) rotate(3deg);
    }
}

@keyframes sway-3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(10px, 15px) rotate(-4deg);
    }
}

.tech-hub-core i {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.15;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.mouse {
    width: 25px;
    height: 42px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
    opacity: 0.6;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    opacity: 0.5;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* --- Hero Feature Grid --- */
.hero-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.hero-grid-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 97, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-grid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 97, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-grid-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 97, 255, 0.08);
}

.hero-grid-card:hover::before {
    opacity: 1;
}

.hero-grid-card i {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.5s ease;
}

.hero-grid-card:hover i {
    transform: rotateY(360deg);
}

.hero-grid-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.hero-grid-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

.hero-visual-wrapper {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card {
    position: relative;
    z-index: 1;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(0, 97, 255, 0.05);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 97, 255, 0.3);
}

.service-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover h4 {
    color: var(--primary-color);
}

.service-card ul li i {
    transition: transform 0.3s ease;
}

.service-card:hover ul li i {
    transform: scale(1.2);
}

/* --- Pricing Plans --- */
.pricing-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(0, 97, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    background: linear-gradient(180deg, #ffffff 0%, rgba(0, 97, 255, 0.02) 100%);
    box-shadow: 0 25px 50px -12px rgba(0, 97, 255, 0.15);
}

.pricing-card.popular::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.pricing-card .plan-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 97, 255, 0.05);
    color: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.pricing-card:hover .plan-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1) rotate(10deg);
}

.inr-equivalent {
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
    height: 0;
    overflow: hidden;
}

.pricing-card:hover .inr-equivalent,
.pricing-card:focus-within .inr-equivalent {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-top: 10px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -1px;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 5px;
}

.price-period {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

.plan-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-body);
}

.plan-features li i {
    width: 24px;
    height: 24px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-right: 15px;
}

.badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 97, 255, 0.2);
}

@media (max-width: 991px) {
    .pricing-card {
        padding: 30px;
    }

    .badge-popular {
        top: 15px;
        right: 15px;
    }
}

/* --- FAQ --- */
.accordion-item {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
    border-radius: 20px !important;
}

.accordion-button {
    background: transparent !important;
    color: var(--text-dark) !important;
    font-weight: 700;
    padding: 20px;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: none;
}

/* --- Contact --- */
.form-control {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
}

.form-control:focus {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 97, 255, 0.1);
}

/* --- Founder Section --- */
.founder-profile {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 50px;
    align-items: center;
    background: #ffffff;
    border-radius: 32px;
}

.founder-img-container {
    position: relative;
    background: rgba(0, 97, 255, 0.02);
    border: 1px solid rgba(0, 97, 255, 0.05);
    border-radius: 28px;
    padding: 12px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.founder-img:hover {
    transform: scale(1.05) rotate(-2deg);
}

.founder-content h3 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.founder-socials a {
    width: 48px;
    height: 48px;
    background: rgba(0, 97, 255, 0.05);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-right: 12px;
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.founder-socials a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 97, 255, 0.15);
}

@media (max-width: 991px) {
    .founder-profile {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
        text-align: center;
    }

    .founder-img-container::before {
        display: none;
    }
}

/* --- Mobile Bottom Navigation (Premium) --- */
.mobile-bottom-nav {
    position: fixed;
    bottom: 25px;
    left: 20px;
    right: 20px;
    z-index: 999;
}

.bottom-nav-container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 12px 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.bottom-nav-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 60px;
    position: relative;
}

.bottom-nav-link i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.bottom-nav-link span {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bottom-nav-link.active {
    color: var(--primary-color);
}

.bottom-nav-link.active i {
    transform: translateY(-2px);
}

.bottom-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
}

.bottom-nav-link.call-special {
    background: var(--primary-color);
    color: #fff !important;
    width: 65px;
    height: 65px;
    border-radius: 20px;
    justify-content: center;
    margin-top: -35px;
    box-shadow: 0 10px 20px rgba(0, 97, 255, 0.3);
    border: 4px solid #fff;
}

.bottom-nav-link.call-special i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.bottom-nav-link.call-special span {
    font-size: 0.6rem;
}

.bottom-nav-link.call-special:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 97, 255, 0.4);
}

/* --- Footer --- */
footer {
    background: #0f172a !important;
    /* Keep footer dark for contrast */
}

footer .text-muted,
footer .navbar-brand {
    color: rgba(255, 255, 255, 0.7) !important;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }
}

/* --- Social Cards (Innovation Channel) --- */
.social-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.social-card.youtube-card:hover {
    border-color: #ff0000 !important;
}

.social-card.instagram-card:hover {
    border-color: #e1306c !important;
}

.social-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* --- Investor Pitch Styles --- */
.icon-box-sm {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.custom-card:hover .icon-box-sm {
    transform: scale(1.1);
    background: var(--primary-color) !important;
    color: #fff !important;
}

/* --- Investor Pitch Section --- */
.investor-pitch-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
}

.investor-pitch-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 97, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(96, 165, 250, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.pitch-card {
    background: #ffffff;
    border: 1px solid rgba(0, 97, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pitch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.pitch-card:hover::before {
    transform: scaleX(1);
}

.pitch-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-color);
    box-shadow:
        0 20px 40px -10px rgba(0, 97, 255, 0.15),
        0 0 0 1px rgba(0, 97, 255, 0.1);
}

.pitch-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 97, 255, 0.08) 0%, rgba(96, 165, 250, 0.08) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pitch-card-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.pitch-card:hover .pitch-card-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.pitch-card:hover .pitch-card-icon::after {
    opacity: 0.2;
}