/*Home*/

body {
  background-color: #ffffff;
  overflow-x: hidden; /* Prevents horizontal scrolling from the blobs */
}

/* Decorative background shapes */
.blob {
  position: absolute;
  filter: blur(60px);
  z-index: -1;      /* Keeps the blobs behind your text/content */
  opacity: 0.3;
  border-radius: 50%;
}

/* A soft shadow for a robot or character */
.robot-shadow {
  width: 140px;
  height: 12px;
  background: rgba(0, 0, 0, 0.359);
  border-radius: 50%;
  filter: blur(8px);
  margin: 0 auto;   /* Centers the shadow horizontally */
}
 /* Glassmorphism Effect for Message Box */
        #speech-bubble {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        /* Reusable Mixing Gradient Animation */
        .mixing-text { 
            background: linear-gradient(to right, #0f172a, #4db6ac, #3b82f6, #4db6ac, #0f172a);
            background-size: 300% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient-move 5s linear infinite;
            display: inline-block;
        }

        @keyframes gradient-move {
            0% { background-position: 0% center; }
            100% { background-position: 300% center; }
        }

        #speech-text { transition: opacity 0.5s ease-in-out; width: 100%; }
        .eye-container, .eye-socket { transform-origin: center; transform-box: fill-box; }
        /* The Animated Gradient Effect */
        .gradient-text {
        /* Adding more colors for a richer mix */
        background: linear-gradient(
            120deg,#296695, #60779d, #174570, #262c64, #053642  /* Back to Cyan for a seamless loop */
        );
        
        /* Make the background 300% wider so we can "scroll" through it */
        background-size: 300% auto;
        
        /* Standard clip properties */
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        
        /* Trigger the animation */
        animation: shine 25s linear infinite;
        }

        /* Keyframes to shift the background position */
        @keyframes shine {
        0% {
            background-position: 0% center;
        }
        100% {
            background-position: 300% center;
        }
        }
/*Navbar*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(255, 255, 255);
    padding: 10px 20px;
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    padding: 1.4rem;
}

.logo {
    color: rgb(0, 0, 0);
    font-size: 24px;
    display: flex;
    align-items: center;
}
.logo_text1{
    font-family: "Orbitron", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 28px;
}
.nav-list {
    list-style: none;
    display: flex;
}

.nav-list li {
    margin: 0 15px;
}
.nav-list a {
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
    font-weight: 600;
    color: #3c3c3ce0;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative; 
    padding-bottom: 5px;
}
.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0b848d; 
    transition: width 0.3s ease-in-out;
}


.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: #27416f;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 2px;
    width: 20px;
    background-color: rgb(0, 0, 0);
    margin: 2px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        height: 310px;
        position: absolute;
        top: 78px;
        left: 0;
        background-color: #ffffffee;
        z-index: 3;
        
    }
    .nav-list a{
        font-weight: 500;
        font-size: 17px;
    }
    .nav-list li {
        padding: 10px;
        margin-top: 2%;
    }
    .nav-list.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

/*task update*/
.page-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 35vh;
  width: 100%;
  overflow-x: hidden; /* Prevents slight scroll on animation */
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr; /* Stacked on mobile */
  gap: 40px;
  width: 100%;
  max-width: 1100px;
  padding: 40px;
  justify-items: center;
}

