     /* General */
body {
    background-color: #FFFFFF;
    color: #4B5563;
}

/* Topbar */
.bg-white.text-white {
    background-color: #E5E7EB !important;
    color: #4B5563 !important;
}

/* Navbar */
.bg-primary {
    background-color: #003087 !important;
}
.navbar-nav .nav-link {
    color: #FFFFFF !important;
}
.navbar-nav .nav-link:hover {
    color: #F5A623 !important;
}
.btn-primary {
    background-color: #f7312d ;
    border-color: #F5A623 ;
    color: #FFFFFF ;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #003087;
}
p{
    font-size: 16px;
}

/* Feature Section */
.feature-item {
    background-color: #FFFFFF;
    border-color: #E5E7EB !important;
}
.feature-icon.bg-primary {
    background-color: #003087 !important;
}
.feature-icon i {
    color: #FFFFFF !important;
}
.feature-item a {
    color: #F5A623 !important;
}
.feature-item a:hover {
    color: #4B5563 !important;
}

/* Why Choose Us Section */
.feature {
    background-color: #003087 !important;
}
.feature .text-white {
    color: #FFFFFF !important;
    font-weight: 800;
}
.progress-bar.bg-primary {
    background-color: #F5A623 !important;
}
.border-primary {
    border-color: #E5E7EB !important;
}

/* Footer */
.bg-dark.footer {
    background-color: #1C2526 !important;
}
.text-light {
    color: #FFFFFF !important;
}
.footer p, .footer a {
    color: #E5E7EB !important;
}
.footer .btn-light {
    background-color: #F5A623 !important;
    color: #FFFFFF !important;
}
.footer .btn-light:hover {
    background-color: #003087 !important;
}
h2.display-6 {
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4), 0px 0px 10px rgba(0, 0, 255, 0.2);
}
.top-heading{
    /*background-color: #f7312d;*/
    color: #f7312d;;
   /* padding: 10px;
    width: fit-content;*/
    font-weight: 600;
    font-size: 20px;
}

.feature-row p{
    height: 100px;
}
/* Cursor Animation Styles */
        .cursor-trail {
            position: fixed;
            width: 40px;
            height: 40px;
            pointer-events: none;
            z-index: 9998;
            transform: translate(-50%, -50%);
            opacity: 0;
            animation: ripple 1s ease infinite;
        }

        .cursor-trail::before,
        .cursor-trail::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
        }

        .cursor-trail::before {
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 82, 82, 0.3), rgba(255, 82, 82, 0));
            border: 1px solid rgba(255, 82, 82, 0.5);
        }

        .cursor-trail::after {
            width: 50%;
            height: 50%;
            background: #ff5252;
        }

        @keyframes ripple {
            0% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(0.5);
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(1.5);
            }
        }

        /* Delay for trailing effect */
        .cursor-trail:nth-child(1) { animation-delay: 0s; }
        .cursor-trail:nth-child(2) { animation-delay: 0.2s; }
        .cursor-trail:nth-child(3) { animation-delay: 0.4s; }

        @media (max-width: 768px) {
            .card {
                width: 100%;
                max-width: 300px;
            }

            .cursor-trail {
                display: none; /* Disable animation on mobile */
            }
        }

@media only screen and (max-width: 600px) {
  .phone-view-bg {
    background-color: white !important;
  }
      .navbar .navbar-nav {
        margin-top: 0px;
        border-top: 1px solid #EEEEEE;
        background-color: #003087;
        padding: 0 10px;
    }
}

.animated-btn{

    /*animation: shake 5s ease-in-out infinite;*/
    /*z-index: -1;*/
}

/*.animated-btn:hover{
    background-color: blue;
    color: white;
}*/

