/* ==========================================
   RESET
========================================== */

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


/* ==========================================
   VARIABLES
========================================== */

:root {

    --bg: #0A0A0A;
    --surface: #161616;

    --primary: #0F6FFF;
    --accent: #19D3FF;

    --text: #FFFFFF;
    --text2: #B5B5B5;

    --border: #2A2A2A;

    --transition: .35s ease;

}


/* ==========================================
   GLOBAL
========================================== */

html {
    scroll-behavior: smooth;
}

body {

    background: var(--bg);

    color: var(--text);

    font-family: "Poppins", sans-serif;

    overflow-x: hidden;

}

img {

    width: 100%;

    display: block;

}

a {

    color: inherit;

    text-decoration: none;

}

button {

    border: none;

    cursor: pointer;

    font-family: inherit;

}

section {

    position: relative;

}


/* ==========================================
   NAVBAR
========================================== */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    padding: 0 8%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    background: rgba(0, 0, 0, .18);

    backdrop-filter: blur(15px);

    z-index: 999;

    transition:
        height .35s ease,
        background .35s ease,
        box-shadow .35s ease;

}


/* Logo */

.logo {

    display: flex;

    align-items: center;

}

.logo img {

    width: auto;

    height: 62px;

    object-fit: contain;

    border-radius: 5px;

    transition: transform .3s ease;

}

.logo img:hover {

    transform: scale(1.05);

}


/* Navigation */

nav {

    display: flex;

    gap: 45px;

}

nav a {

    color: var(--text);

    font-size: 15px;

    font-weight: 500;

    transition: var(--transition);

}

nav a:hover {

    color: var(--accent);

}


/* Theme Button */

#themeToggle {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background: var(--surface);

    color: var(--text);

    transition: var(--transition);

}

#themeToggle:hover {

    background: var(--accent);

    color: #000;

}


/* ==========================================
   SCROLLED NAVBAR
========================================== */

.navbar.scrolled {

    height: 75px;

    background: rgba(12, 12, 12, .90);

    backdrop-filter: blur(25px);

    box-shadow: 0 10px 35px rgba(0, 0, 0, .35);

}


/* ==========================================
   HERO
========================================== */

#hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    position: relative;

    background:
        url("../assests/images/hero.png")
        center center / cover
        no-repeat;

    animation: heroZoom 8s ease forwards;

}


/* Hero Overlay */

.overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, .82),
        rgba(0, 0, 0, .45),
        rgba(0, 0, 0, .12)
    );

    z-index: 1;

    pointer-events: none;

}


/* Hero Container */

.hero-container {

    width: 100%;

    padding: 0 8%;

    position: relative;

    z-index: 2;

}

.hero-left {

    max-width: 650px;

}


/* Hero Tag */

.hero-tag {

    display: inline-block;

    padding: 8px 18px;

    margin-bottom: 25px;

    border: 1px solid rgba(255, 255, 255, .25);

    border-radius: 50px;

    color: var(--accent);

    font-size: 14px;

}


/* Hero Heading */

.hero-left h1 {

    font-family: "Bebas Neue", sans-serif;

    font-size: 6rem;

    line-height: .95;

    letter-spacing: 2px;

}

.hero-left h1 span {

    display: block;

    color: var(--accent);

}


/* Hero Description */

.hero-desc {

    max-width: 600px;

    margin-top: 30px;

    color: #D4D4D4;

    font-size: 18px;

    line-height: 1.8;

}


/* Hero Buttons */

.hero-buttons {

    display: flex;

    gap: 20px;

    margin-top: 45px;

}


/* ==========================================
   BUTTONS
========================================== */

.primary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 35px;

    border-radius: 40px;

    background: var(--accent);

    color: #000;

    font-weight: 600;

    transition: var(--transition);

}

.primary-btn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 40px
        rgba(25, 211, 255, .35);

}


.secondary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 35px;

    border: 1px solid #FFFFFF;

    border-radius: 40px;

    color: #FFFFFF;

    transition: var(--transition);

}

