/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and background */
body {
    font-family: 'Courier New', Courier, monospace;
    /* color: white; */
    /* background: linear-gradient(270deg, #0ff3e0, #1f2937, #0ff3e0, #1a202c); */
    /* background: radial-gradient(circle at 20% 40%, #00fff322 0%, transparent 70%); */
    background: radial-gradient(circle at 20% 40%, #00fff322 0%, transparent 70%);
    background-size: 800% 800%;
    animation: gradientMove 15s ease infinite;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;

    background: linear-gradient(135deg, #001820, #003545);
    background-size: 800% 800%;
    animation: gradientMove 15s ease infinite;
    /* background-color: rgba(31, 41, 55, 0.85); */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    flex-wrap: wrap;
}

/* Logo */
/* .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.8rem;
    color: #0ff3e0;
    letter-spacing: 1.2px;
    text-decoration: none;
    user-select: none;
}

.nav-logo svg {
    filter: drop-shadow(0 0 3px #00fff3cc);
} */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-size: 1.8rem;
    color: #0ff3e0;
    letter-spacing: 1.2px;
    text-decoration: none;
    user-select: none;
    height: 100%;
}

/* .nav-logo img {
    height: 52px;  
    width: auto;
    object-fit: contain;
    display: block;
} */
.logo-img {
    height: 32px;
    /* or whatever fits your navbar */
    width: auto;
    display: block;
}


/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    font-weight: 650;
}

.nav-links li a {
    text-decoration: none;
    color: #0ff3e0;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #00fff3;
}

/* Toggle button (hidden on desktop) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
}

.nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #00fff3;
    border-radius: 2px;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .nav-left {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        list-style: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease;
        gap: 0.25rem;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        font-size: 0.8rem;
        padding: 0.6rem 0.1rem;
        white-space: nowrap;
        color: #0ff3e0;
    }

    .nav-links.show-menu {
        max-height: 300px;
        /* Adjust based on link count */
    }
}








/* HERO STYLES */
/* HERO STYLES */

/* HERO SECTION */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #001820, #003545);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 40%, #00fff322 0%, transparent 70%);
    animation: pulseGlow 6s infinite ease-in-out;
    z-index: 1;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    text-align: left;
    padding: 0 1rem;
}

.hero-left {
    flex: 0 0 75%;
}

/* Hero Title */
#hero-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #00ffd1;
    text-shadow: 0 0 20px #00ffd1cc, 0 0 30px #00ffd1aa;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 0.12em;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    border-bottom: 2px solid #00ffc3aa;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    height: 4rem;
    overflow: hidden;
}

#hero-main-title::after {
    margin-left: 6px;
    animation: blink 1.2s steps(2, start) infinite;
    color: #00ffd1;
    font-weight: 800;
}

@keyframes bounceIn {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }

    60% {
        transform: translateY(10px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatTitle {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 2rem;
    color: #bafcfc;
    min-height: 2.2rem;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    height: 3rem;
    /* Adjust as needed */

}

.hero-pitch {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #c0f0f2;
    max-width: 800px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1.1rem 2.5rem;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px #00fff3aa;
}

.btn-primary {
    background: #00fff3;
    color: #00222e;
    border: none;
}

.btn-primary:hover {
    background: #00e5db;
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: #00fff3;
    border: 2px solid #00fff3;
}

.btn-secondary:hover {
    background: #002c3d;
    transform: scale(1.05);
}

/* Responsive Layout */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .hero-left {
        flex: 1 1 100%;
    }

    #hero-main-title {
        font-size: 2.2rem;
        height: 8rem;
        overflow: hidden;
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        white-space: normal;
        height: 4rem;
        /* Adjust as needed */
        overflow: hidden;
    }

    .hero-pitch {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    #hero-main-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-pitch {
        font-size: 1rem;
    }
}
































/* === SERVICES SECTION === */

.services-section {
    background: linear-gradient(135deg, #001820, #003545);
    position: relative;
    overflow: hidden;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 0;
}

.services-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 40%, #1d232322 0%, transparent 70%);
    animation: pulseGlow 6s infinite ease-in-out;
    z-index: 1;
}

