
/* Clean modern scrollbar using #82b440 */
:root {
  --scroll-track: #111;        /* dark background for contrast */
  --scroll-thumb: #82b440;     /* main thumb color */
  --scroll-thumb-hover: #9edc4e; /* lighter on hover */
  --scroll-thumb-active: #a7e85a; /* brightest on active */
}

/* WebKit (Chrome, Edge, Safari) */
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: var(--scroll-track);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb);
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: var(--scroll-thumb-hover);
}

*::-webkit-scrollbar-thumb:active {
  background-color: var(--scroll-thumb-active);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-thumb) var(--scroll-track);
}


.title-logo {
    width: 100%;
    height: 60px;
    background: #262626;
    border-bottom: 2px solid #000;
}


.menu-section.sticky {
  position: fixed;
  top: var(--menu-sticky-top, 0);
  left: 0;
  right: 0;
  z-index: 999;
  background: inherit;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.menu-section{
    height: 100px;
    position: sticky;
    left: 0;
    top: 0px; /* Adjust if your header is fixed, set to header height */
    z-index: 9999;
    background: #252734;
    transition: box-shadow 0.3s, background 0.3s;
     box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.15);
}

.menu-section.sticky {
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    background: #252734;
}
.menu-container {
    background: #252734;
    width: 100%;
    height: 200px;
    margin: auto;
}
.title-logo h1 {
    padding-left: 50px;
    padding-top: 0px;
    width: 150px;
    height: 60px;
}
.span1 {
    color: #82b440;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: absolute;
    top: 28px;
    left: 30px;
}
.title-logo h1 {
    position: absolute;
    top: -10px;
}

.contact-link {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 130px;
}
.contact-link a {
    text-decoration: none;
}

.services-section {
    margin-top: 150px;
    position: relative; 
    top:0;
    width: 100%;
    background-color: #252734;
    padding: 40px 20px 20px 0; 
    height: 300px;
    z-index: 111;
}

 .service-text {
   position: relative;
    margin: 0 auto;
    text-align: center;
    width: 300px;
   
 }
 h1 {

    color: #ffffff;
    font-size: 70px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    white-space: nowrap;
    width: 800px;
 }
 .service-text h1 {
    margin-left: -250px;
    font-size: 80px;
    font-family: 'Times New Roman', Times, serif;
 }
 .border-text {
    display: flex;
    position: relative;
    left: -50px;
    padding: 20px 40px;
    background-color: #2a2c39;
    border-radius: 40px;
    gap: 20px;
        font-size: 18px;
     font-family: 'Inter', sans-serif;
     white-space: nowrap;
     margin-left: 90px;
 }
  .border-text span {
    color: #76867e;
  }
  .border-text p {
    color: #76867e;
    font-size: 14px;
    transition: 0.3s ease-in-out;
  }
  h5 {
    color:#ffffff;
  }
  
 .border-text a {
    text-decoration: none;
  
 }
.border-text p:hover {
    color: #fff;
  
}

