/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Body */
body {
    background: #ffffff;
    color: #fff;
}

/* Navbar */
/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(16px);
    padding-top: 10px;
    /* border-bottom: 1px solid rgba(0, 180, 255, 0.15); */
}

/* Container */
.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 16px 24px;
    width: 92%;
    background: rgba(0, 27, 84, 0.7);
    display: flex;
    border-radius: 60px;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    font-size: 20px;
    font-weight: 600;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-container .logo img {
    width: 100px;

}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #cbd5e1;
    font-size: 15px;
    position: relative;
    transition: 0.3s;
}

/* Hover underline animation */
.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -6px;
    background: linear-gradient(135deg, #00B4FF, #0068D1);
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00B4FF;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Login */
.login {
    text-decoration: none;
    color: #94a3b8;
    font-size: 14px;
    transition: 0.3s;
}

.login:hover {
    color: #00B4FF;
}

/* Primary Button */
.btn-primary {
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;

    background: linear-gradient(135deg, #00B4FF, #0068D1);
    color: #fff;

    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0, 180, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 180, 255, 0.6);
}

/* Mobile Menu Icon */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #00B4FF;
}

/* Mobile CTA */
.mobile-cta {
    display: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;

        flex-direction: column;
        align-items: center;
        gap: 20px;

        background: rgba(5, 11, 24, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 180, 255, 0.15);

        padding: 25px 0;

        /* Animation instead of display none */
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;

        transition: all 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Nav links style */
    .nav-links a {
        font-size: 16px;
        color: #cbd5e1;
    }

    .nav-links a:hover {
        color: #00B4FF;
    }

    /* Hide desktop actions */
    .nav-actions {
        display: none;
    }

    /* Menu icon */
    .menu-toggle {
        display: block;
        font-size: 24px;
        color: #00B4FF;
        cursor: pointer;
    }

    /* Mobile CTA */
    .mobile-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 10px;
        width: 80%;
    }

    .mobile-cta .btn-primary {
        width: 100%;
        text-align: center;
        padding: 12px;
        border-radius: 8px;
    }
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
    background: #050b18;
    color: #fff;
    margin-top: -100px;
}

/* Gradient Glow Background (UPDATED COLORS) */
.hero-bg {
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(0, 180, 255, 0.35), transparent);
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(140px);
    z-index: 0;
}

/* Optional secondary glow */
.hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 104, 209, 0.25), transparent);
    bottom: -150px;
    right: -100px;
    filter: blur(120px);
}

/* Content */
.hero-content {
    position: relative;
    max-width: 820px;
    margin: auto;
    z-index: 2;
}

.hero-content .badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 180, 255, 0.1);
    border: 1px solid rgba(0, 180, 255, 0.3);
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
    color: #00B4FF;
    position: inherit;
    top: inherit;
    left: inherit;
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
}

