 .section-counter {
      background: #fff;
      text-align: center;
    }

.section-counter {
    text-align: center
}
  
@media (prefers-color-scheme: dark) {
        .section-counter{
            background: #272727;
        }
    }

.section-counter .value {
    font-size: 42px
}

.section-counter .caption {
    font-size: 18px
}

.section-counter .h4 {
    font-weight: 400
}

@media (min-width: 768px) {
    .section-counter .row {
        margin-bottom:0
        
    }

    .section-counter .counter {
        margin-bottom: 0
    }

    .section-counter .value {
        font-size: 60px
    }

    .section-counter .caption {
        font-size: 22px
    }
}
/* Hamburger positioning */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 1001; /* Above everything else */
}

.hamburger span {
  display: block;
  height: 3px;
  background: #c4baba;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile nav hidden by default */
.mobile-nav {
  background: #181818;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-in-out;
}
/* Morph into X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* Slide down when active */
.mobile-nav.active {
  max-height: 500px; /* adjust based on menu size */
}

/* Mobile nav items */
.mobile-nav .nav-item {
  padding: 1px;

  padding-right: 30px;
}

.mobile-nav .nav-item a {
  text-decoration: none;
  color: #e4e1e1;
  font-size: 12px;
}
    .nav-item a:hover {
      color: rgba(255, 4, 4, 0.959);

    }


/* Make sure mobile nav only shows on small screens */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
  .mobile-nav {
    display: none;
  }
}


