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

body {
    font-family: 'Orbitron', sans-serif;
    background: black;
    color: white;
   
}

/* NAVBAR */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    background: rgba(0,0,0,1);
    z-index: 1000;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h2,
.logo-text span {
    font-size: 14px;
    letter-spacing: 2px;
}



/* HERO */
.hero {
    position: relative;
    position: relative;
    width: 100vw;        /* 🔥 FORCE full screen width */
    min-height: 100vh;   /* full height */
    left: 0;
    min-height: 100vh;

    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    background: url('images/hero.jpg') center 10% / cover no-repeat;

    display: flex;
    align-items: flex-start;   /* ⭐ FIX */
    justify-content: center;

    padding-top: 120px;  /* ⭐ PUSH CONTENT BELOW NAVBAR */
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    right: 0;   /* ⭐ add this */
    bottom: 0;  /* ⭐ add this */
    z-index: 1;
}
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;   /* prevents weird side gaps */
}



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



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

    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));

    z-index: 0;   /* IMPORTANT */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: 60px;
}

.hero span {
    color: #00eaff;
}

.description {
    margin-top: 20px;
    color: #ddd;

    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;

    text-align: center;

    max-width: 700px;     /* KEY FIX */
    margin-left: auto;    /* CENTER */
    margin-right: auto;   /* CENTER */
}

/* BUTTONS */
button {
    padding: 12px 20px;
    margin: 10px;
}

/* COMMON BUTTON STYLE */
button {
    padding: 12px 20px;
    margin: 10px;
    background: transparent;          /* ⭐ transparent by default */
    color: white;
    border: 1px solid #00eaff;
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER EFFECT */
button:hover {
    background: rgba(0, 234, 255, 0.1);   /* light blue fill */
    box-shadow: 0 0 10px #00eaff, 
                0 0 20px #00eaff;        /* ⭐ glow */
    color: #00eaff;
}

.mission-section {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 0;   /* remove gap */
    margin-bottom: 0;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #ccc;
}

.mission-section h3 {
    font-size: 32px;
    color: #00eaff;
    font-family: 'Orbitron', sans-serif;

}

.mission-section p {
    font-size: 16px;
    line-height: 1.6;
}



/* BUSINESS OBJECTIVE */
.business-objective {
    margin-top: 80px;
    text-align: center;              /* CENTER ALIGN */
    font-family: Arial, sans-serif;  /* CHANGED */
    color: #ccc;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.business-objective h3 {
    font-size: 32px;      /* BIGGER */
    color: #00eaff;       /* SAME BLUE */
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif; /* keep heading premium */
}

.business-objective p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* PAGE */
.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 80px 20px;
    background: url("images/bg.jpg") center/cover no-repeat;
    background-size: cover;        /* fills entire section */
    background-position: center;   /* keeps center visible */
    background-repeat: no-repeat;
}

/* OVERLAY */
.page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* adjust darkness */
    z-index: 0;
}

/* KEEP ALL CONTENT ABOVE OVERLAY */
.page > * {
    position: relative;
    z-index: 1;
}

.founder-team {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #ccc;
}

.founder-team {
    max-width: 1100px;        /* same feel as other sections */
    margin: 0 auto;
    padding: 0 20px;          /* ⭐ KEY FIX for mobile spacing */
    text-align: center;
}

.founders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    width: 100%;
    align-items: stretch;   /* ensures equal height rows */
}

.founder-team h1 {
    font-size: 32px;
    color: #00eaff;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
}

.mission {
    margin-top: 80px;
    text-align: center;              /* CENTER ALIGN */
    font-family: Arial, sans-serif;  /* CHANGED */
    color: #ccc;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================
   OUR VALUES SECTION FIX
========================= */

.values {
    text-align: center;
}

/* Heading alignment fix */
.values h1 {
    text-align: center;
    color: #00eaff;
    margin-bottom: 10px;
}

/* FORCE VALUES HEADINGS TO WHITE */
.values-card h3 {
    color: white !important;
}

/* CARDS */

.card,
.product-card {
    background: #111;
    padding: 20px;
    width: 250px;
    border-radius: 12px;
    transition: 0.3s;
}

.card:hover,
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.25);
}

nav a {
    margin-left: 30px;
    color: gray;
    text-decoration: none;
    position: relative;
}

/* HOVER */
nav a:hover {
    color: #00eaff;
}