/* Gradient Text Highlight */
.hero h1 span {
    background: linear-gradient(135deg, #00B4FF, #0068D1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheading {
    margin-top: 20px;
    font-size: 16px;
    color: #cbd5e1;
}

/* CTA */
.hero-cta {
    margin-top: 35px;
}

.btn {
    padding: 12px 24px;
    border-radius: 10px;
    margin: 0 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.hero-cta .btn.primary {
    background: linear-gradient(135deg, #00B4FF, #0068D1);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 180, 255, 0.4);
}

.hero-cta .btn.primary:hover {
    box-shadow: 0 12px 35px rgba(0, 180, 255, 0.6);
    transform: translateY(-2px);
}

.hero-cta .btn.secondary {
    border: 1px solid rgba(0, 180, 255, 0.4);
    color: #00B4FF;
    background: rgba(0, 180, 255, 0.05);
}

.hero-cta .btn.secondary:hover {
    background: rgba(0, 180, 255, 0.1);
}

/* Floating Cards */
.hero-visuals {
    position: relative;
    margin-top: 70px;
    height: 220px;
}

.hero-visuals .card {
    position: absolute;
    padding: 14px 20px;
    border-radius: 14px;
    backdrop-filter: blur(14px);
    background: rgba(0, 180, 255, 0.08);
    border: 1px solid rgba(0, 180, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 104, 209, 0.3);
    font-size: 14px;
    animation: float 6s infinite ease-in-out;
}

/* Positions */
.hero-visuals .card-1 {
    left: 18%;
    top: 20px;
}

.hero-visuals .card-2 {
    left: 50%;
    top: 90px;
    transform: translateX(-50%);
}

.hero-visuals .card-3 {
    right: 18%;
    top: 30px;
}

/* Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 34px;
    }

    .hero-visuals {
        height: 160px;
        display: none;
    }

    .card {
        font-size: 12px;
        padding: 10px 14px;
    }
}

/* about section  */
.about {
    padding: 50px 20px;
    background: #111828;
    color: #fff;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* Header */
.section-tag {
    color: #00B4FF;
    font-size: 13px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-desc {
    max-width: 700px;
    margin: auto;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
}

/* Cards */
.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.about-card {
    padding: 30px 20px;
    border-radius: 16px;

    background: rgba(0, 180, 255, 0.06);
    border: 1px solid rgba(0, 180, 255, 0.15);

    backdrop-filter: blur(12px);
    transition: 0.3s;
}

.about-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.about-card p {
    color: #cbd5e1;
    font-size: 14px;
}

/* Hover effect */
.about-card:hover {
    transform: translateY(-6px);
    border-color: #00B4FF;
    box-shadow: 0 10px 30px rgba(0, 180, 255, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .about h2 {
        font-size: 26px;
    }

    .about-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}


/* SECTION */
.features {
    padding: 50px 20px;
    color: #fff;
    position: relative;
    background: #050b18;
    overflow: hidden;
}

.features::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 255, 0.25), transparent);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(120px);
}

.features::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 104, 209, 0.2), transparent);
    bottom: -150px;
    right: -100px;
    filter: blur(120px);
}

.features-container {
    max-width: 1100px;
    margin: auto;
}

/* Header */
.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 34px;
}

.section-tag {
    color: #00B4FF;
    font-size: 13px;
    margin-bottom: 10px;
}

/* Timeline */
.features-timeline {
    position: relative;
    margin-top: 40px;
}

/* Center line */
.features-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(#00B4FF, #0068D1);
    transform: translateX(-50%);
}

/* Items */
.feature-item {
    width: 50%;
    padding: 20px 40px;
    position: relative;
}

.feature-item.left {
    text-align: right;
}

.feature-item.right {
    margin-left: 50%;
}

/* Cards */
.feature-card {
    display: inline-block;
    max-width: 360px;
    padding: 24px;
    border-radius: 16px;

    background: rgba(0, 180, 255, 0.06);
    border: 1px solid rgba(0, 180, 255, 0.15);
    backdrop-filter: blur(12px);

    transition: 0.3s;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    color: #e9e6e6;
    font-size: 14px;
}

/* Hover */
.feature-card:hover {
    transform: translateY(-6px);
    border-color: #00B4FF;
    box-shadow: 0 10px 30px rgba(0, 180, 255, 0.25);
}

/* Dots */
.feature-item::before {
    content: "";
    position: absolute;
    top: 30px;
    width: 12px;
    height: 12px;
    background: #00B4FF;
    border-radius: 50%;
    box-shadow: 0 0 10px #00B4FF;
}

.feature-item.left::before {
    right: -6px;
}

.feature-item.right::before {
    left: -6px;
}

/* Responsive */
@media (max-width: 768px) {

    .features-timeline::before {
        left: 8px;
    }

    .feature-item {
        width: 100%;
        padding-left: 30px;
        margin-bottom: 30px;
    }

    .feature-item.right {
        margin-left: 0;
    }

    .feature-item.left {
        text-align: left;
    }

    .feature-item::before {
        left: 1px;
    }

    .feature-item.right::before {
        left: 1px;
    }
}

/* dashboard */
.showcase {
    padding: 50px 20px;
    background: #111828;
    color: #fff;
}

.showcase-container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-header h2 {
    font-size: 34px;
}

/* Grid Layout */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 20px;
}

/* Card Base */
.showcase-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;

    background: rgba(0, 180, 255, 0.05);
    border: 1px solid rgba(0, 180, 255, 0.15);

    backdrop-filter: blur(10px);
    cursor: pointer;
}