.secondary-btn:hover {

    background: #FFFFFF;

    color: #000000;

    transform: translateY(-4px);

}


/* ==========================================
   LOADER
========================================== */

#loader {

    position: fixed;

    inset: 0;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #080808;

    z-index: 99999;

}

.loader-content {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    width: 500px;

    max-width: 90vw;

    text-align: center;

}

.loader-content img {

    width: 500px;

    max-width: 90vw;

    height: auto;

    margin-bottom: 35px;

}

.loading-bar {

    width: 500px;

    max-width: 90vw;

    height: 5px;

    background: #1B1B1B;

    border-radius: 50px;

    overflow: hidden;

}

.loading-bar span {

    display: block;

    width: 0;

    height: 100%;

    background: var(--accent);

}


/* ==========================================
   HERO ANIMATIONS
========================================== */

@keyframes heroZoom {

    from {

        background-size: 108%;

    }

    to {

        background-size: 100%;

    }

}


/* Scroll Indicator */

.scroll-indicator {

    position: absolute;

    left: 50%;

    bottom: 40px;

    transform: translateX(-50%);

    width: 26px;

    height: 48px;

    border: 2px solid rgba(255, 255, 255, .6);

    border-radius: 20px;

    z-index: 3;

}

.scroll-indicator span {

    position: absolute;

    left: 50%;

    top: 8px;

    width: 5px;

    height: 10px;

    transform: translateX(-50%);

    border-radius: 10px;

    background: var(--accent);

    animation: scrollMouse 1.8s infinite;

}

@keyframes scrollMouse {

    0% {

        opacity: 1;

        top: 8px;

    }

    100% {

        opacity: 0;

        top: 26px;

    }

}


/* ==========================================
   SECTION COMMON
========================================== */

.section-tag {

    margin-bottom: 15px;

    color: var(--accent);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 2px;

}

.section-title {

    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(3rem, 6vw, 5rem);

    line-height: .95;

    letter-spacing: 1px;

}


/* ==========================================
   ABOUT
========================================== */

#about {

    padding: 140px 8%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;

    background: #0D0D0D;

}


/* Left */

.about-left {

    max-width: 650px;

}

.about-left .section-title {

    margin-top: 15px;

}

.about-text {

    margin-top: 30px;

    color: #B5B5B5;

    font-size: 17px;

    line-height: 1.9;

}


/* Features */

.about-features {

    margin-top: 45px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

}

.feature {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 18px 20px;

    background: #151515;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 14px;

    color: #FFFFFF;

    transition: var(--transition);

}

.feature:hover {

    transform: translateY(-8px);

    border-color: var(--accent);

    box-shadow:
        0 15px 35px
        rgba(25, 211, 255, .15);

}


/* Right */

.about-right {

    position: relative;

}

.about-right img {

    width: 100%;

    height: 560px;

    object-fit: cover;

    border-radius: 24px;

    box-shadow:
        0 30px 70px
        rgba(0, 0, 0, .45);

    transition: transform .5s ease;

}

.about-right:hover img {

    transform: scale(1.02);

}


/* About Floating Card */

.about-card {

    position: absolute;

    right: 25px;

    bottom: 25px;

    width: 220px;

    padding: 20px;

    background: rgba(15, 15, 15, .88);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 18px;

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, .45);

}

.stat {

    padding: 15px 0;

}

.stat:not(:last-child) {

    border-bottom:
        1px solid
        rgba(255, 255, 255, .08);

}

.stat h3 {

    margin-bottom: 6px;

    color: var(--accent);

    font-size: 32px;

    font-weight: 700;

}

.stat p {

    color: #B5B5B5;

    font-size: 14px;

    line-height: 1.6;

}


/* ==========================================
   CAPABILITIES
========================================== */

#services {

    padding: 120px 8%;

    background: #080808;

}

.services-header {

    max-width: 900px;

    margin-bottom: 60px;

}

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(340px, 1fr));

    gap: 30px;

}

.service-card {

    position: relative;

    padding: 45px 35px;

    background: #121212;

    border: 1px solid #222;

    border-radius: 18px;

    overflow: hidden;

    transition: var(--transition);

}