/* ACTIVE PAGE */
nav a.active {
    color: #00eaff;
}

/* UNDERLINE EFFECT */
nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #00eaff;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #00eaff;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.capabilities {
    padding: 60px 20px 40px;
    text-align: center;
}

.capabilities h2 {
    font-size: 32px;
    color: #00eaff;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #aaa;
    font-family: Arial, sans-serif;
    margin-bottom: 40px;
}

.capability-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cap-card {
    background: #111;
    padding: 25px;
    width: 300px;
    border-radius: 10px;
    transition: 0.3s;
}

.cap-card p {
    font-family: Arial, sans-serif;  /* ⭐ change font */
    font-size: 15px;
    color: #ccc;
    line-height: 1.5;
}

.cap-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.cap-card p {
    line-height: 1.6;
}

.cap-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.3);
}

.market {
    padding: 30px 50px;
    text-align: center;
}

.market h2 {
    font-size: 32px;
    color: #00eaff;   /* same blue as rest of site */
}

.market-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.market-card {
    background: #111;
    padding: 20px;
    width: 200px;
    border-radius: 10px;
    transition: 0.3s;
}

.market-card img {
    width: 50px;
    margin-bottom: 10px;
}

.market-card:hover {
    transform: scale(1.05);
}

footer {
    background: #000;
    padding: 60px 40px;
    text-align: center;
    color: #aaa;
}

footer {
    background: linear-gradient(to right, #050505, #0d0d0d); /* subtle variation */
    color: #aaa;
    padding: 50px 60px 20px;
    font-family: Arial, sans-serif;

    border-top: 1px solid rgba(0, 234, 255, 0.2); /* soft blue separator */
}

.contact-item a,
.footer-center a,
.footer-credit a {
    color: #aaa;              /* same as text */
    text-decoration: none;
    font-weight: normal;     /* 🔥 KEY FIX */
    -webkit-font-smoothing: antialiased; /* smoother rendering */
}

.footer-credit {
    margin-top: 25px;   /* 🔥 controls gap */
    line-height: 1.6;
    margin-bottom: 0px;
}

.contact-item a:hover,
.footer-center a:hover,
.footer-credit a:hover {
    color: #00eaff;
    text-decoration: underline;
}

.footer-top h2 {
    color: #00eaff;
}

.footer-top p {
    margin: 10px 0;
    font-family: Arial, sans-serif;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 30px;
}

.footer-links a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin: 5px 0;
}

.footer-links a:hover {
    color: #00eaff;
}

footer .copyright {
    margin-top: 30px;
    font-size: 14px;
}

/* FOOTER MAIN */
footer {
    background: #0a0a0a;   /* slightly dark */
    color: #aaa;
    padding: 50px 60px 20px;
    font-family: Arial, sans-serif;
}

/* CONTAINER */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin: 0 auto;   /* ⭐ centers whole block */
    padding: 0 20px;  /* balanced spacing */
}

/* LEFT */
.footer-left {
    text-align: justify;
    padding: 0px;
}

.footer-left p {
    margin-top: 10px;
    max-width: 300px; /* keeps it nicely under logo */
    line-height: 1.5;
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;     /* 🔥 removes forced full height */
        padding-top: 100px;
        padding-bottom: 40px; /* adds controlled spacing */
    }
}

@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
        width: 100%;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 50px;  /* ⭐ SAME AS NAVBAR */
}

/* SAME STYLE AS NAVBAR LOGO */
.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-text h2,
.footer-logo .logo-text span {
    font-size: 14px;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif; /* ⭐ SAME FONT */
    color: white; /* match navbar */
}

/* CENTER NAV */
.footer-center {
    text-align: center;
}

.footer-center h4 {
    margin-bottom: 10px;
    color: #00eaff;
}

.footer-center a {
    display: block;
    text-decoration: none;
    color: #aaa;
    margin: 5px 0;
}

.footer-center a:hover {
    color: #00eaff;
}

/* RIGHT */
.footer-right {
    text-align: right;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    border-top: 1px solid #222;
    padding-top: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin: 8px 0;
}

.contact-item img {
    width: 18px;
    height: 18px;
}

.contact-row {
    align-items: center !important;   /* override old styles */
}

.contact-item {
    justify-content: center;
    width: 100%;   /* ⭐ ensures proper centering */
}