/* Typed Title Container */
#services-typed-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 2.5rem auto;
    z-index: 2;
}

.services_typed-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #00ffd1;
    text-shadow: 0 0 20px #00ffd1cc, 0 0 30px #00ffd1aa;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 0.06em;
    display: inline-block;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    /* border-right: 2px solid #00ffd1aa; */
    animation: blinkCursor 1s step-end infinite;
    height: 4rem;
}

/* Cursor Blink */
@keyframes blinkCursor {

    0%,
    49% {
        border-color: #00ffd1aa;
    }

    50%,
    100% {
        border-color: transparent;
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    z-index: 2;
}

/* Card Styles */
.service-card {
    border: 1.5px solid #00fff3aa;
    padding: 2rem 1.8rem;
    border-radius: 1rem;
    box-shadow: 0 0 18px #00fff3bb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(12px);
    color: #cceeee;
    text-align: center;
    user-select: none;
    position: relative;
    min-height: 280px;
}

/* Icon in Card */
.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 5px #00fff3dd);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

/* Title */
.service-card h3.card-title {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    font-size: 1.4rem;
    color: #00fff3;
    letter-spacing: 0.07em;
    position: relative;
    min-height: 1.8em;
    display: inline-block;
    height: 3rem;
}

.service-card h3.card-title::after {
    content: '|';
    animation: blink 1.2s steps(2, start) infinite;
    margin-left: 4px;
    color: #00fff3;
}

/* Description */
.service-card p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-top: 0.8rem;
    color: #b2e6e9;
}

/* Hover */
.service-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 0 35px #00fff3ee;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .services_typed-title {
        font-size: 2.1rem;
        letter-spacing: 0.08em;
    }

    .service-card {
        padding: 1.6rem 1.2rem;
    }

    .service-icon {
        font-size: 2.6rem;
    }

    .service-card h3.card-title {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services_typed-title {
        font-size: 1.8rem;
        text-align: center;
        white-space: normal;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        min-height: auto;
    }
}

/* Optional Glow Animation for Overlay */
@keyframes pulseGlow {

    0%,
    100% {
        background: radial-gradient(circle at 20% 40%, #1d232322 0%, transparent 70%);
    }

    50% {
        background: radial-gradient(circle at 20% 40%, #1d232355 0%, transparent 70%);
    }
}





















/* ===== Products Section ===== */
/* ===== PRODUCTS SECTION ===== */

.products-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #0a1e2c 0%, #023047 100%);
    text-align: center;
    color: #a0e7e5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Typed Title Container */
#products-typed-wrapper {
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Typed Title */
#products-typed-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #00ffd1;
    text-shadow: 0 0 20px #00ffd1cc, 0 0 30px #00ffd1aa;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 0.12em;
    display: inline-block;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    /* border-right: 2px solid #00ffd1aa; */
    animation: blinkCursor 1.1s step-end infinite;
    height: 4rem;
}

/* Subtitle */
.products-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #80fff7cc;
    font-weight: 500;
}

/* Grid Container */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Product Card */
.product-card {
    background: rgba(0, 255, 209, 0.07);
    border: 1px solid #00ffd1aa;
    padding: 2rem 1.6rem;
    border-radius: 1rem;
    box-shadow: 0 0 20px #00ffd1aa;
    backdrop-filter: blur(12px);
    color: #00ffd1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    position: relative;
}

/* Hover Effects */
.product-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 0 40px #00ffd1ee;
}

.product-icon {
    font-size: 3.6rem;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 5px #00ffd1bb);
    transition: transform 0.3s ease;
}

.product-card:hover .product-icon {
    transform: rotate(10deg) scale(1.1);
}

/* Product Title with Typing Effect */
.product-title {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #00ffd1;
    letter-spacing: 0.06em;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    min-height: 2.1em;
    max-width: 100%;
    text-align: center;
    height: 3rem;
}