/* Image */
.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.4s ease;
}

/* Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top,
            rgba(5, 11, 24, 0.9),
            transparent);

    opacity: 0;
    transition: 0.3s;
}

.overlay h3 {
    font-size: 18px;
}

/* Hover Effects */
.showcase-card:hover img {
    transform: scale(1.08);
}

.showcase-card:hover .overlay {
    opacity: 1;
}

/* Special Sizes */
.showcase-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.showcase-card.wide {
    grid-column: span 2;
}

/* Responsive */
@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .showcase-card.large,
    .showcase-card.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* flow diagram */
.dataflow {
    padding: 50px 20px;
    background: #050b18;
    color: #fff;
    text-align: center;
}

/* Header */
.dataflow-header h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.dataflow-desc {
    color: #cbd5e1;
    max-width: 650px;
    margin: auto;
}

/* Flow Layout */
.flow-wrapper {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Step */
.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    padding: 20px;
    border-radius: 16px;

    background: rgba(0, 180, 255, 0.06);
    border: 1px solid rgba(0, 180, 255, 0.15);

    backdrop-filter: blur(10px);
    min-width: 140px;

    transition: 0.3s;
}

.flow-step .icon {
    font-size: 28px;
}

.flow-step p {
    font-size: 14px;
    color: #cbd5e1;
}

/* Highlight final step */
.flow-step.highlight {
    border-color: #00B4FF;
    box-shadow: 0 10px 30px rgba(0, 180, 255, 0.3);
}

/* Hover */
.flow-step:hover {
    transform: translateY(-6px);
}

/* Connecting line */
.flow-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #00B4FF, #0068D1);
    position: relative;
}

/* Animated flow effect */
.flow-line::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: #00B4FF;
    animation: flowMove 2s linear infinite;
}

@keyframes flowMove {
    0% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {

    .flow-wrapper {
        flex-direction: column;
    }

    .flow-line {
        width: 2px;
        height: 40px;
    }

    .flow-line::after {
        width: 2px;
        height: 10px;
        animation: flowMoveVertical 2s linear infinite;
    }

    @keyframes flowMoveVertical {
        0% {
            top: 0;
        }

        100% {
            top: 100%;
        }
    }
}

/* impact */
.impact {
    padding: 50px 20px;
    color: #fff;
    text-align: center;
    position: relative;
    background: #050b18;
    overflow: hidden;
}

.impact::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 255, 0.25), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(120px);
}

.impact::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 104, 209, 0.2), transparent);
    bottom: -100px;
    right: -100px;
    filter: blur(100px);
}

/* Header */
.impact-header h2 {
    font-size: 34px;
    margin-bottom: 50px;
}

/* Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: auto;
}

/* Cards */
.impact-card {
    padding: 40px 20px;
    border-radius: 18px;

    background: rgba(0, 180, 255, 0.06);
    border: 1px solid rgba(0, 180, 255, 0.15);

    backdrop-filter: blur(12px);
    transition: 0.3s;
}

.impact-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.impact-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;

    background: linear-gradient(135deg, #00B4FF, #0068D1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.impact-card p {
    font-size: 14px;
    color: #cbd5e1;
}