.about-heading-2{
    font-size: 28px;
}
.about-bg-2{
    background-image: linear-gradient(to right, rgb(255 255 255 / 27%), rgb(0 0 0 / 6%) 50%), url(https://img.freepik.com/free-vector/digital-technology-background-with-hexagon-frame-white-tone_53876-117507.jpg?t=st=1749553461~exp=1749557061~hmac=e8b74b0…&w=1380);
    background-repeat: no-repeat;
    background-size: cover;
   /*opacity: 0.5;*/
}

.animated-btn {
  background-color: #f7312d;
  color: #fff;
    transition: all 0.35s;
    box-sizing: border-box;
}
.animated-btn:hover {
  color: #fff;
  transition-delay: 0.2s;
  animation: ani500 0.6s forwards;
  background: radial-gradient(circle, #716eef 0.2em, transparent 0.3em) 6em 6em/1em 1em, radial-gradient(circle, #716eef 0.2em, transparent 0.3em) 0 0/1em 1em;
}

@keyframes ani500 {
  100% {
    background-size: 2.375em 2.375em, 0.1em 0.1em;
  }
}

.cbh-phone {
  display: block;
  position: fixed;
      right: -50px;
    bottom: 30px;
  visibility: hidden;
  background-color: transparent;
  width: 200px;
  height: 200px;
  cursor: pointer;
  z-index: 999;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -webkit-transition: visibility 0.5s;
  -moz-transition: visibility 0.5s;
  -o-transition: visibility 0.5s;
  transition: visibility 0.5s;
}
.cbh-phone.cbh-show {
  visibility: visible;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
.cbh-phone.cbh-static1 {
  opacity: 0.6;
}
.cbh-phone.cbh-hover1 {
  opacity: 1;
}
.cbh-ph-circle {
  width: 110px;
  height: 110px;
  top: 40px;
  left: 40px;
  position: absolute;
  background-color: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid rgba(30, 30, 30, 0.4);
  opacity: 0.1;
  -webkit-animation: cbh-circle-anim 1.2s infinite ease-in-out;
  -moz-animation: cbh-circle-anim 1.2s infinite ease-in-out;
  -ms-animation: cbh-circle-anim 1.2s infinite ease-in-out;
  -o-animation: cbh-circle-anim 1.2s infinite ease-in-out;
  animation: cbh-circle-anim 1.2s infinite ease-in-out;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.cbh-phone.cbh-active .cbh-ph-circle1 {
  -webkit-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
  -moz-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
  -ms-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
  -o-animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
  animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
}
.cbh-phone.cbh-static .cbh-ph-circle {
  -webkit-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
  -moz-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
  -ms-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
  -o-animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
  animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
}
.cbh-phone.cbh-hover .cbh-ph-circle {
  border-color: rgba(0, 175, 242, 1);
  opacity: 0.5;
}
.cbh-phone.cbh-green.cbh-hover .cbh-ph-circle {
  border-color: rgba(117, 235, 80, 1);
  opacity: 0.5;
}
.cbh-phone.cbh-green .cbh-ph-circle {
  border-color: rgba(0, 175, 242, 1);
  opacity: 0.5;
}
.cbh-phone.cbh-gray.cbh-hover .cbh-ph-circle {
  border-color: rgba(204, 204, 204, 1);
  opacity: 0.5;
}
.cbh-phone.cbh-gray .cbh-ph-circle {
  border-color: rgba(117, 235, 80, 1);
  opacity: 0.5;
}
.cbh-ph-circle-fill {
  width: 74px;
  height: 74px;
  top: 58px;
  left: 58px;
  position: absolute;
  background-color: #000;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  opacity: 0.1;
  -webkit-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
  -moz-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
  -ms-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
  -o-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
  animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.cbh-phone.cbh-active .cbh-ph-circle-fill {
  -webkit-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
  -moz-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
  -ms-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
  -o-animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
  animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
}
.cbh-phone.cbh-static .cbh-ph-circle-fill {
  -webkit-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
  -moz-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
  -ms-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
  -o-animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
  animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
  opacity: 0 !important;
}
.cbh-phone.cbh-hover .cbh-ph-circle-fill {
  background-color: rgba(0, 175, 242, 0.5);
  opacity: 0.75 !important;
}
.cbh-phone.cbh-green.cbh-hover .cbh-ph-circle-fill {
  background-color: rgba(117, 235, 80, 0.5);
  opacity: 0.75 !important;
}
.cbh-phone.cbh-green .cbh-ph-circle-fill {
  background-color: rgba(0, 175, 242, 0.5);
  opacity: 0.75 !important;
}
.cbh-phone.cbh-gray.cbh-hover .cbh-ph-circle-fill {
  background-color: rgba(204, 204, 204, 0.5);
  opacity: 0.75 !important;
}
.cbh-phone.cbh-gray .cbh-ph-circle-fill {
  background-color: rgba(117, 235, 80, 0.5);
  opacity: 1 !important;
}
.cbh-ph-img-circle1 {
  width: 40px;
  height: 40px;
  top: 75px;
  left: 75px;
  position: absolute;
  background-image: url(https://360imagem.com/google/images/wpp-icon.png);
  background-size: 40px 40px;
  background-color: rgba(30, 30, 30, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  opacity: 1;
  -webkit-animation: cbh-circle-img-anim 1s infinite ease-in-out;
  -moz-animation: cbh-circle-img-anim 1s infinite ease-in-out;
  -ms-animation: cbh-circle-img-anim 1s infinite ease-in-out;
  -o-animation: cbh-circle-img-anim 1s infinite ease-in-out;
  animation: cbh-circle-img-anim 1s infinite ease-in-out;
}
.cbh-phone.cbh-active .cbh-ph-img-circle1 {
  -webkit-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
  -moz-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
  -ms-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
  -o-animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
  animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
}
.cbh-phone.cbh-static .cbh-ph-img-circle1 {
  -webkit-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
  -moz-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
  -ms-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
  -o-animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
  animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
}
.cbh-phone.cbh-hover .cbh-ph-img-circle1 {
  background-color: rgba(0, 175, 242, 1);
}
.cbh-phone.cbh-green.cbh-hover .cbh-ph-img-circle1:hover {
  background-color: rgba(117, 235, 80, 1);
}
.cbh-phone.cbh-green .cbh-ph-img-circle1 {
  background-color: rgba(0, 175, 242, 1);
}
.cbh-phone.cbh-green .cbh-ph-img-circle1 {
  background-color: rgba(0, 175, 242, 1);
}
.cbh-phone.cbh-gray.cbh-hover .cbh-ph-img-circle1 {
  background-color: rgba(204, 204, 204, 1);
}
.cbh-phone.cbh-gray .cbh-ph-img-circle1 {
  background-color: rgba(117, 235, 80, 1);
}
@-moz-keyframes cbh-circle-anim {
  0% {
    -moz-transform: rotate(0deg) scale(0.5) skew(1deg);
    opacity: 0.1;
    -moz-opacity: 0.1;
    -webkit-opacity: 0.1;
    -o-opacity: 0.1;
  }
  30% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.5;
    -moz-opacity: 0.5;
    -webkit-opacity: 0.5;
    -o-opacity: 0.5;
  }
  100% {
    -moz-transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.6;
    -moz-opacity: 0.6;
    -webkit-opacity: 0.6;
    -o-opacity: 0.1;
  }
}
@-webkit-keyframes cbh-circle-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
    -webkit-opacity: 0.1;
  }
  30% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    -webkit-opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    -webkit-opacity: 0.1;
  }
}
@-o-keyframes cbh-circle-anim {
  0% {
    -o-transform: rotate(0deg) kscale(0.5) skew(1deg);
    -o-opacity: 0.1;
  }
  30% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);
    -o-opacity: 0.5;
  }
  100% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);
    -o-opacity: 0.1;
  }
}
@keyframes cbh-circle-anim {
  0% {
    transform: rotate(0deg) scale(0.5) skew(1deg);
    opacity: 0.1;
  }
  30% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.5;
  }
  100% {
    transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.1;
  }
}
@-moz-keyframes cbh-circle-fill-anim {
  0% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    -moz-transform: rotate(0deg) -moz-scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}