.error-section {
  width: 100%;
  height: 800px;
  position: relative;
  background-color: #2a2c39;
}




  /* 404 all content start here */
      .error-section {
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
        }
        
        .error-section::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: pulse 8s infinite alternate;
            z-index: 0;
        }
        
        .container {
            max-width: 1000px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 80px 40px;
            background: rgba(42, 44, 57, 0.95);
            border-radius: 24px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            position: relative;
            z-index: 2;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform: translateY(0);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        
        .container:hover {
            transform: translateY(-10px);
            box-shadow: 0 35px 60px rgba(0, 0, 0, 0.6);
        }
        
        .content {
            position: relative;
            z-index: 1;
            width: 100%;
        }
        
        .error-code {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 180px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1;
            margin-bottom: 30px;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
            animation: pulse 2s infinite;
            perspective: 1000px;
        }
        
        .four {
            display: inline-block;
            animation: bounce 1.2s ease infinite;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
        }
        
        .robot-container {
            display: inline-block;
            margin: 0 15px;
            position: relative;
            animation: float 4s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.05); opacity: 1; }
            100% { transform: scale(1); opacity: 0.8; }
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0) rotateX(0); }
            50% { transform: translateY(-25px) rotateX(20deg); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0); }
            33% { transform: translateY(-15px) rotate(2deg); }
            66% { transform: translateY(10px) rotate(-2deg); }
        }
        
        .error-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        .error-message {
            font-size: 18px;
            color: #a0aec0;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }
        
        .search-box {
            position: relative;
            max-width: 500px;
            width: 100%;
            margin: 0 auto 30px;
        }
        
        .search-input {
            width: 100%;
            padding: 18px 65px 18px 30px;
            border: none;
            border-radius: 50px;
            background: #252734;
            font-size: 16px;
            color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
        }
        
        .search-input:focus {
            outline: none;
            box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
            transform: scale(1.02);
        }
        
        .search-input::placeholder {
            color: #a0aec0;
        }
        
        .search-button {
            position: absolute;
            right: 6px;
            top: 6px;
            background: #252734;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .search-button:hover {
            transform: rotate(15deg) scale(1.1);
            box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
        }
        
        .error-action-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }
        
        .home-btn-error{
            width: 180px;
            height: 60px;
            padding: 30px 35px;
            font-weight: 600;
            font-size: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            transition: all 0.4s ease;
            text-decoration: none;
            cursor: pointer;
            position: relative;
            margin-top: 400px;
            padding-right: 830px;
            z-index: 1;
            border: none;
            outline: none;
            overflow: hidden;
            background: #252734;
            color: white;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .home-btn-error::before{
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: 0.5s;
        }
        
        .home-btn-error:hover::before {
            left: 100%;
        }
        
        .home-btn-error:hover{
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
        }
        
        /* Enhanced Broken Robot Illustration */
        .broken-robot {
            width: 160px;
            height: 200px;
            position: relative;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
        }
        
        .robot-head {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
            border-radius: 25px;
            position: absolute;
            top: 0;
            left: 20px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            transform-style: preserve-3d;
            animation: headTilt 6s infinite alternate;
        }
        
        @keyframes headTilt {
            0%, 100% { transform: rotate(0); }
            25% { transform: rotate(3deg); }
            75% { transform: rotate(-3deg); }
        }
        
        .robot-face {
            position: absolute;
            width: 80px;
            height: 60px;
            top: 30px;
            left: 20px;
        }
        
        .robot-eye {
            width: 24px;
            height: 24px;
            background: #2a2c39;
            border-radius: 50%;
            position: absolute;
            animation: blink 5s infinite;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(42, 44, 57, 0.5);
        }
        
        .eye-left {
            left: 0;
        }
        
        .eye-right {
            right: 0;
        }
        
        .robot-pupil {
            width: 10px;
            height: 10px;
            background: #ffffff;
            border-radius: 50%;
            position: absolute;
            top: 7px;
            left: 7px;
            transition: 0.3s;
        }
        
        .robot-eye:hover .robot-pupil {
            transform: scale(1.2);
        }
        
        .robot-mouth {
            width: 40px;
            height: 15px;
            background: #2a2c39;
            border-radius: 0 0 40px 40px;
            position: absolute;
            bottom: 0;
            left: 20px;
            animation: mouth 4s infinite;
            overflow: hidden;
        }
        
        .crack {
            position: absolute;
            width: 6px;
            height: 50px;
            background: linear-gradient(to bottom, #ff6b6b, #ff3838);
            border-radius: 3px;
            left: 50%;
            top: 15px;
            transform: translateX(-50%) rotate(15deg);
            box-shadow: 0 0 15px rgba(255, 107, 107, 0.7);
            animation: flicker 2s infinite;
            z-index: 2;
        }
        
        .spark {
            position: absolute;
            width: 10px;
            height: 10px;
            background: #ffffff;
            border-radius: 50%;
            animation: spark 1.5s infinite;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
            z-index: 3;
        }
        
        .spark1 {
            top: 35px;
            right: 25px;
            animation-delay: 0.2s;
        }
        
        .spark2 {
            top: 70px;
            left: 30px;
            animation-delay: 0.7s;
        }
        
        .spark3 {
            bottom: 50px;
            right: 30px;
            animation-delay: 1.2s;
        }
        
        .spark4 {
            top: 20px;
            left: 25px;
            animation-delay: 0.9s;
        }
        
        .robot-body {
            width: 140px;
            height: 90px;
            background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
            border-radius: 20px;
            position: absolute;
            bottom: 0;
            left: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            transform-style: preserve-3d;
        }
        
        .robot-arm {
            width: 25px;
            height: 70px;
            background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
            border-radius: 12px;
            position: absolute;
            bottom: 45px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .arm-left {
            left: -5px;
            transform: rotate(20deg);
            animation: armLeft 5s infinite;
            transform-origin: top center;
        }
        
        .arm-right {
            right: -5px;
            transform: rotate(-20deg);
            animation: armRight 7s infinite;
            transform-origin: top center;
        }
        
        .robot-leg {
            width: 25px;
            height: 50px;
            background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
            border-radius: 12px;
            position: absolute;
            bottom: -35px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .leg-left {
            left: 35px;
            animation: legLeft 6s infinite;
            transform-origin: top center;
        }
        
        .leg-right {
            right: 35px;
            animation: legRight 5s infinite;
            transform-origin: top center;
        }
        
        @keyframes blink {
            0%, 42%, 44%, 46%, 48%, 50%, 100% {
                height: 24px;
            }
            43%, 45%, 47%, 49% {
                height: 2px;
            }
        }
        
        @keyframes mouth {
            0%, 50%, 100% {
                height: 10px;
            }
            25%, 75% {
                height: 15px;
            }
        }
        
        @keyframes armLeft {
            0%, 100% {
                transform: rotate(20deg);
            }
            50% {
                transform: rotate(15deg);
            }
        }
        
        @keyframes armRight {
            0%, 100% {
                transform: rotate(-20deg);
            }
            50% {
                transform: rotate(-25deg);
            }
        }
        
        @keyframes legLeft {
            0%, 100% {
                transform: rotate(0);
            }
            50% {
                transform: rotate(5deg);
            }
        }
        
        @keyframes legRight {
            0%, 100% {
                transform: rotate(0);
            }
            50% {
                transform: rotate(-5deg);
            }
        }
        
        @keyframes flicker {
            0%, 100% {
                opacity: 1;
                box-shadow: 0 0 15px rgba(255, 107, 107, 0.7);
            }
            50% {
                opacity: 0.7;
                box-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
            }
        }
        
        @keyframes spark {
            0%, 100% {
                opacity: 0;
                transform: scale(0.5);
            }
            50% {
                opacity: 1;
                transform: scale(1.5);
            }
        }
        
        /* Particle Background */
        #particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.7);
            box-shadow: 0 0 20px 8px rgba(255, 255, 255, 0.7), 0 0 40px 16px rgba(255, 255, 255, 0.3);
            animation: floatParticle linear infinite;
        }
        
        @keyframes floatParticle {
            0% { transform: translateY(0) scale(1); opacity: 1; }
            80% { opacity: 1; }
            100% { transform: translateY(-60vh) scale(1.2); opacity: 0; }
        }


     

.latest-updates {
  width: 100%;
  height: 300px;
}

.updates-header {
  width: 30%;
  height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;
}
.updates-header h3 {
  font-size: 16px;
  color: darkgray;  
  font-family: 'Inter', sans-serif;
}
.updates-header span {
  margin-top: -4px;
  color: darkgray;
  font-size: 20px;
  font-weight: bold;
}

.update-contact {
  margin-top: 20px;
  width: 80%;
  height: 200px;
  margin: auto;
  display: flex;
}

.num {
  width: 30%;
  height: 100%;
  display: flex;
}

.num i {
  border: 0.5px solid #76867e;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 25px;
  color: #fff;
  transition: 0.3s ease-in-out;
  margin-left: 20px;
  margin-top: 60px;
}

.num i:hover {
  border: none;
  background-color: #fff;
  color: #000;
  transform: scale(1.1);
}
.num span {
  color: #fff;
  margin-top: 85px;
  margin-left: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
}


.num2 {
  width: 40%;
  height: 100%;
  display: flex;
}
.num2 a {
  text-decoration: none;
}

.num2 i {
  border: 0.5px solid #76867e;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 25px;
  color: #fff;
  transition: 0.3s ease-in-out;
  margin-left: 20px;
  margin-top: 60px;
}

.num2 i:hover {
  border: none;
  background-color: #fff;
  color: #000;
  transform: scale(1.1);
}
.num2 span {
  color: #fff;
  margin-top: 85px;
  margin-left: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
}

.num .num-email {
  color: #fff;
  margin-top: 85px;
  margin-left: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}
.icons-email-update {
  width: 30%;
  margin-left: 120px;
  height: 100%;
  display: flex;
  gap: 15px;
}

.icons-email-update i {
  border: 0.5px solid #76867e;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #fff;
  transition: 0.3s ease-in-out;
  margin-left: 27px;
  margin-top: 70px;
}

.icons-email-update i:hover {
  border: none;
  background-color: #fff;
  color: #000;
  transform: scale(1.1);
}
.icons-email-update a {
  text-decoration: none;
}



.service-footer {
  overflow: hidden;
  width: 100%;
  height: 100px;
  border: 0.1px solid gray;
  border-left: none;
  border-right: none;
}

.service-logo {
  width: 200px;
  height: 200px;
}
.service-content-footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
  top: 0;
  left: 0;
}
.service-content-footer a {
    text-decoration: none;
}
.service-content-footer p {
  color: gray;
  font-family: 'inter', sans-serif;
  font-size: 17px;
  position: absolute;
  top: 50px;
  left: 90px;
}
.service-content-footer span {
  color: #37bd54;
}

.service-logo {
  position: absolute;
  right: 100px;
  top: -50px;
}


.scroll-to-top-service {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color:#252734;
  border: 1px solid rgb(73, 68, 68);
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  display: nosne;
  transition: transform 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 60px;
  height: 60px;
}

.scroll-to-top-service h1 {
  font-size: 24px;
  margin-top: 4px;
  color: #fff;

}

.scroll-to-top-service:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}


.btn-for-error {
  max-width: 500px;
  width: 100%;
  height: 100px;
  border: 1px solid red;
}

.error-action-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin: 32px auto 24px auto;
    flex-wrap: wrap;
    position: static;
    z-index: 1;
}