/* Hover */
.impact-card:hover {
    transform: translateY(-8px);
    border-color: #00B4FF;
    box-shadow: 0 12px 35px rgba(0, 180, 255, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

/* roles */
.roles {
    padding: 50px 20px;
    background: #050b18;
    color: #fff;
}

.roles-container {
    max-width: 1100px;
    margin: auto;
}

/* Layout */
.roles-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 50px;
}

/* Tabs */
.roles-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.role-tab {
    padding: 14px 16px;
    border-radius: 10px;
    cursor: pointer;

    background: rgba(0, 180, 255, 0.05);
    border: 1px solid rgba(0, 180, 255, 0.1);

    transition: 0.3s;
    color: #cbd5e1;
}

.role-tab:hover {
    background: rgba(0, 180, 255, 0.1);
}

.role-tab.active {
    background: linear-gradient(135deg, #00B4FF, #0068D1);
    color: #fff;
    border-color: transparent;
}

/* Content */
.roles-content {
    position: relative;
}

.role-content {
    display: none;
}

.role-content.active {
    display: block;
}

.role-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.role-content p {
    color: #cbd5e1;
    margin-bottom: 20px;
}

/* Preview Box */
.preview {
    height: 200px;
    border-radius: 16px;

    background: rgba(0, 180, 255, 0.06);
    border: 1px solid rgba(0, 180, 255, 0.15);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    color: #94a3b8;

    backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 768px) {
    .roles-layout {
        grid-template-columns: 1fr;
    }

    .roles-tabs {
        flex-direction: row;
        overflow-x: auto;
    }
}

/* footer */
.footer {
    background: linear-gradient(to right, #050b18, #0068D1);
    color: #cbd5e1;
    padding: 40px 20px 30px;
    border-top: 1px solid rgba(0, 180, 255, 0.08);
}

/* Container */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Brand */
.footer-col.brand p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
}

/* Logo */
.footer .logo img {
    width: 140px;
}

.footer .logo {
    display: inline-block;
}

/* Headings */
.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Links */
.footer-col a {
    display: block;
    text-decoration: none;
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #00B4FF;
}

/* Socials */
.socials {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(0, 180, 255, 0.08);
    border: 1px solid rgba(0, 180, 255, 0.2);

    transition: 0.3s;
}

.socials a:hover {
    background: linear-gradient(135deg, #00B4FF, #0068D1);
    color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 180, 255, 0.08);
    font-size: 13px;
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }
}


/* contact-us page */
/* SECTION */
.contact {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px;
    position: relative;
    overflow: hidden;
    background: #050b18;
    margin-top: -100px;
}

/* GLOW BACKGROUND */
.bg-blur {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 255, 0.3), transparent);
    filter: blur(120px);
    top: -120px;
    left: -120px;
}

/* EXTRA GLOW */
.contact::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 104, 209, 0.25), transparent);
    bottom: -120px;
    right: -120px;
    filter: blur(120px);
}

/* WRAPPER */
.contact-wrapper {
    display: flex;
    max-width: 1100px;
    width: 100%;
    gap: 50px;
    z-index: 1;
}

/* LEFT */
.contact-left {
    flex: 1;
    color: #fff;
}

.contact-left h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-left p {
    color: #94a3b8;
    margin-bottom: 20px;
}

.contact-details div {
    margin-bottom: 10px;
    color: #cbd5e1;
}

/* CARD */
.contact-card {
    flex: 1;
    padding: 30px;
    border-radius: 20px;

    background: rgba(0, 180, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 180, 255, 0.2);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* INPUT GROUP */
.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(0, 180, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    outline: none;
    transition: 0.3s;
}

/* FOCUS EFFECT */
.input-group input:focus,
.input-group textarea:focus {
    border-color: #00B4FF;
    box-shadow: 0 0 0 2px rgba(0, 180, 255, 0.2);
}

textarea {
    height: 100px;
    resize: none;
}

/* FLOATING LABEL */
.input-group label {
    position: absolute;
    left: 12px;
    top: 12px;
    color: #94a3b8;
    font-size: 14px;
    pointer-events: none;
    transition: 0.3s;
    background: #050b18;
    padding: 0 5px;
}

.input-group input:focus+label,
.input-group input:valid+label,
.input-group textarea:focus+label,
.input-group textarea:valid+label {
    top: -8px;
    font-size: 12px;
    color: #00B4FF;
}

/* ERROR */
.error {
    font-size: 12px;
    color: #ff6b6b;
}

/* BUTTON */
.btn-submit {
    width: 100%;
    padding: 14px;
    border-radius: 999px;
    border: none;
    cursor: pointer;

    background: linear-gradient(135deg, #00B4FF, #0068D1);
    color: #fff;
    font-weight: 600;

    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 180, 255, 0.5);
}

/* LOADER */
.loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* SUCCESS */
#successmsg {
    margin-top: 15px;
    color: #00B4FF;
    font-weight: 500;
    text-align: center;
}