.section-hero {
   /*background: 0 0;*/
  position: relative;     
  background-image: url(https://hawkridgesys.com/wp-content/uploads/Campaign_Crop_Video-solidworks-2025-proteus-explode-view-bg-campaign.jpg); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100px;    
  display: flex;        
  font-weight: 600; 
  background-color: #0a0a0aee;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0);
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

.section-hero:hover{
color: rgb(255, 192, 84);
text-shadow: 
    -1px -1px 0 #000000,  /* Top-left shadow */
     1px -1px 0 #000,  /* Top-right shadow */
    -1px  1px 0 #000,  /* Bottom-left shadow */
     1px  1px 0 #000; /* Bottom-right shadow */
    transition: visibility .5s,opacity .5s linear;


}



/* Gradient Overlay */
.section-hero {
  content: "";
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 /*background: linear-gradient(
  rgb(0, 0, 0),
  rgb(255, 255, 255)
    ); 
 /* Adjust colors/transparency as needed */
  z-index: 2;
}

/* Content on top of overlay */
.section-hero > * {
  position: relative;
  z-index: 3;
}
   /* *text-align: left;
    position: relative;
    color: #141414;
    padding-top: 48px;
    padding-bottom: 28px
}*/









@media (min-width: 768px) {
    .section-hero {
        padding-bottom:24px;
        padding-top: 80px;
        text-align: center
    }

    .section-hero h1 {
        font-size: 32px;
        font-style: Arial;
        line-height: 1.38;
        font-weight: 800;
        text-align: center!important
    }

    .section-hero .cta-buttons {
        margin-top: 20px
    }
}

.section-customers-list.one-line {
    padding-top: 10px;
    background-color: #f3f3f3ec;
    position: relative;
    padding-bottom: 20 px
}

.section-customers-list .customers {
    align-items: center;
    text-align: center;
    font-size: 0;
    position: relative;
}

@media (min-width: 1200px) {
    .section-customers-list .customers {
        width:90%!important;
        margin-left: auto;
        margin-right: auto
    }

    .section-customers-list .trusted-partner-wrapper {
        width: auto!important
    }

    .trusted-partner-title {
        border-right: 1px solid #ccc
    }

}
    .section-featured-designs {
      position: relative;
      overflow: hidden;
      padding: 1rem 2rem;
    }

   

.section-services-tiles {
    text-align: center;
     background: #e0e0e0;
}

.section-services-tiles .services-tiles {
    font-size: 14px;
    overflow: hidden
}

.section-services-tiles .services-tiles .row {
    margin-top: 2.5em;
    margin-bottom: 2.5em;
    padding-left: 16px;
    padding-right: 15px;
    padding-top: 1px
}

.section-services-tiles .services-tiles .row>a {
    border: 1px solid #ffaa64;
    padding: .5em;
    color: #1b1b1b;
    text-decoration: none;
    margin-left: -1px;
    margin-top: -1px;
    position: relative;
    min-height: 141px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-services-tiles .services-tiles .overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 1;
    border: 2px solid #008489;
    padding: 1.5em 0;
    margin: -1px;
    visibility: hidden;
    opacity: 0;
    transition: visibility .2s,opacity .2s linear
}

@media (min-width: 768px) {
    .no-touch .section-services-tiles .services-tiles a:hover .overlay {
        visibility:visible;
        opacity: 1
    }
}

.section-services-tiles .services-tiles .overlay ul {
    list-style: none outside none;
    padding-left: 0
}

.section-services-tiles .services-tiles .overlay ul>li {
    white-space: nowrap;
    color: #008489;
    margin-bottom: 4px;
    font-weight: 100;
    font-size: 1em
}

.section-services-tiles .services-tiles .overlay ul>li.more {
    margin-top: 10px;
    font-style: italic;
    font-size: 1em
}

.section-services-tiles .services-tiles .text-lead {
    font-size: 1em
}

.section-services-tiles .services-tiles .service-icon {
    transform: scale(.6);
    margin-top: -9px;
    margin-bottom: -12px
}

@media (min-width: 768px) {
    .section-services-tiles .services-tiles {
        font-size:16px
    }

    .section-services-tiles .services-tiles .service-icon {
        transform: unset;
        margin-top: 0;
        margin-bottom: 7px
    }

    .section-services-tiles .services-tiles .row>a {
        min-height: 152px;
        padding: .5em
    }

    .section-services-tiles .services-tiles .overlay {
        padding: 1.2em 0
    }
}

@media (min-width: 992px) {
    .section-services-tiles .services-tiles .row>a {
        padding:1em .5em
    }

    .section-services-tiles .services-tiles .overlay {
        padding: 1.3em 0
    }
}


/* 🌙 Dark Mode overrides */
@media (prefers-color-scheme: dark) {
    
  .section-services-tiles .services-tiles .row>a {
    border: 1px solid #ffffff; /* lighter border */
  }

  .service-icon-wrap {
    background-color: rgba(241, 175, 75, 0.801); /* soft neutral */
  }

  .section-services-tiles .services-tiles .overlay ul>li {
    color: #4da6ff; /* lighter accent */
  }

  .section-steps .steps-content .step .step-title {
    color: #ff4d4d; /* vivid highlight */
  }

  .section-steps .steps-content .step .step-description {
    color: #e0e0e0; /* light gray text */
  }

  .section-steps .steps-content a {
    color: #66b3ff; /* links visible on dark */
  }

  /* Optional global overrides for this section */
  .section-services-tiles
  {
    background-color: #535353; /* dark background */
    color: #f0f0f0; /* general light text */
  }
}

.section-steps {
    text-align: center;
    color: #007BFF;
    
}

.section-steps .steps-content .step {
    margin-top: 30px;
    position: relative
}

@media (min-width: 992px) {
    .section-steps .steps-content {
        margin-left:-30px;
        margin-right: -30px
    }

    .section-steps .steps-content .step {
        padding-left: 30px;
        padding-right: 30px
    }
}

.section-steps .steps-content .step .step-icon {
    display: block;
    margin-bottom: 20px;
    position: absolute;
    left: 15px;
    top: 0;
    width: 120px;
    text-align: center
}

.section-steps .steps-content .step .step-icon.icon-glyph {
    margin-bottom: 0;
    color: #aaa;
    font-size: 5rem;
    text-align: center
}

.section-steps .steps-content .step .step-title,.section-steps .steps-content .step .step-content {
    padding-left: 135px;
    text-align: center
}

.section-steps .steps-content .step .step-icon img {
    display: inline-block;
    height: 80px;
    width: auto
}

@media (min-width: 768px) {
    .section-steps .steps-content .step .step-icon {
        position:relative;
        left: auto;
        top: auto;
        width: auto
    }

    .section-steps .steps-content .step .step-icon img {
        height: 135px;
        margin-left: 0
    }

    .section-steps .steps-content .step .step-title {
        text-align: center
    }

    .section-steps .steps-content .step .step-title,.section-steps .steps-content .step .step-content {
        padding-left: 0
    }
}

.section-steps .steps-content .step .step-title {
    margin-top: 10px;
    margin-bottom: 10px
}

@media (min-width: 768px) {
    .section-steps .steps-content .step .step-title {
        margin-bottom:10px
    }
}

.section-steps .steps-content .step .step-description {
    margin: 10px 0
}

.section-steps .steps-content .step .btn {
    margin: 10px 0;
    max-width: 100%
}

@media (min-width: 768px) {
    .section-steps .steps-content .step .btn {
        visibility:hidden;
        padding-left: 50px;
        padding-right: 50px
    }

    .section-steps .steps-content .step:hover .btn {
        visibility: visible
    }
}

.section-steps .steps-content.with-carousel .step {
    cursor: pointer
}

.section-steps .steps-content.with-carousel .step .step-icon,.section-steps .steps-content.with-carousel .step .step-title,.section-steps .steps-content.with-carousel .step .step-content {
    color: #ccc;
    transition: color .4s ease-in-out
}

.section-steps .steps-content.with-carousel .step.active .step-icon {
    color: #a60000
}

.section-steps .steps-content.with-carousel .step.active .step-title,.section-steps .steps-content.with-carousel .step.active .step-content {
    color: inherit
}

.navbar {
    margin-bottom: 0
}


.section-services-tiles .services-tiles .text-lead {
    font-size: 15px;
    font-weight: 700
}

.section-services-tiles .services-tiles .row {
    margin-top: 6px;
    margin-bottom: 6px
}

.section-services-tiles .services-tiles .row>a {
    border: 1px solid #000000
}

.service-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(21, 204, 15, 0.171);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%
}

.section-services-tiles .services-tiles .overlay ul>li {
    color: #398ddb;
    font-weight:600;
    font-size: small;
    margin-bottom: 0;
    padding-top: 4px;
    padding-bottom: 4px
}


.carousel {
      position: relative;
      overflow: hidden;
      width: 100%;
      margin: 0;
      font-family: sans-serif;
      padding: 1rem 1rem 0 0;   
      background: #e0e0e0;
      font-family: sans-serif;
      text-align: center;
    }
    @media (prefers-color-scheme: dark) {
        .carousel{
            background: #272727;
        }
    }

    .carousel-track {
      display: flex;
      width: calc(300px * 5 * 2 );
      animation: slide-left 100s linear infinite;
      will-change: transform;
      overflow-x: hidden;
    }


    .carousel-track:hover {
      animation-play-state: paused;
    }

    .carousel-item {
      display: flex;
      position: relative;
      width: 300px;
      height: 300px ;
      flex: 0 0 auto;
      padding: 8px 0 40px;
      margin-right: 15px;
      border-radius: 8px;

    }


    .carousel-item img {
      flex: 0 0 auto;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: inline-block;
      border-radius: 8px;
      box-shadow: 0 15px 18px 1px rgba(204, 15, 15, 0.253)
     
    }

    .overlay {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 40px;
      z-index: 1;
      background: rgba(5, 84, 148, 0.76);
      opacity: 0;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px;
      transition: opacity 0.3s ease;
     
    }

    .carousel-item:hover .overlay {
      opacity: 1;
    }

    @keyframes slide-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-60%);
      background: rgba(232, 156, 156, 0.845);
      border: none;
      padding: 10px;
      cursor: pointer;
      z-index: 10;
    }

    .arrow:hover {
      background: rgba(153, 152, 152, 0.6);
    }

    .arrow-left {
      left: 10px;
    }

    .arrow-right {
      right: 10px;
    }

    @media (max-width: 600px) {
      .carousel-item {
        width: 264px;
        height: 260px;
      }
    }




