  * {
            padding: 0;
            box-sizing: border-box;
            margin: 0;
        }
    
        /* 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);
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-thumb) var(--scroll-track);
}


        /* Scroll animation styles */
        .fade-section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-section.fade-up {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-section.fade-down {
            opacity: 1;
            transform: translateY(0);
        }

        /* Delay classes for staggered animations */
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
        .delay-5 { transition-delay: 0.5s; }

        .title-logo {
            width: 100%;
            height: 60px;
            background: #262626;
            border-bottom: 2px solid #000;
        }
        .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;
        }

        .header-sticky {
            position: fixed;
            top: 0px;
            left: 0;
            width: 100%;
            background: #252734;
            z-index: 1000;
            transition: box-shadow 0.3s, background 0.3s;
            box-shadow: none;
        }

        .header-sticky.sticky {
            box-shadow: 0 4px 18px rgba(0,0,0,0.18);
            background: #252734;
            transform: translateY(0);
        }

        .contact-link {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 130px;
        }
        .contact-link a {
            text-decoration: none;
        }
        .home-section {
            width: 100%;
            height: 600px;
            background: rgba(42,45,58,255);
        }

        .menus-section {
            background: #f6f6f6;
            padding-top: 100px;
            padding-bottom: 100px;
        }
        .menus-container {
            position: relative;
            width: 80%;
            margin: auto;
            margin-top: 90px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 48px;
        }

        .menu-box{
            border: 1px solid rgb(153, 149, 149);
            display: flex;
            position: relative;
            top: 0;
            left: 0;
            margin: auto;
            width: 328px;
            height: 400px;
            line-height: 20px;
            background: rgb(255, 255, 255);
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
            text-align: center;
            transition: 0.3s ease-in-out;
            text-decoration: none;
        }
        .menu-box:hover { 
            position: relative;
            top: -20px;
            left: 0;
        }

        .menu-img {
            width: 710px;
            height: 83%;
        }
        .home-img {
            transition: 0.3s ease-in-out;
            width: 100.4%;
            height: 83%;
        }

        .home-menu-text {
            position: absolute;
            top: 100px;
            width: 100%;
        }
        .menu-box h4 {
            position: absolute;
            bottom: 20px;
            left: 42%;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            color: #252424;
            transition: 0.3s ease-in-out;
        }
        .menu-box h4:hover {
            color: rgb(182, 38, 28);
        }
        .menu-box span {
            position: absolute;
            bottom: 30px;
            color: #302e2e;
            font-weight: 550;
            left: 38%;
            transition: 0.3s;
        }
        .menu-box span:hover {
            color: #82b440; 
        }
        .edris {
            width: 100px;
            background: #fff;
        }

        .ser-details {
            margin-left: -35px;
        }
        .proj-details {
             margin-left: -15px;
        }
        .faq-details {
            margin-left: 15px;
        }
        .rec-details {
            margin-left: -45px;
        }
        .eror-four {
            margin-left: -10px;
        }
        .clie-details {
            margin-left: -27px;
        }

        .hires-me {
            position: absolute;
            width: 100px;
            height: 30px;
            top: 0px;
            right: 10px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            padding: 20px 40px;
            border-radius: none;
            cursor: pointer;
            border-radius: 6px;
            background-color: #82b440; 
            transition: 0.4s ease-in-out;
        }   
      
        .hires-me:hover {
          background: #5d8628; ;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        } 

        /* Mobile devices (portrait and landscape) */
        @media only screen and (max-width: 768px) {
          .title-logo {
            width: 100%;
            height: 40px;
          }
          .title-logo h1 {
            padding-left: 20px;
            padding-top: 0px;
            width: 100%;
            height: 40px;
          }
          .contact-link {
            display: block;
            text-align: center;
          }
        }

        .sub-header {
            position: absolute;
            width: 100%;
            height: 120px;
        }
        .home-logo {
            position: relative;
            top: 0px;
            left: 150px;
            width: 220px;
            height: 220px;
        }

        /* LANDING PART PAGE */
        .img-content-wrappper {
            position: relative;
            top: 120px;
            width: 100%;
            height: 80%;
        }

        .title-box-index {
            width: 40%;
            height: 100%;
        }
        .title-box {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
        }
        .title-box h3 {
            position: absolute;
            top: 100px;
            left: 100px;
            color: #fff;
            font-weight: 800;
            font-size: 70px;
            font-family: 'Inter', sans-serif;
        }
        .title-box span {
          color: #fff;
            position: absolute;
            top: 160px;
            left: 100px;
            font-weight: 600;
            font-size: 30px;
           font-family: 'Inter', sans-serif;
        }

        .read-more {
            text-decoration: none;
            position: absolute;
            top: 300px;
            left: 100px;
            font-size: 15px;
            border: 2px solid #fff;
            padding: 15px 40px;
            transition: 0.2s ease-in-out;
            border-radius: 34px;
            font-family: 'Inter', sans-serif;
            color: #fff;
        }

        .read-more:hover {
            background-color: #fff;
            color: #000;
        }

        .picture-details {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
        }
        .pictureOne {
            position: absolute;
            top: -70px;
            left: 250px;
            width: 500px;
            height: 550px;
            border: 1px solid rgb(66, 64, 64);
            background-image: url('Homecopy.PNG');
            background-repeat: no-repeat;
            background-size: cover;
            z-index: 111;
            background-position: center;
        } 

        .picturetwo {
            position: absolute;
            top: 80px;
            left: 20px;
            width: 300px;
            height: 400px;
            border: 1px solid rgb(66, 64, 64);
            background-image: url('home3.PNG');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .picturetree {
            position: absolute;
            top: 120px;
            right: 10px;
            width: 100px;
            height: 350px;
            border: 1px solid rgb(66, 64, 64);
             background-image: url('four.PNG');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .menu-box i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 20px;
            color: #fff;
            height: 60px;
            width: 60px;
            border-radius: 50%;
            border: 0.5px solid rgb(141, 138, 138);
            transition: 0.1s ease-in-out;
            opacity: 0;
            cursor: pointer;
        }
        .menu-box:hover i {
            opacity: 1;
            border: 1px solid #000;
            background: #fff;
            color: #333;
           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;
        }
        .menu-box:hover {
            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;
        }

        .edris-features {
            margin-top: 100px;
            width: 100%;
            height: 700px;
            background-color: #ffffff;
            padding-bottom: 100px;
        }

        .items-feature-container {
            position: relative;
            top: 100px;
            width: 80%;
            height: 90%;
            margin: auto;
        }
        .feature-title  {
            font-size: 45px;
            font-family: 'inter', sans-serif;
            font-weight: 600;
            color: #333;
        }

        .items-container {
            position: relative;
            top: 44px;
            width: 100%;
            height: 78%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 8px;
        }
        .items-box {
            width: 100%;
            height: 100%;
            position: relative;
            top: 0;
            left: 0;
        }

        .text-items h3 {
            color: #554e4e;
            font-weight: 100;
            font-family: 'inter', sans-serif;
            font-size: 20px;
            margin-left: 10px;
        }
        .text-items p {
            margin: 10px;
            color:#554e4e;
            margin-left: 10px;
             font-weight: 100;
            font-family: 'inter', sans-serif;
            font-size: 15px;
        }
        .icons-feature {
            position: absolute;
            top: 0;
            left: 0;
            width: 100px;
            height: 100%;
        }
        .title-meaning-features {
            position: absolute;
            top: 0;
            left: 100px;
            width: 250px;
            height: 100%;
        }
        .icons-feature i {
            color: darkgray;
            font-size: 40px;
            margin-top: 0;
            margin-left: 28px;
        }
        .title-meaning-features h4 {
            font-size: 20px;
             color: rgba(0, 0, 0, 0.8);
             font-family: 'inter', sans-serif;
             font-weight: 600;
             margin-left: 10px;
        }
        .title-meaning-features p {
            margin-left: 10px;
            margin-top: 10px;
            color: rgba(0, 0, 0, 0.8);
            font-size: 14px;
            font-family: 'inter', sans-serif;
        }

        .last-footer {
            width: 100%;
            height: 200px;
            box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
            background:#262626 ;
        }
        .last-footer-content {
            display: flex;
            align-items: center;
            justify-content: space-around;
            width: 100%;
            height: 100%;
        }

        .last-footer-content h1 {
            color: #fff;
            font-family: 'inter', sans-serif;
            font-weight: 100;
            font-size: 30px;
        }
        .last-footer-content a {
            text-decoration: none;
            color: #fff;
            font-family: 'inter', sans-serif;
            font-weight: 100;
            font-size: 20px;
            padding: 20px 40px;
            border-radius: 50px;
            border: 1px solid #fff;
            transition: 0.3s ease-in-out;
        }

        .last-footer-content a:hover {
            background: #fff;
            color: #000;
        }

        .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;
        }
    
        .my-p-service { 
            position: relative;
            top: 20px;
            color: darkgray;
            font-size: 20px;
            font-family: 'Inter', sans-serif;
        }
        .title-service h1 {
            position: relative;
            width: 100%;
        }



 /* Spider web overlay (non-interactive) */
#spider-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* never intercept clicks */
  z-index: 9999;
  overflow: visible;
}
#spider-overlay line,
#spider-overlay path {
  stroke: rgba(255,255,255,0.14);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.45));
  mix-blend-mode: screen;
  will-change: stroke-dashoffset, opacity;
}
#spider-overlay .web-group {
  opacity: 1;
  transition: opacity 900ms ease 4s; /* fade out after draw completes */
}
#spider-overlay .web-hidden {
  opacity: 0;
}