/* Align right properly */
.contact-row {
    display: flex;
    flex-direction: column;   /* vertical stack */
    align-items: flex-end;    /* right aligned */
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* General footer text */
footer {
    font-size: 14px;   /* smaller overall text */
}

/* Left description */
.footer-left p {
    font-size: 13px;
}

/* Center navigation links */
.footer-center a {
    font-size: 13px;
}

/* Right side (web, mail, address) */
.contact-item span {
    font-size: 13px;
}

/* Bottom copyright */
.footer-bottom {
    font-size: 12px;
}

.section-line {
    width: 60px;
    height: 4px;
    background: white;
    margin: 0 auto 15px auto;  /* center + spacing */
    border-radius: 2px;
}

.capabilities .section-subtitle,
.market .section-subtitle,
.process-section .section-subtitle,
.cta-section .section-subtitle {
    margin-top: 10px;     
    margin-bottom: 40px;
}

.market-card:hover {
    transform: translateY(-10px);  /* same lift */
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.3);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {

    #navbar {
        padding: 0 20px;
    }

    .logo-text h2,
    .logo-text span {
        font-size: 10px;
    }

    nav a {
        margin-left: 15px;
        font-size: 12px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .description {
        font-size: 14px;
        padding: 0 15px;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .capability-grid,
    .market-grid,
    .founders,
    .product-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-right {
        text-align: center;
    }
}

.page {
    padding: 80px 50px;   /* consistent spacing */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* About page heading consistency */
.page h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #00eaff;
}



.cap-card img {
    width: 100%;
    height: 220px;          /* fixed uniform height */
    object-fit: cover;     /* keeps image cropped nicely */
    border-radius: 10px;
    display: block;
    margin-bottom: 14px;
    
}

.cap-card h3 {
    margin-top: 0;
}

.founder-card {
    width: 100%;
    max-width: 260px;
    padding: 20px;
    background: #111;
    border-radius: 12px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    position: relative;   /* ✅ prevents overlap issues */
}

.founder-card p {
    font-size: 12.5px;   /* reduced size */
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 10px;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 234, 255, 0.35);
}

.founder-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;   /* ⭐ AIRBUS STYLE CIRCLE */
    margin-bottom: 12px;
    border: 2px solid #00eaff;
    display: block;
    margin: 0 auto 12px auto;
}

.role {
    display: inline-block;
    font-size: 12px;
    color: #00eaff;
    border: 1px solid #00eaff;
    padding: 4px 10px;
    border-radius: 20px;   /* pill shape */
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.social-icons {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: 0.3s;
    filter: brightness(0.9);
}

.social-icons img:hover {
    filter: brightness(1.5);
    transform: scale(1.2);
}

.our-mission {
    text-align: center;
    max-width: 800px;
    margin-bottom: 0px; 
    font-family: Arial, sans-serif;
    color: #ccc;
}

.mission-section {
    max-width: 800px;
    margin-top: 10px;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #ccc;
    padding-bottom: 0;
    margin-bottom: 0;
}

.our-mission h2 {
    font-size: 32px;
    color: #00eaff;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.our-mission p {

    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.our-mission {
    margin-top: 40px;
}

.our-mission h3 {
    font-size: 32px;   /* SAME as business-objective h3 */
    color: #00eaff;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.our-mission p {
    font-size: 16px;      /* SAME as business objective */
    line-height: 1.6;
    margin-bottom: 10px;
    color: #ccc;
}

.page h1 {
    font-size: 32px;              /* same scale family as mission/business */
    color: #00eaff;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;        /* consistent text scale */
    color: #aaa;
    font-family: Arial, sans-serif;
    margin-bottom: 40px;
}



.page h1,
.page h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #00eaff;
}


.values-card {
    display: flex;
    flex-direction: column;
    align-items: center;   /* centers image + text */
    text-align: center;
}

.values-card img {
    width: 55px;        /* bigger icon */
    height: 55px;
    object-fit: contain;
    margin-bottom: 12px;
    display: block;
}

.values {
    text-align: center;
}

.values h1 {
    text-align: center;
    color: white;
    margin-bottom: 10px; 
}

.values .founder-card img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 0 !important;
    border: none !important;
}

.founders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    justify-items: center;
    width: 100%;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;

}

section {
    padding-left: 20px;
    padding-right: 20px;
}
section {
    width: 100%;
}

/* ONLY constrain normal sections, NOT hero */
section:not(.hero) > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.values-grid .cap-card {
    transition: 0.3s ease;
}