.service-card:hover {

    transform: translateY(-10px);

    border-color: var(--accent);

    box-shadow:
        0 20px 50px
        rgba(25, 211, 255, .15);

}

.service-number {

    position: absolute;

    top: 15px;

    right: 20px;

    color: rgba(255, 255, 255, .05);

    font-family: "Bebas Neue", sans-serif;

    font-size: 4rem;

}

.service-card h3 {

    margin-bottom: 20px;

    color: var(--accent);

    font-size: 28px;

}

.service-card p {

    color: #B5B5B5;

    line-height: 1.8;

}


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

#process {

    padding: 120px 8%;

    background: #0B0B0B;

}

.process-header {

    max-width: 700px;

    margin: 0 auto 80px;

    text-align: center;

}

.process-desc {

    margin-top: 20px;

    color: #B5B5B5;

    font-size: 1rem;

    line-height: 1.8;

}

.process-container {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(260px, 1fr));

    gap: 30px;

}

.process-step {

    position: relative;

    padding: 40px 30px;

    background: #111111;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 16px;

    overflow: hidden;

    transition: var(--transition);

}

.process-step:hover {

    transform: translateY(-10px);

    border-color: var(--accent);

    box-shadow:
        0 20px 40px
        rgba(25, 211, 255, .15);

}

.process-step span {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 60px;

    height: 60px;

    margin-bottom: 25px;

    border-radius: 50%;

    background: var(--accent);

    color: #000;

    font-size: 1.3rem;

    font-weight: 700;

}

.process-step h3 {

    margin-bottom: 15px;

    color: #FFFFFF;

    font-size: 1.5rem;

}

.process-step p {

    color: #B5B5B5;

    line-height: 1.8;

}


/* ==========================================
   PROJECTS
========================================== */

#projects {

    padding: 140px 8%;

    background: #0B0B0B;

}

.projects-header {

    margin-bottom: 90px;

    text-align: center;

}

.project {

    display: grid;

    grid-template-columns: 1.4fr 1fr;

    gap: 60px;

    align-items: center;

    margin-bottom: 120px;

}

.project.reverse {

    grid-template-columns: 1fr 1.4fr;

}

.project.reverse .project-image {

    order: 2;

}

.project.reverse .project-info {

    order: 1;

}


/* Project Image */

.project-image {

    position: relative;

    overflow: hidden;

    border-radius: 24px;

}

.project-image img {

    width: 100%;

    height: 520px;

    object-fit: cover;

    display: block;

    transition: transform .6s ease;

}

.project:hover .project-image img {

    transform: scale(1.08);

}

.project-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, .25)
    );

    pointer-events: none;

}


/* Project Text */

.project-info h3 {

    position: relative;

    padding-left: 22px;

    margin-bottom: 20px;

    font-family: "Bebas Neue", sans-serif;

    font-size: 3.2rem;

    letter-spacing: 1px;

}

.project-info h3::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 7px;

    height: 70%;

    transform: translateY(-50%);

    background: var(--accent);

    border-radius: 50px;

}

.project-info p {

    max-width: 500px;

    margin-bottom: 35px;

    color: #B5B5B5;

    font-size: 17px;

    line-height: 1.9;

}


/* Project Button */

.project-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 32px;

    border: 1px solid var(--accent);

    border-radius: 40px;

    color: var(--accent);

    transition: var(--transition);

}

.project-btn:hover {

    background: var(--accent);

    color: #000;

    transform: translateY(-4px);

}


/* ==========================================
   CONTACT
========================================== */

#contact {

    padding: 140px 8%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    background: #111111;

}

.contact-text {

    margin: 30px 0;

    color: #B5B5B5;

    line-height: 1.8;

}

.contact-info {

    display: flex;

    flex-direction: column;

    gap: 25px;

}

.info-box {

    padding: 20px;

    background: #181818;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 14px;

    transition: var(--transition);

}

.info-box:hover {

    border-color: var(--accent);

    transform: translateY(-5px);

}