@-webkit-keyframes cbh-circle-fill-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}
@-o-keyframes cbh-circle-fill-anim {
  0% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    -o-transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}
@keyframes cbh-circle-fill-anim {
  0% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}
@keyframes cbh-circle-img-anim {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%,
  50% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
}
@-moz-keyframes cbh-circle-img-anim {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
  10% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%,
  50% {
    -moz-transform: rotate(0deg) scale(1) skew(1deg);
  }
}
@-webkit-keyframes cbh-circle-img-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%,
  50% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
  }
}
@-o-keyframes cbh-circle-img-anim {
  0% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);
  }
  10% {
    -o-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -o-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -o-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -o-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%,
  50% {
    -o-transform: rotate(0deg) scale(1) skew(1deg);
  }
}
.cbh-ph-img-circle1 {
}
.cbh-phone.cbh-green .cbh-ph-circle {
  border-color: rgb(0, 242, 164);
}
.cbh-phone.cbh-green .cbh-ph-circle-fill {
  background-color: rgb(0, 242, 164);
}
.cbh-phone.cbh-green .cbh-ph-img-circle1 {
  background-color: rgb(46, 203, 113);
}

.kmacb__manager-border {
  position: absolute;
  width: 75px;
  height: 75px;
  top: 50%;
  left: 50%;
  margin-top: -39.5px;
  margin-left: -39.5px;
  border-radius: 100%;
  border: 2px solid #ffe787;
  -webkit-animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
  -moz-animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
  -ms-animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
  -o-animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
  animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
  opacity: 0.8;
  transform-origin: center;
}
.kmacb__manager-fill {
  background: #52aff7 center bottom no-repeat;
  position: absolute;
  width: 75px;
  height: 75px;
  top: 50%;
  left: 50%;
  margin-top: -37.5px;
  margin-left: -37.5px;
  border-radius: 100%;
  opacity: 0.5;
  -webkit-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
  -moz-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
  -ms-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
  -o-animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
  animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
  transform-origin: center;
}
.kmacb__manager-circle {
  background: #52aff7;
  position: absolute;
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  margin-top: -60px;
  margin-left: -60px;
  border-radius: 100%;
}
.my-float {
    font-size: 35px;
    color: white;
    margin-top: 0px;
    margin-left: 3px;
}


       .process-work-wrapper{
        position:relative ;
       }

       .process-work-wrapper .line-shape {
        position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 880px;
}

  .process-work-wrapper .line-shape img{
    width: 880px;
}
.work-process-items .icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: relative;
    margin: 0 auto
}
.work-process-items .icon .number {
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border-radius: 50%;
    background-color: #f7312d;
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 400;
}
.work-process-items .content.style-2 {
    margin-top: 0;
    margin-bottom: 30px
}
 .work-process-items .content{
    margin-top: 30px;
}
.card-icon {
    font-size: 2.5rem;
    color: #ff5252;
    margin-bottom: 15px;
    text-align: center;


        width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
        box-shadow: 0px 3px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    margin: 0 auto;
}
.content p{
    font-size: 14px;
}
.content h4{
    font-size: 22px;
}