.section-services-tiles .services-tiles .overlay ul {
    margin-bottom: 0
}

.section-services-tiles .services-tiles .overlay ul>li.more {
    font-style: normal;
    margin-top: 0
}

.section-services-tiles .services-tiles .overlay {
    padding: 10px
}

.section-steps .steps-content .step {
    margin-top: 24px
}

.section-steps .steps-content .step .step-icon {
    position: relative;
    left: auto;
    right: auto;
    text-align: inherit;
    width: 90px;
    height: 90px
}

.section-steps .steps-content .step .step-icon img {
    height: auto
}

.section-steps .steps-content .step .step-content {
    padding-left: 0
}

.section-steps .steps-content .step .step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    margin-top: 0;
    padding-left: 0;
    color: #8d0707
}

.section-steps .steps-content .step .step-description {
    margin-bottom: 16px;
    line-height: 1.5;
    color: #000000
}

.section-steps .steps-content a {
    font-weight: 600
}

.section-steps .steps-content a i {
    font-size: 15px
}


@media (prefers-color-scheme: dark) {
    
  .section-services-tiles .services-tiles .row>a {
    border: 1px solid #ffffff; /* lighter border */
  }

  .service-icon-wrap {
    background-color: rgba(241, 175, 75, 0.801); /* soft neutral */
  }

  .section-services-tiles .services-tiles .overlay ul>li {
    color: #4da6ff; /* lighter accent */
  }

  .section-steps .steps-content .step .step-title {
    color: #ff4d4d; /* vivid highlight */
  }

  .section-steps .steps-content .step .step-description {
    color: #000000; /* light gray text */
  }

  .section-steps .steps-content a {
    color: #ffffff; /* links visible on dark */
  }

  /* Optional global overrides for this section */
  .section-services-tiles{
    background-color: #535353; /* dark background */
    color: #f0f0f0; /* general light text */
  }
}

    .testimonials-section {
      padding: 20px 20px;
      background: #fff;
      text-align: center;
    }

        @media (prefers-color-scheme: dark) {
        .testimonials-section{
            background: #535353;
        }
    }


    .testimonials-container {
        padding: 60px 20px;
      display: flex;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
    }

    .testimonial-box {
      background: #f9f9f9;
      border: 2px solid #e0e0e0;
      border-radius: 20px;
      padding: 30px 20px;
      width: 300px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      position: relative;
    }
        @media (prefers-color-scheme: dark) {
        .testimonial-box{
            background: #535353;
        }
    }
    .stars {
      color: gold;
      font-size: 20px;
      margin-bottom: 15px;
    }

    .testimonial-text {
      font-style: italic;
      font-size: 16px;
      color: #333;
      margin-bottom: 30px;
      position: relative;
    }
            @media (prefers-color-scheme: dark) {
         .testimonial-text{
            color: #cccccc;
        }
    }

    .testimonial-text::before {
      content: "“";
      color: #007BFF;
      font-size: 30px;
      position: absolute;
      top: -20px;
      left: -10px;
    }

    .testimonial-text::after {
      content: "”";
      color: #007BFF;
      font-size: 30px;
      position: absolute;
      bottom: -20px;
      right: -10px;
    }
    .referee {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .referee img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid #007BFF;
      margin-bottom: 10px;
    }

    .referee-name {
      font-weight: bold;
      color: #111;
    }

    .referee-info {
      font-size: 14px;
      color: #555;
    }

    @media (max-width: 768px) {
      .testimonial-box {
        width: 100%;
        max-width: 90%;
      }
    }