.info-box h4 {

    margin-bottom: 10px;

    color: var(--accent);

}

.info-box p {

    color: #B5B5B5;

    line-height: 1.7;

}


/* Contact Form */

.contact-right form {

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.contact-right input,
.contact-right textarea {

    width: 100%;

    padding: 18px;

    background: #181818;

    color: #FFFFFF;

    border: 1px solid #2A2A2A;

    border-radius: 12px;

    outline: none;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    transition: var(--transition);

}

.contact-right input:focus,
.contact-right textarea:focus {

    border-color: var(--accent);

    box-shadow:
        0 0 0 3px
        rgba(25, 211, 255, .08);

}

.contact-right textarea {

    resize: vertical;

}


/* ==========================================
   FOOTER
========================================== */

#footer {

    padding: 80px 8% 30px;

    background: #050505;

}

.footer-top {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 50px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .08);

}

.footer-company img {

    width: 180px;

    margin-bottom: 25px;

}

.footer-company p {

    color: #B5B5B5;

    line-height: 1.8;

}

.footer-links,
.footer-services,
.footer-contact {

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {

    margin-bottom: 10px;

    color: var(--accent);

}

.footer-links a {

    color: #B5B5B5;

    transition: var(--transition);

}

.footer-links a:hover {

    color: var(--accent);

}

.footer-services p,
.footer-contact p {

    color: #B5B5B5;

}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 30px;

}

.footer-bottom p {

    color: #888888;

}

#backToTop {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: var(--accent);

    color: #000;

    font-size: 20px;

    transition: var(--transition);

}

#backToTop:hover {

    transform: translateY(-5px);

    box-shadow:
        0 10px 25px
        rgba(25, 211, 255, .25);

}


/* ==========================================
   SCROLL PROGRESS
========================================== */

#progress-bar {

    position: fixed;

    top: 0;
    left: 0;

    width: 0%;

    height: 4px;

    background: var(--accent);

    z-index: 999999;

    pointer-events: none;

}

/* ==========================================
   SQDC
========================================== */

.sqdc-section {

    margin-top: 100px;

    padding-top: 80px;

    border-top: 1px solid rgba(255, 255, 255, .08);

}


.sqdc-header {

    max-width: 700px;

    margin-bottom: 45px;

}


.sqdc-header h2 {

    margin-top: 10px;

    font-family: "Bebas Neue", sans-serif;

    font-size: 4rem;

    letter-spacing: 2px;

    line-height: 1;

}


.sqdc-header > p:last-child {

    max-width: 650px;

    margin-top: 20px;

    color: #B5B5B5;

    font-size: 16px;

    line-height: 1.8;

}


/* SQDC Grid */

.sqdc-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


/* SQDC Card */

.sqdc-card {

    display: flex;

    flex-direction: column;

    gap: 25px;

    min-height: 260px;

    padding: 30px;

    background: #111111;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 18px;

    transition: var(--transition);

}


.sqdc-card:hover {

    transform: translateY(-8px);

    border-color: var(--accent);

    box-shadow:
        0 20px 45px
        rgba(25, 211, 255, .12);

}


/* Large Letter */

.sqdc-letter {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 55px;

    height: 55px;

    border-radius: 12px;

    background: var(--accent);

    color: #000;

    font-family: "Bebas Neue", sans-serif;

    font-size: 2rem;

}


/* Heading */

.sqdc-card h3 {

    margin-bottom: 10px;

    color: #FFFFFF;

    font-size: 22px;

}


/* Description */

.sqdc-card p {

    color: #B5B5B5;

    font-size: 14px;

    line-height: 1.8;

}

/* =========================================
   LIGHT MODE
   ========================================= */

/*
   Light mode is intentionally defined at the end of the file.
   This guarantees these rules override the dark-mode defaults above.
*/

body.light-mode {
    --bg: #f4f6f7;
    --surface: #ffffff;
    --text: #111111;
    --text2: #4f5963;
    --border: #d9e0e5;

    background: var(--bg);
    color: var(--text);
}


/* =========================================
   GLOBAL LIGHT-MODE TEXT
   ========================================= */