@media (max-width: 768px) {
    .work-process-items {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .work-process-items .icon {
        order: 1;
        margin-bottom: 15px;
    }

    .work-process-items .content,
    .work-process-items .content.style-2 {
        order: 2;
        margin-top: 0;
    }

    .line-shape {
        display: none; /* Hide the connecting line on mobile for clarity */
    }
}


.faq-container {
    width: 100%;
    /* max-width: 900px; */
    margin: auto;
    background: white;
    padding: 10px;
    border-radius: 1px;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
}
/*
h2 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  overflow: hidden;
}

h2::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background: #041d5c;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 5px;
  animation: underlineEffect 1s ease-out forwards;
}
*/
@keyframes underlineEffect {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.faq-item {
  border-bottom: 2px solid #ddd;
  padding: 11px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 21px;
  font-weight: bold;
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #f1f1f1;
}

.arrow {
  transition: transform 0.3s ease;
  font-size: 26px;
}

.faq-answer {
  display: none;
  padding: 20px;
  font-size: 20px;
  color: #333;
  text-align: left;
  background: #f9f9f9;
  /*border-radius: 10px;*/
}

.hidden {
  display: none;
}

#viewMore,
#viewLess {
  margin-top: 20px;
  display: block;
  width: 100%;
  background: #041d5c;
  color: white;
  padding: 18px;
  border: none;
  cursor: pointer;
  font-size: 20px;
  border-radius: 10px;
}

#viewMore:hover,
#viewLess:hover {
  background: #062d89;
}
 .slider-image-box .slide-img {
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            /*width: 250px;*/
            padding: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            margin: 10px 0px;
           
        }
        .slider-image-box .slide-img {
            /*padding: 20 15px;*/
            outline: none;
            transition: transform 0.3s ease, opacity 0.3s ease;
            text-align: center; /* Center the content */
            display: flex !important;
            flex-direction: column;
            align-items: center !important; /* Center horizontally */
            justify-content: center !important; /* Center vertically */
        }

        .slider-image-box .slide-img::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #ff5252, #ff1744);
}