.home-btn-error {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.15);
    border: 1px solid red;
}

.home-btn-error {
    background: darkgray;
    color: white;
    border: none;
}

.home-btn-error:hover {
    background: #3182ce;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(66, 153, 225, 0.2);
}
 /* Back to Top Button Styles */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #2f2c31 0%, #222324 100%);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(137, 135, 139, 0.4);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 1000;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 25px rgba(30, 28, 32, 0.6);
        }
        
        .back-to-top:active {
            transform: translateY(0);
        }
        
        .back-to-top svg {
            width: 24px;
            height: 24px;
            fill: white;
            transition: transform 0.3s ease;
        }
        
        .back-to-top:hover svg {
            transform: translateY(-3px);
        }

 
        
        /* Responsive design */
        @media (max-width: 1050px) {
            body {
                border: 1px solid red;
            }
            .error-code {
                font-size: 140px;
            }
            
            .broken-robot {
                width: 130px;
                height: 170px;
            }
            
            .robot-head {
                width: 100px;
                height: 100px;
            }
            
            .robot-body {
                width: 120px;
                height: 80px;
            }
            
            .service-text h1 {

                font-size: 50px;
                font-family: 'inter', sans-serif;
            }
            .border-text {
                margin-top: 20px;
            }
            .home-btn-error {
                position: absolute;
                top: 100px;
                right: 20px;
                margin-top: 351px;
            }
            .latest-updates {
                width: 100%;
            }
            .updates-header {
                top: 60px;
                position: relative;
                white-space: nowrap;
                color: #fff;
            }
            .update-contact {
                position: relative;
                top: -110px;
                left: -70px;
                display: flex;
                gap: 20px;
                align-items: center;
                width: 100%;
                height: 100px;
            }

            .icons-email-update {
                position: absolute;
                top: 180px;
                left: 0;
            }
         .num span {
            display: none;
            position: relative;
            top: 20px;
            margin-top: 20px;
            font-size: 12px;
            white-space: nowrap;
         }
         .num2 span {
            display: none;
         }
         .num {
            position: absolute;
            top: 180px;
            left: 20px;
            width: 50px;
         }
         .num2 {
            position: absolute;
            top: 180px;
            right: -180px;
            width: 50px;
         }
         .update-contact .icons-email-update i {
            position: relative;
            top: -8px;
            font-size:  25px;
            width: 50px;
            height: 50px;
         }
         .update-contact .num i {
            position: relative;
            top: 2px;
            left: 15px;
            width: 50px;
            height: 50px;
         }
         .update-contact .num2 i {
            position: relative;
            top: 2px;
            left: -15px;
            width: 50px;
            height: 50px;
         }
         .service-content-footer {
            margin-left: -70px;
       
         }
     


        }
        


               /* MOBILE */


        @media (max-width: 768px) {
            .error-code {
                font-size: 120px;
            }
            
            .error-title {
                font-size: 28px;
                font-family: 'inter', sans-serif;
            }
            
            .error-message {
                font-size: 14px;
                    font-family: 'inter', sans-serif;
            }
            
            .broken-robot {
                width: 110px;
                height: 150px;
            }
            
            .robot-head {
                width: 80px;
                height: 80px;
                left: 15px;
            }
            
            .robot-body {
                width: 100px;
                height: 70px;
            }
            
            .error-action-buttons {
                flex-direction: column;
                align-items: center;
            }
            .service-text h1 {

                font-size: 50px;
                font-family: 'inter', sans-serif;
            }
            .border-text {
                margin-top: 20px;
            }
            .home-btn-error {
                position: absolute;
                top: 100px;
                right: 20px;
                margin-top: 351px;
            }
            .latest-updates {
                width: 100%;
            }
            .updates-header {
                top: 60px;
                position: relative;
                white-space: nowrap;
            }
            .update-contact {
                position: relative;
                top: -110px;
                left: -70px;
                display: flex;
                gap: 20px;
                align-items: center;
                width: 100%;
                height: 100px;
            }

            .icons-email-update {
                position: absolute;
                top: 180px;
                left: 0;
            }
         .num span {
            display: none;
            position: relative;
            top: 20px;
            margin-top: 20px;
              font-size: 12px;

              white-space: nowrap;
         }
         .num2 span {
            display: none;
         }
         .num {
            position: absolute;
            top: 180px;
            left: 20px;
            width: 50px;
         }
         .num2 {
            position: absolute;
            top: 180px;
            right: -180px;
            width: 50px;
         }
         .update-contact .icons-email-update i {
            position: relative;
            top: -8px;
            font-size:  25px;
            width: 50px;
            height: 50px;
         }
         .update-contact .num i {
            position: relative;
            top: 2px;
            left: 15px;
            width: 50px;
            height: 50px;
         }
         .update-contact .num2 i {
            position: relative;
            top: 2px;
            left: -15px;
            width: 50px;
            height: 50px;
         }
         .service-content-footer {
            margin-left: -70px;
       
         }
         .service-logo {
            display: none;
         }
        }
        











  @media (max-width: 480px) {        
            .error-code {
                font-size: 100px;
                flex-direction: column;
            }
            
            .container {
                padding: 30px 20px;
            }
            
            .error-title {
                font-size: 24px;
            }
            
            .broken-robot {
                width: 90px;
                height: 130px;
                margin: 20px 0;
            }
            
            .robot-head {
                width: 70px;
                height: 70px;
                left: 10px;
            }
            
            .robot-face {
                width: 50px;
                top: 20px;
                left: 10px;
            }
            
            .robot-eye {
                width: 18px;
                height: 18px;
            }           
            .robot-pupil {
                width: 7px;
                height: 7px;
                top: 5px;
                left: 5px;
            }
            
            .robot-mouth {
                width: 25px;
                left: 12px;
            }
            
            .robot-body {
                width: 80px;
                height: 60px;
            }
            
            .robot-arm, .robot-leg {
                width: 18px;
            }
            
            .robot-arm {
                height: 60px;
            }
            
            .robot-leg {
                height: 40px;
                bottom: -30px;
            }
            
            .home-btn-error, .return-btn-error {
                padding: 14px 25px;
                font-size: 14px;
            }

        }