.section.section-actions h2 {
    text-align: left;
    margin-bottom: 24px
}

.section-hire ul.actions-list {
    list-style: none;
    text-align: left;
    padding-left: 0
}

.actions-list li {
    position: relative;
    padding-left: 25px;
    font-weight: 600;
    margin-bottom: 16px
}

.actions-list li i {
    position: absolute;
    top: 3px;
    left: 0;
    color: #007a87
}

.section-actions {
    text-align: left
}

.section-actions ul.actions-list {
    list-style: none;
    text-align: left;
    padding-left: 0
}

.section-actions .action-wrap {
    display: block;
    padding: 32px 24px;
    border-radius: 16px;
    background-color: rgba(189,189,189,.2);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    transition: all ease-in-out .2s;
    -webkit-transition: all ease-in-out .2s;
    -moz-transition: all ease-in-out .2s;
    -ms-transition: all ease-in-out .2s;
    -o-transition: all ease-in-out .2s;
    margin-top: 24px
}

.section-actions .action-wrap:hover {
    text-decoration: none;
    background: #f5f5f5;
    box-shadow: 0 10px 18px 1px rgba(0,0,0,.2)
}

.section.section-actions h3 {
    text-align: left;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px
}

.action-wrap .action-image {
    margin-right: 16px;
    color: #333;
    margin-bottom: 16px
}