body.light-mode .section-title,
body.light-mode .services-header h2,
body.light-mode .process-header h2,
body.light-mode .projects-header h2,
body.light-mode .sqdc-header h2,
body.light-mode .contact-left h2 {
    color: #111111 !important;
    text-shadow: none !important;
}

body.light-mode .section-tag {
    color: #19D3FF !important;
}

body.light-mode .about-text,
body.light-mode .process-desc,
body.light-mode .project-info p,
body.light-mode .contact-text,
body.light-mode .footer-company p,
body.light-mode .footer-links a,
body.light-mode .footer-services p,
body.light-mode .footer-contact p {
    color: #4f5963 !important;
}


/* =========================================
   NAVBAR
   ========================================= */

body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 25px rgba(15, 23, 42, 0.08);
}

body.light-mode .navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.10);
}

body.light-mode nav a {
    color: #111111 !important;
}

body.light-mode nav a:hover {
    color: #19D3FF !important;
}

body.light-mode #themeToggle {
    background: #ffffff;
    color: #111111;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.10);
}

body.light-mode #themeToggle:hover {
    background: #19D3FF;
    color: #000000;
}


/* =========================================
   HERO
   ========================================= */

/*
   Keep the exact same hero image.
   No white wash / fog. The only overlay is a controlled
   dark gradient on the left so white typography stays readable.
*/

body.light-mode #hero {
    background-color: #0a0a0a !important;
    background-blend-mode: normal !important;
    filter: none !important;
    opacity: 1 !important;
}

/* Remove any pseudo-element wash. */
body.light-mode #hero::before,
body.light-mode #hero::after {
    background: none !important;
    opacity: 0 !important;
    box-shadow: none !important;
}

/* Controlled readability overlay — NOT a fog effect. */
body.light-mode #hero .overlay {
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.62) 0%,
        rgba(0, 0, 0, 0.38) 38%,
        rgba(0, 0, 0, 0.12) 68%,
        rgba(0, 0, 0, 0.02) 100%
    ) !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
}

body.light-mode #hero .hero-left h1 {
    color: #ffffff !important;
    text-shadow: none !important;
}

body.light-mode #hero .hero-left h1 span {
    color: #19D3FF !important;
    text-shadow: none !important;
}

body.light-mode #hero .hero-desc {
    color: #ffffff !important;
    text-shadow: none !important;
}

body.light-mode #hero .hero-tag {
    color: #19D3FF !important;
    background: rgba(0, 0, 0, 0.32) !important;
    border-color: rgba(25, 211, 255, 0.65) !important;
    box-shadow: none !important;
}

body.light-mode #hero .secondary-btn {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.70) !important;
    background: transparent !important;
}

body.light-mode .scroll-indicator {
    border-color: rgba(255, 255, 255, 0.75) !important;
    box-shadow: none !important;
}

body.light-mode .scroll-indicator span {
    background: #19D3FF !important;
}


/* =========================================
   BUTTONS
   ========================================= */

body.light-mode .primary-btn {
    color: #000000 !important;
}

body.light-mode .secondary-btn {
    color: #111111;
    border-color: #111111;
}

body.light-mode .secondary-btn:hover {
    background: #111111;
    color: #ffffff;
}


/* =========================================
   ABOUT
   ========================================= */

body.light-mode #about {
    background: #f4f6f7 !important;
    color: #111111 !important;
}

body.light-mode #about h1,
body.light-mode #about h2,
body.light-mode #about h3 {
    color: #111111 !important;
    text-shadow: none !important;
}

body.light-mode #about .about-text {
    color: #4f5963 !important;
}

body.light-mode .feature {
    background: #ffffff !important;
    border: 1px solid #d9e0e5 !important;
    color: #111111 !important;

    /* brighter cyan underglow */
    box-shadow:
        0 14px 32px rgba(25, 211, 255, 0.14),
        0 4px 12px rgba(25, 211, 255, 0.08);
}

body.light-mode .feature p,
body.light-mode .feature span {
    color: #111111 !important;
}