@media screen and (max-width: 767px) {

.menus-container {
    display: flex;
    flex-wrap: wrap;
}
.menu-box {
    flex-grow: 1;
    flex-basis: 100%;
}
  .title-logo {
    width: 100%;
    height: 60px;
  }
  .picturetwo, .picturetree {
    display: none;
  }
  .pictureOne {
    display: none;
  }
  .picture-details {
    height: 400px;
  }
  .img-content-wrappper {
    flex-wrap: wrap;
  }
  .title-box-index {
    width: 100%;
  }
  .items-container {
    width: 100%;
  }
  .feature-title {
    text-align: center;
  }
  .items-feature-container {
    margin-top: -100px;
    width: 100%;
  }


.title-box-index {
    width: 100%;
}
.items-container {
    width: 100%;
}
.feature-title {
    text-align: center;
}
.items-feature-container {
    margin-top: -100px;
    width: 100%;
}

.last-footer {
    position: relative;
    top: 1050px;
    width: 100%;
    left: 0;
}
.last-footer a {
    width: 210px;
}
.last-footer-content {
    line-height: 20px;
    width: 100%;
    position: relative;
    top: -20px;
    margin-left: 10px;
    white-space: nowrap;
    display: grid;
}
.last-footer-content h1 {
    font-size: 25px;
    margin-top: -20px;
}
.items-feature-container {
    height: 1575px;
    display: flex;
    flex-direction: column;
}
.feature-title {
    flex-basis: 200;
    font-size: 55px;
    position: relative;
    top: -110px;
    border-radius: 10px;
    font-family: sans-serif;
    background: #252734;
    color: #fff;
    width: 80%;
    margin: auto;
    left: 0;
    padding: 5px 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.items-container {

    position: relative;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column; 
    gap: 40px;
    height: 1500px;
}
.items-box {
    flex-grow: 1;
    flex-basis: 100%;
    color: darkgray;
    width: 80%;
    margin: auto;
    background: #2a2c39;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.items-box:hover {
    transform: scale(1.1);
    cursor: pointer;
    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;
}
.title-meaning-features {
    margin-top: 20px;
}
.title-meaning-features h4 {
    font-size: 25px;
    text-align: center;
    color: #fff;
    font-family: 'inter', sans-serif;
    font-weight: 600;
    margin-left: 10px;
    white-space: nowrap;
}
.title-meaning-features p {
    font-size: 14px;
    color: darkgray;
    font-family: 'inter', sans-serif;
    text-align: start;
    margin-left: 50px;
}
.icons-feature i {
    transition: 0.3s ease-in-out;
    font-size: 50px;
    margin-top: 40px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    color: #fff;
}
.icons-feature i:hover {
transform: scale(1.1);
}
.last-footer-content h1 {
  margin-top: 20px;
  font-size: 19px;
}
.last-footer-content a {
    position: absolute;
    top: 150px;
    font-size: 14px;
    right: 50px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 10px;
    border-radius: 50px
}
 .my-services {
    z-index: 111;
    position: relative;
    top: -140px;
 }
.last-footer-content a:hover {
    transform: scale(1.1);
    cursor: pointer;
    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;
}




@media screen and (min-width: 768px) and (max-width: 1023px) {
      .header-sticky {
      width: 100%;
      }
       .pictureOne, .picturetree {
        display: none;
      }
      .title-box span {
        white-space: nowrap;
        font-size: 33px;
        position: absolute;
        top: 260px;
        left: 40px;
        z-index: 1111;
      }
      .title-box a {
        position: relative;
        top: 380px;
        left: 40px;
      }
      .picturetwo{
       display: none;
        left: -100px;
      }
      .title-box h3 {
        position: absolute;
        z-index: 1111;
        top: 200px;
        left: 40px;
        color: #fff;
      }
.menus-container {
    display: flex;
    flex-wrap: wrap;
}
.menu-box {
    flex-grow: 1;
    flex-basis: 100%;
}
      .title-logo {
        width: 100%;
        height: 60px;
      }
      .picture-details {
        height: 400px;
      }
      .img-content-wrappper {
        flex-wrap: wrap;
      }
      .title-box-index {
        width: 100%;
      }
      .items-container {
    width: 100%;
}
.feature-title {
    text-align: center;
}
.items-feature-container {
    margin-top: -100px;
    width: 100%;
}

.last-footer {
    position: relative;
    top: 1050px;
    width: 100%;
    left: 0;
}
.last-footer a {
    width: 210px;
}
.last-footer-content {
    line-height: 20px;
    width: 100%;
    position: relative;
    top: -20px;
    margin-left: 10px;
    white-space: nowrap;
    display: grid;
}
.last-footer-content h1 {
    font-size: 25px;
    margin-top: -20px;
}
.items-feature-container {
    height: 1575px;
    display: flex;
    flex-direction: column;
}
.feature-title {
    flex-basis: 200;
    font-size: 55px;
    position: relative;
    top: -110px;
    border-radius: 10px;
    font-family: sans-serif;
    background: #252734;
    color: #fff;
    width: 80%;
    margin: auto;
    left: 0;
    padding: 5px 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.items-container {

    position: relative;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column; 
    gap: 40px;
    height: 1500px;
}
.items-box {
    flex-grow: 1;
    flex-basis: 100%;
    color: darkgray;
    width: 80%;
    margin: auto;
    background: #2a2c39;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.items-box:hover {
    transform: scale(1.1);
    cursor: pointer;
    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;
}
.title-meaning-features {
    margin-top: 20px;
}
.title-meaning-features h4 {
    font-size: 25px;
    text-align: center;
    color: #fff;
    font-family: 'inter', sans-serif;
    font-weight: 600;
    margin-left: 10px;
    white-space: nowrap;
}
.title-meaning-features p {
    font-size: 14px;
    color: darkgray;
    font-family: 'inter', sans-serif;
    text-align: start;
    margin-left: 50px;
}
.icons-feature i {
    transition: 0.3s ease-in-out;
    font-size: 50px;
    margin-top: 40px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    color: #fff;
}
.icons-feature i:hover {
transform: scale(1.1);
}
.last-footer-content h1 {
  margin-top: 20px;
  font-size: 29px;
}
.last-footer-content a {
    position: absolute;
    top: 150px;
    font-size: 20px;
    right: 270px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 10px;
    border-radius: 50px
}
}
}