.section-actions .action-description {
    color: #333;
    margin-bottom: 18px
}

.action-wrap .btn {
    font-size: 16px;
    line-height: 1.4;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px
}

.section-counter .counter-col+.counter-col {
    margin-top: 24px
}

.section-counter .counter-icon {
    display: inline-block;
    margin-bottom: 10px
}

.section-counter .h1 {
    font-weight: 700;
    line-height: 1.31;
    color: #333;
    margin-bottom: 0
}

.section-counter .h5 {
    line-height: 1.4;
    font-weight: 600;
    color: #333
}

.section-hire h2 {
    text-align: left
}

.section-hire .actions-list {
    text-align: center
}

.section-hire .actions-list li {
    text-align: left
}

.section-hire .actions-list li::before {
    display: none
}

.section-hire .learn-more i {
    font-size: 15px
}

.section-hire .img-wrap {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    box-shadow: 0 10px 18px 1px rgba(0,0,0,.2);
    overflow: hidden;
    align-self: center;
    margin-bottom: 38px
}

.section-companies .headline {
    text-align: center
}




    .partners-section {
      padding: 40px 20px;
      background: #ffffff;
      overflow: hidden;
      text-align: center;
    }

    .partners-section h2 {
      font-size: 2rem;
      color: #222;
      margin-bottom: 30px;
    }
        @media (prefers-color-scheme: dark) {
        .partners-section, .partners-section h2{
            background: #272727;
            color: #fcfcfc;

        }
    }

    .logo-carousel {
      display: flex;
      width: calc(200 * 9 * 2 );
      animation: slideLeft 25s linear infinite;
      width: fit-content;
      gap: 60px;
      
    }

    .carousel-wrapper {
      overflow: hidden;
      width: 100%;
    }

    .partners-logo {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 150px;
      height: 80px;
    }

    .partners-logo img {
      max-width: 100%;
      max-height: 60px;
      object-fit: contain;
      /*filter: grayscale(100%);*/
      transition: filter 0.3s ease;
    }

    /*.partners-logo img:hover {
      filter: grayscale(0%);
    }*/

    @keyframes slideLeft {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    @media (max-width: 600px) {
      .partners-logo {
        width: 100px;
        height: 60px;
      }
    }






.companies-wrap .companies-list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 38px
}

.section-cta {
    background-image: url(https://static.cadcrowd.com/build/img/get-started-bg.1351319d.svg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center
}

.section-cta .cta-bx {
    background-color: rgba(255,255,255,.975);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    padding: 40px
}

.section-cta .cta-bx h2 {
    margin-bottom: 32px
}

.section-skills h2 {
    text-align: left;
    margin-bottom: 38px
}

.skills-tab-block {
    margin-top: -10px
}

.skills-tab-block .slide-menu-box {
    overflow: hidden;
    margin-bottom: 30px
}

.skills-tab-block .nav-tabs {
    border-bottom: none;
    margin-bottom: -30px;
    flex-wrap: nowrap;
    overflow-y: auto;
    padding-bottom: 30px
}

.skills-tab-block .nav-tabs .nav-link {
    white-space: nowrap;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    padding: 8px 15px;
    border-style: solid;
    border-width: 0 0 2px;
    border-color: transparent;
    margin-right: 24px;
    margin-bottom: 10px
}

.skills-tab-block .nav-tabs .nav-link.active {
    color: #008489;
    border-color: #008489
}

@media (max-width: 575px) {
    .skills-tab-block .nav-tabs .nav-link {
        font-size:16px;
        padding: 8px 0
    }
}

.skills-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 26px;
    -moz-column-count: 2;
    column-count: 2
}