body.light-mode .feature:hover {
    border-color: #19D3FF !important;
    box-shadow:
        0 18px 42px rgba(25, 211, 255, 0.28),
        0 5px 16px rgba(25, 211, 255, 0.14);
}

body.light-mode .about-right img {
    filter: none !important;
}

body.light-mode .about-card {
    background: rgba(255, 255, 255, 0.97) !important;
    color: #111111 !important;
    border-color: #d9e0e5 !important;
    box-shadow:
        0 18px 45px rgba(25, 211, 255, 0.16),
        0 5px 16px rgba(25, 211, 255, 0.08) !important;
}

body.light-mode .about-card h3,
body.light-mode .about-card p,
body.light-mode .about-card span {
    color: #111111 !important;
}

body.light-mode .stat p {
    color: #4f5963 !important;
}

body.light-mode .stat:not(:last-child) {
    border-bottom-color: #d9e0e5 !important;
}


/* =========================================
   CAPABILITIES
   ========================================= */

body.light-mode #services {
    background: #eef2f4 !important;
}

body.light-mode .service-card {
    background: #ffffff !important;
    border: 1px solid #d9e0e5 !important;

    /* visible cyan underglow in light mode */
    box-shadow:
        0 18px 42px rgba(25, 211, 255, 0.16),
        0 5px 16px rgba(25, 211, 255, 0.08) !important;
}

body.light-mode .service-card:hover {
    border-color: #19D3FF !important;
    box-shadow:
        0 22px 50px rgba(25, 211, 255, 0.30),
        0 6px 18px rgba(25, 211, 255, 0.15) !important;
}

body.light-mode .service-card h3,
body.light-mode .service-card .service-title {
    color: #111111 !important;
}

body.light-mode .service-card p {
    color: #4f5963 !important;
}

body.light-mode .service-number {
    color: rgba(0, 0, 0, 0.06) !important;
}


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

body.light-mode #process {
    background: #f4f6f7 !important;
}

body.light-mode .process-step {
    background: #ffffff !important;
    border: 1px solid #d9e0e5 !important;

    /* brighter cyan underglow */
    box-shadow:
        0 18px 42px rgba(25, 211, 255, 0.16),
        0 5px 16px rgba(25, 211, 255, 0.08) !important;
}

body.light-mode .process-step:hover {
    border-color: #19D3FF !important;
    box-shadow:
        0 22px 50px rgba(25, 211, 255, 0.30),
        0 6px 18px rgba(25, 211, 255, 0.15) !important;
}

body.light-mode .process-step h3 {
    color: #111111 !important;
}

body.light-mode .process-step p {
    color: #4f5963 !important;
}


/* =========================================
   PROJECTS
   ========================================= */

body.light-mode #projects {
    background: #eef2f4 !important;
}

body.light-mode .project-info h3 {
    color: #111111 !important;
}

body.light-mode .project-info p {
    color: #4f5963 !important;
}

body.light-mode .project-btn {
    color: #19D3FF !important;
    border-color: #19D3FF !important;
}

body.light-mode .project-btn:hover {
    background: #19D3FF !important;
    color: #000000 !important;
}

body.light-mode .project-image::after {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.18)
    ) !important;
}


/* =========================================
   CONTACT
   ========================================= */

body.light-mode #contact {
    background: #f4f6f7 !important;
}

body.light-mode .contact-text {
    color: #4f5963 !important;
}

body.light-mode .info-box {
    background: #ffffff !important;
    border: 1px solid #d9e0e5 !important;

    box-shadow:
        0 18px 42px rgba(25, 211, 255, 0.16),
        0 5px 16px rgba(25, 211, 255, 0.08) !important;
}

body.light-mode .info-box:hover {
    border-color: #19D3FF !important;
    box-shadow:
        0 22px 50px rgba(25, 211, 255, 0.30),
        0 6px 18px rgba(25, 211, 255, 0.15) !important;
}

body.light-mode .info-box h4 {
    color: #19D3FF !important;
}

body.light-mode .info-box p {
    color: #4f5963 !important;
}