.contact-map {
    /* margin-top: 60px;
    border-radius: 20px; */
    overflow: hidden;

    border: 1px solid rgba(0, 180, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.contact-extra {
    margin-top: 20px;
    color: #cbd5e1;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-left h1 {
        font-size: 30px;
    }
}


/* pricing page */
.pricing {
    padding: 150px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -100px;

    background:
        radial-gradient(at 20% 30%, rgba(0, 180, 255, 0.25), transparent 50%),
        radial-gradient(at 80% 70%, rgba(0, 104, 209, 0.25), transparent 50%),
        #050b18;
}

/* TITLE */
.section-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-subtext {
    color: #d6c2b9;
    margin-bottom: 50px;
}

/* GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.pricing-card {
    background: rgba(0, 180, 255, 0.05);
    border: 1px solid rgba(0, 180, 255, 0.2);
    padding: 32px;
    border-radius: 20px;

    backdrop-filter: blur(20px);
    transition: 0.4s;
    position: relative;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Hover Glow */
.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #00B4FF;
    box-shadow: 0 20px 60px rgba(0, 180, 255, 0.25);
}

/* POPULAR */
.popular {
    transform: scale(1.06);
    border: 1px solid #00B4FF;
    box-shadow: 0 20px 70px rgba(0, 180, 255, 0.4);
}

/* Glow ring */
.popular::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    /* background: linear-gradient(135deg, #00B4FF, #0068D1); */
    z-index: -1;
    filter: blur(12px);
}


/* BADGE */
.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);

    background: linear-gradient(135deg, #00B4FF, #0068D1);
    color: #fff;

    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
}

/* PRICE */
.price {
    font-size: 36px;
    margin: 20px 0;
    font-weight: 600;

    background: linear-gradient(135deg, #00B4FF, #0068D1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price span {
    font-size: 14px;
    color: #94a3b8;
}

/* LIST */
.pricing-card ul {
    list-style: none;
    margin: 20px 0;
}

.pricing-card ul li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #cbd5e1;
}

/* BUTTONS */
/* Primary */
.pricing .btn-primary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;

    background: linear-gradient(135deg, #00B4FF, #0068D1);
    color: #fff;
    text-decoration: none;

    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0, 180, 255, 0.35);
}

.pricing .btn-primary:hover {
    transform: translateY(-2px);
}

/* Outline */
.pricing .btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;

    border: 1px solid rgba(0, 180, 255, 0.4);
    color: #00B4FF;
    text-decoration: none;

    background: rgba(0, 180, 255, 0.05);
}

/* MOBILE */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .popular {
        transform: none;
    }
}

/* popup css */
/* BUTTON */
.demo-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #00B4FF, #0068D1);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 180, 255, 0.35);
    transition: 0.3s;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 180, 255, 0.6);
}

/* BACKDROP */
.demo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.demo-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* POPUP */
.demo-popup {
    position: fixed;
    top: 0;
    left: -420px;
    width: 380px;
    height: 100vh;

    background: white;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);

    padding: 20px;
    z-index: 1000;

    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.demo-popup.active {
    left: 0;
}

/* HEADER */
.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.popup-header h3 {
    margin: 0;
    color: #0f172a;
}

.popup-header span {
    font-size: 22px;
    cursor: pointer;
    color: #0f172a;
}

/* FORM */
.demo-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
}

.demo-form textarea {
    resize: none;
    height: 80px;
}

/* BUTTON */
.demo-form button {
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 999px;
    color: white;

    background: linear-gradient(135deg, #0052CC, #5C89CD);
    cursor: pointer;
}

/* SUCCESS MESSAGE */
.success-message {
    display: none;
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;

    font-size: 13px;
    text-align: center;

    color: #065f46;
    background: #d1fae5;
    border: 1px solid #6ee7b7;
}

/* SHOW STATE */
.success-message.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ERROR */
.error {
    color: #ff6b6b;
    font-size: 13px !important;
    min-height: 18px;
}

/* SUCCESS */
.success {
    color: #00B4FF;
    font-weight: 500;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* SHAKE */
.shake {
    animation: shake 0.3s;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-6px);
    }

    50% {
        transform: translateX(6px);
    }

    75% {
        transform: translateX(-6px);
    }

    100% {
        transform: translateX(0);
    }
}