/* 2. Stat Box & Animations */
.stat-box {
  text-align: center;
  cursor: default;
  
  /* Entrance Animation Logic */
  opacity: 0;
  transform: translateY(30px);
  /* The delay is calculated manually using the --i variable from HTML */
  animation: slideUpFade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(var(--i) * 0.15s);
  
  /* Smooth transition for Hover */
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover Interaction */
.stat-box:hover {
  transform: scale(1.1); /* Subtle grow effect */
}

.stat-box:hover .stat-label {
  color: #000; /* Darkens label on hover */
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  margin: 0;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
  transition: color 0.3s ease;
}

/* 3. Keyframes */
@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Tablet: 2x2 Grid */
@media (min-width: 280px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
  .stat-number{
    font-size: 40px;
  }
  .stat-label{
    font-size: 15px;
  }
}

/* Desktop: 4 in a row */
@media (min-width: 924px) {
  .stats-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
/*services*/
:root {
            --bg-01: #05070a;
            --cc-02: #0f1117;
            --br-03: #1f222c;
            --tx-04: #ffffff;
            --tx-05: #94a3b8;
            --ac-06: #00d2ff;
        }
        /* Container now handles the dark background and spacing since body style was removed */
        .x92j_k {
            background-color: #ffffff;
            color: var(--tx-04);
            padding: 5rem 2rem;
            width: 100%;
            text-align: center;
        }

        .z11p_m {
            margin-bottom: 4rem;
            animation: a_fadeDn 0.8s ease-out;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .z11p_m h1 {
            font-size: 2.5rem;
            font-family: "Righteous", sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #121212b4;
            letter-spacing: 1px;
        }

        .z11p_m p {
            color: var(--tx-05);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .g44r_t {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .c77q_v {
            background:#000000d8;
            border: 1px solid var(--br-03);
            border-radius: 16px;
            padding: 2.5rem;
            text-align: left;
            transition: all 0.3s ease;
            opacity: 0;
            animation: a_fadeUp 0.8s ease-out forwards;
            filter: blur(0.2px); 
        }

        .c77q_v:nth-child(1) { animation-delay: 0.1s; }
        .c77q_v:nth-child(2) { animation-delay: 0.2s; }
        .c77q_v:nth-child(3) { animation-delay: 0.3s; }

        .c77q_v:hover {
            transform: translateY(-8px);
            border-color: var(--ac-06);
            box-shadow: 0 12px 40px rgba(0, 210, 255, 0.15);
        }

        .i33w_s {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--br-03);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--tx-04);
        }

        .c77q_v:hover .i33w_s {
            color: var(--ac-06);
            background: rgba(0, 210, 255, 0.05);
        }

        .c77q_v h2 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .c77q_v p {
            color: var(--tx-05);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .l88o_p {
            color: var(--ac-06);
            text-decoration: none;
            display: flex;
            align-items: center;
            font-weight: 500;
            gap: 8px;
        }

        .l88o_p i {
            transition: transform 0.3s ease;
        }

        .c77q_v:hover .l88o_p i {
            transform: translateX(4px);
        }

        @keyframes a_fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes a_fadeDn {
            from { opacity: 0; transform: translateY(-15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            .z11p_m h1 { font-size: 2.2rem; }
            .g44r_t { grid-template-columns: 1fr; }
        }
/*contact*/
/* Hero Wrapper: w_x01 */
        .w_x01 {
            position: relative;
            width: 100%;
            background-color: var(--b1);
            color: var(--t1);
            display: flex;
            align-items: center;
            padding: 0 10%;
            overflow: hidden;
            height: 60vh;
        }

        /* Background Image in HTML */
        .bg_img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        

        /* Content Container */
        .c_z10 {
            max-width: 700px;
            z-index: 2;
            position: relative;
        }

        .c_tag {
            font-size: 1rem;
            color: var(--p1);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            display: block;
            font-weight: 600;
            animation: a_fadeUp 0.8s ease-out;
        }

        .c_z10 h1 {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            font-weight: 700;
            animation: a_fadeUp 1s ease-out;
        }

        .c_z10 h1 span {
            color: var(--p1);
            /* Soft glow effect */
            text-shadow: 0 0 30px rgba(163, 113, 247, 0.4);
        }

        .c_z10 p {
            font-size: 1.2rem;
            color: var(--t2);
            line-height: 1.6;
            margin-bottom: 2.5rem;
            max-width: 550px;
            animation: a_fadeUp 1.2s ease-out;
        }

        /* Action Button */
        .btn_q4 {
            padding: 1.2rem 2.5rem;
            background: #f0f0f0;
            color: var(--b1);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
            animation: a_fadeUp 1.4s ease-out;
        }

        .btn_q4:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
            background: #1eacb62c;
        }

        /* Responsive Tweaks */
        @media (max-width: 768px) {
            .w_x01 { 
                padding: 0 7%; 
                text-align: center; 
                justify-content: center; 
            }
            .c_z10 h1 { font-size: 3rem; }
            .c_z10 p { margin-left: auto; margin-right: auto; font-size: 1rem; }
        }
/*Footer*/
/* Footer Wrapper: f_z01 */
        .f_z01 {
            background-color: #ffffff; /* Requested White Background */
            color: #1a1a1a;
            padding: 80px 6% 40px 6%;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        /* Content Grid: g_y22 */
        .g_y22 {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            animation: a_fadeIn 1s ease-out;
        }

        /* Branding Column */
        .b_x99 .l_m11 {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #000000; /* Brand Accent */
        }
        .l_m11{
            font-family: "Orbitron", sans-serif;
        }
        .b_x99 p {
            color: #666;
            line-height: 1.6;
            max-width: 320px;
            margin-bottom: 30px;
        }

        /* Social Icons: s_i44 */
        .s_i44 {
            display: flex;
            gap: 15px;
        }

        .s_i44 a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .s_i44 a:hover {
            border-color: #00d2ff;
            color: #00d2ff;
            transform: translateY(-5px);
            background: rgba(0, 210, 255, 0.05);
        }

        /* Column Headers */
        .h_t33 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #1a1a1a;
        }

        /* Link Lists: l_k55 */
        .l_k55 {
            list-style: none;
        }

        .l_k55 li {
            margin-bottom: 12px;
        }

        .l_k55 a {
            text-decoration: none;
            color: #666;
            font-size: 0.95rem;
            transition: 0.2s;
        }

        .l_k55 a:hover {
            color: #00d2ff;
            padding-left: 5px;
        }

        /* Contact Details */
        .c_d66 p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Bottom Bar: b_b77 */
        .b_b77 {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            color: #999;
            font-size: 0.85rem;
        }

        /* Animations */
        @keyframes a_fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .g_y22 { grid-template-columns: 1fr 1fr; }
            .b_x99 { grid-column: span 2; margin-bottom: 20px; }
        }

        @media (max-width: 600px) {
            .g_y22 { grid-template-columns: 1fr; }
            .b_x99 { grid-column: span 1; }
            .b_b77 { flex-direction: column; gap: 15px; text-align: center; }
        }