body.light-mode .contact-right input,
body.light-mode .contact-right textarea {
    background: #ffffff !important;
    color: #111111 !important;
    border-color: #d5dde2 !important;
}

body.light-mode .contact-right input::placeholder,
body.light-mode .contact-right textarea::placeholder {
    color: #7a858e !important;
}

body.light-mode .contact-right input:focus,
body.light-mode .contact-right textarea:focus {
    border-color: #19D3FF !important;
    box-shadow:
        0 0 0 3px rgba(25, 211, 255, 0.14),
        0 8px 24px rgba(25, 211, 255, 0.12) !important;
}


/* =========================================
   SQDC
   ========================================= */

/* Section itself */
body.light-mode .sqdc-section {
    border-top-color: #d9e0e5 !important;
}

/* SQDC header */
body.light-mode .sqdc-header h2 {
    color: #111111 !important;
}

body.light-mode .sqdc-header > p:last-child {
    color: #4f5963 !important;
}

/* SQDC cards */
body.light-mode .sqdc-card {
    background: #ffffff !important;
    border: 1px solid #d9e0e5 !important;

    /* brighter underglow */
    box-shadow:
        0 18px 42px rgba(25, 211, 255, 0.18),
        0 5px 16px rgba(25, 211, 255, 0.09) !important;
}

body.light-mode .sqdc-card:hover {
    border-color: #19D3FF !important;
    box-shadow:
        0 24px 55px rgba(25, 211, 255, 0.34),
        0 7px 20px rgba(25, 211, 255, 0.16) !important;
}

/*
   IMPORTANT:
   These are the actual SQDC headings.
   The previous CSS targeted .service-card h3,
   which does NOT control these four headings.
*/
body.light-mode .sqdc-card h3,
body.light-mode .sqdc-card .sqdc-title,
body.light-mode .sqdc-card .sqdc-heading {
    color: #111111 !important;
    text-shadow: none !important;
}

body.light-mode .sqdc-card p {
    color: #4f5963 !important;
}

body.light-mode .sqdc-letter {
    background: #19D3FF !important;
    color: #000000 !important;
}


/* =========================================
   FOOTER
   ========================================= */

body.light-mode #footer {
    background: #e8ecef !important;
}

body.light-mode .footer-top {
    border-bottom-color: #cfd7dc !important;
}

body.light-mode .footer-company p,
body.light-mode .footer-links a,
body.light-mode .footer-services p,
body.light-mode .footer-contact p {
    color: #4f5963 !important;
}

body.light-mode .footer-links h3,
body.light-mode .footer-services h3,
body.light-mode .footer-contact h3 {
    color: #19D3FF !important;
}

body.light-mode .footer-links a:hover {
    color: #19D3FF !important;
}

body.light-mode .footer-bottom p {
    color: #6d7780 !important;
}


/* =========================================
   BACK TO TOP
   ========================================= */

body.light-mode #backToTop {
    background: #19D3FF !important;
    color: #000000 !important;
    box-shadow:
        0 12px 30px rgba(25, 211, 255, 0.22);
}

body.light-mode #backToTop:hover {
    box-shadow:
        0 15px 35px rgba(25, 211, 255, 0.36);
}


/* =========================================
   PROGRESS BAR
   ========================================= */

body.light-mode #progress-bar {
    background: #19D3FF !important;
}


/* =========================================
   LOADER
   ========================================= */

body.light-mode #loader {
    background: #f4f6f7 !important;
}

body.light-mode .loading-bar {
    background: #dfe5e8 !important;
}


/* =========================================
   EXTRA SAFETY OVERRIDES
   ========================================= */

/* Prevent any hard-coded dark-mode text from disappearing. */
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode h5,
body.light-mode h6 {
    text-shadow: none;
}

/* Keep the cyan accent consistent throughout light mode. */
body.light-mode .hero-tag,
body.light-mode .section-tag,
body.light-mode .info-box h4,
body.light-mode .footer-links h3,
body.light-mode .footer-services h3,
body.light-mode .footer-contact h3 {
    color: #19D3FF !important;
}