/* Make the center slide larger and fully opaque */
        .slider-image-box .slide-img.slick-center {
            transform: scale(1.0); /* Scale the center slide to be larger */
            opacity: 1; /* Fully opaque */
        }
        /* Make non-center slides smaller and slightly faded */
        .slider-image-box .slide-img {
            transform: scale(0.8); /* Smaller scale for non-center slides */
            opacity: 0.6; /* Slightly faded */
        }

        /* Arrow styling */
        .slick-prev, .slick-next {
            z-index: 1;
            width: 40px;
            height: 40px;
        }
        .slick-prev:before, .slick-next:before {
            font-size: 30px !important;
            color: #000 !important; 
        }
        /*.slick-track {
            display: flex;
            align-items: center;
        }*/


       .portfolio-content{
         column-count: 3;
  --webkit-column-count: 3;
  --moz-column-count: 3;
  gap: 1rem;
  column-gap: 15px;
  /*padding: 4rem;*/
     }

 .portfolio-content img {
  height: auto;
  width: 100%;
}

.gallery-lightbox {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

.gallery-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 15vw;
  top: 20vh;
  width: 70vw;
  height: 60vh;
  background-color: ;
}

.gallery-button-close {
  color: #ffffff;
  font-size: 50px;
  position: absolute;
  right: -50px;
  top: -50px;
  border: 0;
  background-color: transparent;
  transform: rotate(45deg);
}

.gallery-button-previous {
  color: #ffffff;
  font-size: 50px;
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translate(0, -50%);
  border: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: transparent;
}

.gallery-button-next {
  color: #ffffff;
  font-size: 50px;
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translate(0, -50%);
  border: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: transparent;
}

.gallery-navigation {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  display: flex;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%);
}

.gallery-navigation-button {
  display: block;
  width: 10px;
  height: 10px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  margin: 0 3px;
}

.gallery-navigation-button.active {
  background-color: rgba(255, 255, 255, 0.95);
}

.gallery-lightbox {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

.gallery-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 15vw;
  top: 20vh;
  width: 70vw;
  height: 60vh;
  background-color: ;
}

.gallery-button-close {
  color: #ffffff;
  font-size: 50px;
  position: absolute;
  right: -50px;
  top: -50px;
  border: 0;
  background-color: transparent;
  transform: rotate(45deg);
}

.gallery-button-previous {
  color: #ffffff;
  font-size: 50px;
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translate(0, -50%);
  border: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: transparent;
}

.gallery-button-next {
  color: #ffffff;
  font-size: 50px;
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translate(0, -50%);
  border: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: transparent;
}

.gallery-navigation {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  display: flex;
  bottom: -50px;
  left: 50%;
  transform: translate(-50%);
}

.gallery-navigation-button {
  display: block;
  width: 10px;
  height: 10px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  margin: 0 3px;
}

.gallery-navigation-button.active {
  background-color: rgba(255, 255, 255, 0.95);
}

.openItem {
  width: 60%;
}
.gallery-item{
    margin-bottom: 10px;
}

/* Responsive-ness for different screen-sizes */
@media screen and (max-width: 810px) {
  .portfolio-content {
    column-count: 3;
    --webkit-column-count: 3;
    --moz-column-count: 3;
  }
}

@media screen and (max-width: 500px) {
  .portfolio-content {
    column-count: 2;
    --webkit-column-count: 2;
    --moz-column-count: 2;
  }
  #viewMore, #viewLess {
    margin-top: 20px;
    display: block;
    width: 100%;
    background: #041d5c;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 10px;
}
.faq-question
 {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    padding: 2px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item
 {
    border-bottom: 2px solid #ddd;
    padding: 5px 0;
}
}

@media screen and (max-width: 400px) {
  .portfolio-content {
    column-count: 1;
    --webkit-column-count: 1;
    --moz-column-count: 1;
  }
}