.skills-list>li {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.skills-list>li.c2,.skills-list>li.c3 {
    display: none
}

.skills-list>li a {
    color: #484848
}

.skills-list>li a:hover {
    color: #008489;
    text-decoration: none
}

.section-touch .h5 {
    font-size: 16px
}

.section-touch .btn {
    margin-bottom: 10px
}

.section-touch .accuracy {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #484848
}

.section-touch .accuracy img {
    margin-right: 5px
}

ul.seen-on-wrap {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0
}

ul.seen-on-wrap li.seen-on-col {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex: 0 0 50%;
    width: 50%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x)*.5);
    padding-left: calc(var(--bs-gutter-x)*.5)
}

@media (min-width: 768px) {
    .section-services-tiles .services-tiles .row {
        margin-top:40px;
        margin-bottom: 48px
    }

    .section-services-tiles .services-tiles .text-lead {
        font-size: 18px
    }

    .section-steps .steps-content .step {
        margin-top: 48px
    }

    .section-steps .steps-content .step .step-icon {
        width: 125px;
        height: 120px
    }

    .section-quotes h2 img.quote-heart-icon {
        width: 48px
    }

    .quote-block .quote-content-bx {
        padding-left: 248px;
        width: 100%;
        max-width: 860px;
        margin-left: auto;
        margin-right: auto
    }

    .quote-block .quote-content-bx .quote-icon {
        top: -40px;
        left: 189px;
        width: 80px
    }

    .quote-block .quote-footer .quote-author-image {
        width: 200px;
        height: 200px;
        border-radius: 16px;
        -webkit-border-radius: 16px;
        -moz-border-radius: 16px;
        -ms-border-radius: 16px;
        -o-border-radius: 16px;
        position: absolute;
        top: 0;
        left: 0;
        margin-right: 10px
    }

    /*.quote-block .quote-content-bx .quote-footer .quote-author-name {
        font-size: 24px
    }

    .quote-block .quote-content-bx .quote-footer .quote-author-designation {
        font-size: 20px
    }

    .quote-block .quote-content-bx .quote-footer.row {
        --bs-gutter-x: 7rem
    }

    .quote-block .quote-content-bx .quote-footer .quote-media-item {
        width: 135px
    }

    .section-quotes .quote-block {
        padding-top: 30px;
        margin-bottom: 30px
    }

    .section-quotes .quotes-more {
        margin-bottom: 48px
    }*/

* {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      min-height: 100%;
    }

    body {
      display: flex;
      flex-direction: column;
    }

    main {
      flex: 1;
      padding: 40px;
      background: #f4f4f4;
    }

    /* FOOTER STYLES */
    .footer {
      background-color: #004464;
      color: #fff;
      padding: 40px 20px;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1400px;
      margin: auto;
    }

    .footer-column {
      flex: 1 1 250px;
      margin: 20px;
    }

    .footer-logo img {
      width: 220px;
      margin-bottom: 10px;
    }

    .footer-description {
      font-size: 14px;
      line-height: 1.6;
      color: #ddd;
    }

    .footer-title {
      font-weight: bold;
      margin-bottom: 15px;
      font-size: 16px;
    }

    .footer-links,
    .footer-contact,
    .footer-legal {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 14px;
    }

    .footer-links li,
    .footer-contact li {
      margin-bottom: 8px;
    }

    .footer-links a,
    .footer-legal a {
      color: #fff;
      text-decoration: none;
    }

    .footer-links a:hover,
    .footer-legal a:hover {
      text-decoration: underline;
    }

    .footer-social {
      display: flex;
      gap: 15px;
      margin-top: 15px;
    }

    .footer-social a {
      color: #fff;
      font-size: 18px;
      transition: color 0.3s;
    }

    .footer-social a:hover {
      color: #ffd700;
    }

    .footer-bottom {
      border-top: 1px solid #888;
      margin-top: 30px;
      padding-top: 15px;
      font-size: 13px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .footer-legal {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .footer-cta {
      margin-top: 15px;
    }

    .footer-cta button {
      background-color: #ffd700;
      color: #4b0082;
      border: none;
      padding: 10px 20px;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .footer-cta button:hover {
      background-color: #f0c300;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
      }
      .footer-column {
        margin: 20px 0;
      }
      .footer-bottom {
        text-align: center;
      }
    }

    /* DARK MODE SUPPORT */
    @media (prefers-color-scheme: dark) {
      body {
        background: #121212;
        color: #eee;
      }

      main {
        background: #1a1a1a;
      }

      .footer {
        background-color: #2c0050;
        color: #eee;
      }

      .footer-description {
        color: #bbb;
      }

      .footer-links a,
      .footer-legal a {
        color: #eee;
      }

      .footer-social a {
        color: #eee;
      }

      .footer-social a:hover {
        color: #ffd700;
      }

      .footer-cta button {
        color: #2c0050;
      }
    }

    .section-actions .action-wrap {
        margin-top: 0
    }

    .section-actions .action-wrap+.action-wrap {
        margin-top: 24px
    }

    .section-counter .counter-col+.counter-col {
        margin-top: 0
    }

    .section-hire .img-wrap {
        margin-bottom: 0
    }

    .section-hire .learn-more {
        padding-left: 25px
    }

    ul.seen-on-wrap li.seen-on-col {
        justify-content: center;
        margin-top: 38px;
        flex: 0 0 20%;
        width: 20%
    }

    .section-cta .cta-bx {
        border-radius: 40px;
        -webkit-border-radius: 40px;
        -moz-border-radius: 40px;
        -ms-border-radius: 40px;
        -o-border-radius: 40px
    }

    .skills-list {
        margin-bottom: 36px;
        -moz-column-count: 3;
        column-count: 3
    }

    .skills-list>li.c2 {
        display: block
    }

    .section-skills h2 {
        margin-bottom: 48px
    }

    .skills-tab-block .slide-menu-box {
        margin-bottom: 40px
    }

    .skills-tab-block .nav-tabs .nav-link {
        margin-bottom: 0
    }

    .section-touch .h5 {
        font-size: 20px
    }

    .section-touch .accuracy {
        font-size: 15px
    }

    .companies-wrap .companies-list {
        margin-top: 48px
    }
}

@media (min-width: 992px) {
    .section-steps .steps-content .step .step-icon {
        width:183px;
        height: 135px
    }

    .skills-list {
        -moz-column-count: 4;
        column-count: 4
    }

    .skills-list>li.c3 {
        display: block
    }
}

@media (max-width: 767px) {
    .container,.container-fluid {
        --bs-gutter-x:24px
    }

    .section-seen-on {
        padding-top: 26px;
        padding-bottom: 26px
    }

    .section-seen-on h2 {
        margin-bottom: 0
    }
}

@media (max-width: 479px) {
    .section .col-6.col-md-4 {
        width:50%
    }
}

.section-counter {
    text-align: center
}

.section-counter .row {
    margin-bottom: -20px
}

.section-counter .counter {
    margin-bottom: 20px
}

.section-counter .value {
    font-size: 42px
}

.section-counter .caption {
    font-size: 18px
}

.section-counter .h4 {
    font-weight: 400
}

@media (min-width: 768px) {
    .section-counter .row {
        margin-bottom:0
    }

    .section-counter .counter {
        margin-bottom: 0
    }

    .section-counter .value {
        font-size: 60px
    }

    .section-counter .caption {
        font-size: 22px
    }
}

.section-hire ul {
    margin: 20px 0 15px;
    padding-left: 20px;
    list-style-type: none;
    font-size: 16px;
    position: relative
}

.section-hire ul>li {
    margin-bottom: .8em
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-track,.slick-slider .slick-list {
    transform: translate3d(0,0,0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:before,.slick-track:after {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}
.no-styles, 
.no-styles * {
  all: unset;   /* resets all inherited/global styles */
  display: revert; /* restores default browser display */
}