.values-grid .cap-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.6),
                0 0 40px rgba(0, 234, 255, 0.3);
    border: 1px solid rgba(0, 234, 255, 0.4);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1000px;

}

@media (max-width: 768px) {
    .founders {
        grid-template-columns: 1fr;
        padding: 0 10px;   /* extra breathing space */
    }
}

@media (max-width: 768px) {
    .founders {
        grid-template-columns: 1fr;
    }
}




/* FORCE ALL HEADINGS INSIDE PAGE TO CENTER */
.page h1,
.page h3 {
    width: 100%;
    text-align: center;
}

section.page {
    padding: 80px 0px;   /* reduce from 160px */
}

/* =========================
   PRODUCTS (NEW SYSTEM)
========================= */

.product-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  /* ⭐ FORCE 4 */
    gap: 25px;
    width: 100%;
    max-width: 1200px;
}

/* TABLET */
@media (max-width: 1024px) {
    .product-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .product-grid-new {
        grid-template-columns: 1fr;
    }
}

/* CARD */
.product-card-new {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s ease;
}

/* IMAGE */
.product-card-new img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* HEADING (same system) */
.product-card-new h3 {
    font-size: 18px;
    font-family: 'Orbitron', sans-serif;
    color: #00eaff;
    margin-bottom: 10px;
}

/* BULLETS */
.product-card-new ul {
    list-style: disc;
    text-align: left;
    padding-left: 18px;
    margin-bottom: 15px;
}

.product-card-new ul li {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #ccc;
    margin-bottom: 6px;
}

/* LINK */
.product-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: #00eaff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.product-link:hover {
    border-bottom: 1px solid #00eaff;
}

/* HOVER EFFECT (match values glow) */
.product-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.6),
                0 0 40px rgba(0, 234, 255, 0.3);
    border: 1px solid rgba(0, 234, 255, 0.4);
}

.product-card-new {
    padding: 18px;
}

.product-card-new h3 {
    font-size: 16px;
}

.product-card-new img {
    height: 180px;
}

/* TABLET */
@media (max-width: 1024px) {
    .product-card-new img {
        height: 160px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .page {
        padding: 80px 20px;
    }

    .product-card-new {
        padding: 15px;
    }

    .product-card-new h3 {
        font-size: 15px;
    }

    .product-card-new ul li {
        font-size: 13px;
    }

    .product-card-new img {
        height: 140px;
    }
}

/* =========================
   ENGINEERING PROCESS
========================= */

.process-section {
    margin-top: 40px;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.process-card {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.process-card h3 {
    font-size: 18px;
    color: white;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: #ccc;
    line-height: 1.6;
}

/* hover same as values */
.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.6),
                0 0 40px rgba(0, 234, 255, 0.3);
    border: 1px solid rgba(0, 234, 255, 0.4);
}
.page h1,
.process-section h1,
.cta-section h2 {
    color: #00eaff;
    font-family: 'Orbitron', sans-serif;
}
/* =========================
   CTA SECTION
========================= */

.cta-section {
    margin-top: 0px;
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(to right, #000, #050505);
}

.cta-section h2 {
    font-size: 32px;
    color: #00eaff;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 15px;
    font-family: Arial, sans-serif;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 25px;
}

/* BUTTON */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #00eaff;
    color: #00eaff;
    text-decoration: none;
    transition: 0.3s;
}

.cta-button:hover {
    background: rgba(0, 234, 255, 0.1);
    box-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
}

@media (max-width: 1000px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* LEFT */
    .footer-left {
        text-align: center;
        align-items: center;
    }

    .footer-left p {
        margin: 10px auto;
    }

    .footer-logo {
        justify-content: center;
    }

    /* CENTER */
    .footer-center {
        text-align: center;
    }

    /* RIGHT */
    .footer-right {
        text-align: center;
    }

    .contact-row {
        align-items: center;   /* ⭐ KEY FIX */
    }

    .contact-item {
        justify-content: center;  /* ⭐ centers icon + text */
    }

}

.footer-credit span {
    font-size: 12px;
    opacity: 0.6;
}
.footer-credit a {
    color: #aaa;              /* or your theme color */
    text-decoration: none;
}

.footer-credit a:hover {
    color: #00e6ff;
    text-decoration: underline;
}

.contact-item a {
    color: #aaa;              /* or your theme color */
    text-decoration: none;
}

.contact-item a:hover {
    color: #00e6ff;            /* hover highlight */
}