.product-title::after {
    /* content: '|'; */
    animation: blink 1.2s steps(2, start) infinite;
    position: absolute;
    right: -0.2em;
    color: #00ffd1;
}

/* Description */
.product-desc {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #a0fffaff;
    flex-grow: 1;
}

/* Demo Button */
.demo-btn {
    background: #00ffd1;
    color: #002d33;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 15px #00ffd1bb;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.demo-btn:hover {
    background-color: #00b28c;
    box-shadow: 0 0 30px #00b28ccc;
}

/* Blinking Animations */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes blinkCursor {

    0%,
    49% {
        border-color: #00ffd1aa;
    }

    50%,
    100% {
        border-color: transparent;
    }
}

/* === RESPONSIVENESS === */
@media (max-width: 768px) {
    #products-typed-title {
        font-size: 2.2rem;
        white-space: normal;
    }

    .products-subtitle {
        font-size: 1.15rem;
    }

    .product-icon {
        font-size: 3rem;
    }

    .product-title {
        font-size: 1.4rem;
        white-space: nowrap;
    }

    .product-desc {
        font-size: 1rem;
    }

    .demo-btn {
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 480px) {
    #products-typed-title {
        font-size: 1.9rem;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .products-grid {
        gap: 1.5rem;
    }

    .product-card {
        min-height: auto;
        padding: 1.6rem 1.2rem;
    }
}





/* Clients Section */
.clients-section {
    padding: 4rem 1rem 6rem;
    /* background: linear-gradient(to bottom, #001820, #003545); */
    background: radial-gradient(circle at 20% 40%, #00fff322 0%, transparent 70%);
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.clients-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #00fff3;
    text-shadow: 0 0 10px #00fff3aa;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.client-card {
    max-width: 140px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    user-select: none;
    text-align: center;
}

.client-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #00fff3cc;
}

.logo-indicator {
    animation: glow 2s infinite ease-in-out;
    padding: 1rem;
    border-radius: 1rem;
}

.client-card img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 2px #00fff3cc);
}

.client-label {
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #00fff3;
    letter-spacing: 0.5px;
    min-height: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
}

/* Animations */
@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 18px #00fff3, 0 0 24px #00fff3;
    }

    50% {
        box-shadow: 0 0 28px #00fff3, 0 0 40px #00fff3;
    }
}

/* Responsive Tweaks */
@media (max-width: 600px) {
    .clients-section h2 {
        font-size: 2rem;
    }

    .client-label {
        font-size: 0.9rem;
    }

    .client-card img {
        height: 50px;
    }
}








/* === About Us Section === */
.about-section {
    background: linear-gradient(135deg, #021f2f 0%, #03344d 100%);
    color: #c0f7f7;
    padding: 6rem 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container.split-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    box-sizing: border-box;
}

/* Panels */
.interactive-panel,
.global-panel {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    padding: 1rem;
}

/* Animated Titles */
.animated-title {
    font-family: 'Courier New', monospace;
    font-size: 2.2rem;
    color: #00fff3;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    /* border-right: 2px solid #00fff3aa; */
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    animation: blinkCursor 1s step-start infinite;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    height: 6rem;

}

/* Prevent text from dancing on retyping */
.animated-title::after {
    content: "";
    display: inline-block;
    width: 0.1em;
    background-color: #00fff3;
    animation: blinkCursor 1s step-start infinite;
}

@keyframes blinkCursor {
    50% {
        border-color: transparent;
    }
}

/* Buttons Group */
.buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.info-btn {
    background: transparent;
    border: 2px solid #00ffc3;
    color: #00ffc3;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 0 10px #00ffc3aa;
    letter-spacing: 0.05em;
    user-select: none;
}

.info-btn:hover {
    background: #00ffc3;
    color: #021f2f;
    box-shadow: 0 0 30px #00ffc3ee;
}

.info-btn.active {
    background: #00ffc3;
    color: #021f2f;
    box-shadow: 0 0 40px #00ffc3ff;
}

/* Info Content */
.info-content {
    position: relative;
    min-height: 270px;
    width: 100%;
    box-sizing: border-box;
}

.info-block {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.info-block.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.info-block h2 {
    font-size: 2rem;
    color: #00fff3;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #00fff3cc;
    padding-bottom: 0.3rem;
}

.info-block p,
.info-block ul {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #a4f9e9;
}

.info-block ul {
    padding-left: 1.3rem;
    list-style: none;
}

.info-block ul li {
    margin-bottom: 0.8rem;
    position: relative;
}

.info-block ul li::before {
    content: '✔';
    color: #00fff3;
    position: absolute;
    left: -1.3rem;
    font-weight: 700;
}

/* Right Panel */
.global-panel {
    text-align: left;
    justify-content: center;
    color: #b0e9ea;
    font-size: 1.15rem;
    line-height: 1.65;
    animation: fadeInRight 1.2s ease forwards;
    box-sizing: border-box;
}

.global-panel h2 {
    color: #00ffc3;
    font-size: 2.4rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    border-bottom: 2px solid #00ffc3aa;
    padding-bottom: 0.5rem;
}

.global-panel p {
    margin-bottom: 2.5rem;
}

.global-panel blockquote {
    font-style: italic;
    font-weight: 600;
    font-size: 1.4rem;
    color: #00ffe3bb;
    /* border-left: 4px solid #00ffc3; */
    padding-left: 1rem;
    user-select: text;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .animated-title {
        font-size: 2rem;
    }

    .info-content {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .container.split-container {
        flex-direction: column;
        gap: 3rem;
    }

    .interactive-panel,
    .global-panel {
        flex: 1 1 100%;
        text-align: center;
        padding: 0;
    }

    .animated-title {
        font-size: 1.8rem;
        white-space: normal;
        text-align: center;
    }

    .info-block h2 {
        font-size: 1.6rem;
    }

    .info-block p,
    .info-block ul {
        font-size: 1rem;
    }

    .global-panel h2 {
        font-size: 1.8rem;
    }

    .global-panel blockquote {
        font-size: 1.2rem;
    }

    .buttons-group {
        justify-content: center;
    }

    .info-content {
        min-height: 320px;
    }
}

@media (max-width: 480px) {
    .animated-title {
        font-size: 1.5rem;
    }

    .info-content {
        min-height: 340px;
    }

    .info-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}



/* ===== CAREERS SECTION ===== */

/* ===== CAREERS SECTION ===== */

.careers-section {
    background: linear-gradient(135deg, #001820, #003545);
    padding: 5rem 2rem;
    color: #e0f7fa;
    font-family: 'Courier New', Courier, monospace;
    overflow-x: hidden;
}

.careers-container {
    max-width: 1200px;
    margin: 0 auto;
}

.animated-header {
    font-size: 2.6rem;
    text-align: center;
    font-weight: bold;
    color: #00fff3;
    text-shadow: 0 0 10px #00fff3cc, 0 0 20px #00fff3aa;
    margin-bottom: 3rem;
    white-space: nowrap;
    overflow: hidden;
    /* border-right: 2px solid #00fff3cc; */
    height: 3rem;
    animation: blinkCursor 1.2s step-end infinite;
}

.careers-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.careers-left,
.careers-right {
    flex: 1;
    min-width: 300px;
}

/* Paragraph styling */
.careers-paragraph-colored {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 1.2rem 1rem 1.2rem 0;
    /* space from right edge */
    padding-right: 1rem;
    color: #a0fefb;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    /* text-align: justify; */
}

.careers-paragraph-colored:nth-of-type(2) {
    animation-delay: 1.4s;
}

/* Contact text */
.careers-contact {
    font-size: 1.05rem;
    margin-top: 1.5rem;
    font-style: italic;
    padding-right: 1rem;
}

/* Highlight email */
.highlight-email {
    color: #00fff3;
    text-shadow: 0 0 10px #00fff3aa;
}

/* Right side icon */
.career-icon {
    width: 200px;
    margin: 1rem auto;
    display: block;
    filter: drop-shadow(0 0 10px #00fff3cc);
}

/* Typing text on right */
.right-animated-text {
    text-align: center;
    font-size: 1.6rem;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    min-height: 2.8rem;
    /* border-right: 2px solid #00fff3aa; */
    animation: blinkCursor 1.2s step-end infinite;
    margin-top: 1rem;
}

/* Animated characters */
.char {
    display: inline-block;
    opacity: 0;
    animation: popIn 0.4s forwards;
}

/* Keyframes */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blinkCursor {

    0%,
    49% {
        border-color: #00fff3aa;
    }

    50%,
    100% {
        border-color: transparent;
    }
}

/* ===== Responsive Tweaks ===== */
@media (max-width: 768px) {
    .careers-content {
        flex-direction: column;
        align-items: center;
    }

    .animated-header {
        font-size: 2rem;
        white-space: normal;
    }

    .careers-paragraph-colored {
        font-size: 1rem;
        line-height: 1.5;
        margin: 1rem 0.5rem;
        padding-right: 0.5rem;
    }

    .right-animated-text {
        font-size: 1.4rem;
        white-space: normal;
    }

    .careers-contact {
        font-size: 1rem;
        padding-right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .animated-header {
        font-size: 1.8rem;
    }

    .right-animated-text {
        font-size: 1.2rem;
    }

    .career-icon {
        width: 80px;
    }

    .careers-paragraph-colored {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

















/* Contact Section */
.contact-section {
    position: relative;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #001820, #003545);
    color: #bafcfc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, #00fff320 0%, transparent 70%);
    animation: pulseGlow 5s infinite ease-in-out;
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
}

.contact-title {
    text-align: center;
    font-size: 2.8rem;
    color: #00fff3;
    text-shadow: 0 0 10px #00fff3, 0 0 20px #00fff3aa;
    margin-bottom: 2rem;
    white-space: nowrap;
    overflow: hidden;
    /* border-right: 2px solid #00fff3; */
    animation: blinkCursor 1.2s step-end infinite;
    height: 4rem;
}

.contact-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.contact-column {
    flex: 1;
    min-width: 280px;
    /* background: #002c3d; */
    padding: 1rem 1.5rem;
    /* border-radius: 1rem; */
    box-shadow: 0 0 20px #00fff355;
}

/* map container  */
.map-container {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px #00fff355;
}

.contact-block h3 {
    color: #00fff3;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-text {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.contact-block p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

/* Form Styling */
.contact-form-wrapper {
    padding-right: 0.5rem;

}

.contact-form label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 5px #00fff3cc);
}


.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #00fff355;
    border-radius: 8px;
    background: #001820;
    color: #bafcfc;
    font-size: 1rem;
    line-height: 1.4;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00fff3;
    outline: none;
}

/* Button Styling */
.btn-primary {


    background: transparent;
    border: 2px solid #00ffc3;
    color: #00ffc3;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 0 10px #00ffc3aa;
    letter-spacing: 0.05em;
    user-select: none;

    display: block;
    margin: 1.5rem auto 0 auto;
    text-align: center;

}

.btn-primary:hover {

    background: #00ffc3;
    color: #021f2f;
    box-shadow: 0 0 30px #00ffc3ee;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes blinkCursor {

    0%,
    49% {
        border-color: #00fff3;
    }

    50%,
    100% {
        border-color: transparent;
    }
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .contact-columns {
        flex-direction: column;
    }

    .contact-title {
        font-size: 2.2rem;
        white-space: normal;
        text-align: center;
    }

    .contact-column {
        padding: 1.5rem 1rem;
    }

    .contact-text,
    .contact-block p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .contact-form label {
        font-size: 0.9rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.95rem;
    }

    .btn-primary {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.8rem;
    }

    .btn-primary {
        width: 100%;
    }
}
















/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 1.1rem;
    background: #111827;
    color: #6b7280;
    user-select: none;
    font-weight: 700;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 0.7rem;
        margin-top: 0.5rem;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}