
            .headerDiscover{
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            .discover-section h2 {
                color: #fff;
                font-size: 18px;
                font-weight: 400;
                margin-bottom: 15px;
                letter-spacing: 0px;
            }

            .tagsDis {
                display: flex;
                gap: 10px;
                flex-wrap: wrap;
            }

            .tag {
                padding: 8px 16px;
                border-radius: 20px;
                font-size: 14px;
                text-decoration: none;
                transition: all 0.3s ease;
            }

            .tag.active {
                background: #ffffff;
                color: #000000;
            }

            .tag:not(.active) {
                color: #939191;
                border: 1px solid #ddd;
            }

            .tag:hover {
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            }

            .ImageDesign{
                border-radius: 10px;
            }
            .svgArrow{
                width: 84px;
                transform: rotate(134deg);
                filter: invert(1);
            }
            .logo {
                font-size: 24px;
                font-weight: bold;
                color: #333;
            }

            .contentDiscover{
                display: grid;
                grid-template-columns: 2fr 1fr 300px;
                gap: 20px;
                margin-top: 3.125rem;
                align-items: stretch; 
            }
        .work-card .cards .card-item  {
          background-color: #000;
        }
        
            .forty-west-card {
                height: 500px;
                background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
                position: relative;
            }

            .forty-west-card .building-img {
                position: absolute;
                top: 50px;
                left: 50px;
                right: 50px;
                height: 60%;
                background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23f0f0f0"/><rect x="20" y="50" width="80" height="200" fill="%23d4691a"/><rect x="120" y="30" width="80" height="220" fill="%23e67c00"/><rect x="220" y="60" width="80" height="190" fill="%23d4691a"/><rect x="320" y="40" width="60" height="210" fill="%23e67c00"/></svg>') no-repeat center;
                background-size: cover;
                border-radius: 8px;
            }

            .forty-west-card h3 {
                position: absolute;
                bottom: 80px;
                left: 40px;
                color: white;
                font-size: 28px;
                font-weight: 600;
            }

            .forty-west-card .description {
                position: absolute;
                bottom: 20px;
                left: 40px;
                right: 40px;
                color: rgba(255,255,255,0.9);
                font-size: 14px;
                line-height: 1.4;
            }

            .chat-card {
                display: grid;
                grid-template-rows: 1fr 1fr;
                gap: 15px;
                /* padding: 20px; */
            }

            .chat-preview {
                /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
                border-radius: 12px;
                /* padding: 20px; */
                color: white;
                position: relative;
                overflow: hidden;
            }

            .chat-preview::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
                animation: pulse 3s ease-in-out infinite;
            }

            @keyframes pulse {
                0%, 100% { transform: scale(1); opacity: 0.5; }
                50% { transform: scale(1.1); opacity: 0.8; }
            }

            .chat-preview h4 {
                font-size: 20px;
                margin-bottom: 10px;
            }

            .logo-section {
                background: linear-gradient(45deg, #84fab0 0%, #8fd3f4 100%);
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                overflow: hidden;
            }

            .logo-section::before {
                content: '&';
                font-size: 120px;
                font-weight: bold;
                color: rgba(255,255,255,0.3);
                position: absolute;
                animation: rotate 20s linear infinite;
            }

            @keyframes rotate {
                from { transform: rotate(0deg); }
                to { transform: rotate(360deg); }
            }

            .profile-card {
                /* background: #2d3748; */
                border-radius: 12px;
                overflow: hidden;
                color: white;
                position: relative;
            }

            .profile-header {
                height: 200px;
                background: linear-gradient(45deg, #2d3748, #4a5568);
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .profile-img {
                width: 80px;
                height: 80px;
                border-radius: 50%;
                background: linear-gradient(45deg, #667eea, #764ba2);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 32px;
                font-weight: bold;
                color: white;
            }

            .spotify-badge {
                position: absolute;
                top: 15px;
                right: 15px;
                background: #1DB954;
                color: white;
                padding: 12px 12px;
                border-radius: 15px;
                font-size: 12px;
                display: flex;
                align-items: center;
                gap: 5px;
                height: 20px;
                width: 20px;
                justify-content: center;
            }

            .profile-info {
                padding: 20px;
            }

            .profile-name {
                font-size: 24px;
                font-weight: 600;
                margin-bottom: 20px;
            }

            .social-links {
                display: flex;
                gap: 10px;
                margin-bottom: 20px;
            }

            .social-link {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background: rgba(255,255,255,0.1);
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                text-decoration: none;
                transition: all 0.3s ease;
            }

            .social-link:hover {
                background: rgba(255,255,255,0.2);
                transform: scale(1.1);
            }

         

            @media (max-width: 1024px) {
                .contentDiscover {
                    grid-template-columns: 1fr 1fr;
                }
            }

            @media (max-width: 768px) {
  .contentDiscover {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Default: 2 columns */
    gap: 20px;
  }

  .contentDiscover > *:nth-child(1) {
    grid-column: span 2; /* First item spans both columns (100%) */
  }
}

            @media (max-width: 768px) {

                
                .tags {
                    gap: 8px;
                }
                
                .tag {
                    padding: 6px 12px;
                    font-size: 13px;
                }
                
                .header {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 20px;
                }
                
                .forty-west-card {
                    height: 400px;
                }
                
                .forty-west-card h3 {
                    font-size: 24px;
                    bottom: 60px;
                }

              
                
                .profile-img {
                    width: 60px;
                    height: 60px;
                    font-size: 24px;
                }
                
                .profile-name {
                    font-size: 20px;
                }
            }

            @media (max-width: 480px) {
             
              
                
                .tags {
                    flex-direction: column;
                    align-items: stretch;
                }
                
                .tag {
                    text-align: center;
                    padding: 10px 16px;
                }
                
                .forty-west-card {
                    height: 350px;
                }
                
                .forty-west-card .building-img {
                    top: 30px;
                    left: 30px;
                    right: 30px;
                    height: 50%;
                }
                
                .forty-west-card h3 {
                    font-size: 20px;
                    bottom: 50px;
                    left: 30px;
                }
                
                .forty-west-card .description {
                    left: 30px;
                    right: 30px;
                    font-size: 13px;
                }
                
                .chat-card {
                    padding: 15px;
                }
                
                .social-links {
                    flex-wrap: wrap;
                    justify-content: center;
                }
                
                .enquiry-btn {
                    width: 100%;
                    justify-content: center;
                    padding: 15px 24px;
                }
            }


            .tab-content_01 {
                display: none;
            }
            .tab-content_01.active {
                display: block;
            }



            /* REVIEWS */
/* 
.reviews {
		overflow: hidden !important;
		padding-top: 0;
}
.reviews::selection, .reviews *::selection {
		color: transparent;
		background: transparent;
}
.reviews > video {
		display: block;
		width: 100vw;
		height: auto;
		position: relative;
		left: 50%;
		transform: translate3d(-50%, 0, 0);
		object-fit: cover;
		object-position: center;
}
@media only screen and (orientation: portrait) {
		.reviews > video {
				height: 100vh;
				height: 100svh;
		}
}
.reviews .title {
		display: none;
}
.reviews-pagination-wrap {
		user-select: none;
		position: absolute;
		height: clamp(60px, 7.125rem, 114px);
		border-radius: clamp(15px, 1.5625rem, 25px);
		background: var(--block);
		bottom: 0;
		left: 50%;
		transform: translate3d(-50%, 0, 0);
		display: flex;
		align-items: center;
		z-index: 5;
		gap: 20px;
}
.reviews-prev, .reviews-next {
		cursor: pointer;
		user-select: none !important;
		position: relative;
		flex: 0 0 auto;
		outline: none;
		border: 0;
		height: 100%;
		aspect-ratio: 1.1/1;
		transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
		display: flex;
		align-items: center;
		justify-content: center;
}
.reviews-prev {
		transform: scale(-1, 1);
}
.reviews-prev svg, .reviews-next svg {
		flex: 0 0 auto;
		width: 24.56%;
		height: auto;
		fill: var(--white);
}

.review {
		--vert: clamp(40px, 5rem, 80px);
		--hor: clamp(30px, 3.75rem, 60px);
		--photo: clamp(60px, 4.375rem, 70px);
		flex: 1 0 auto;
		display: flex;
		flex-direction: column;
		background: var(--block);
		border-radius: clamp(15px, 1.5625rem, 25px);
		padding: var(--vert) var(--hor);
		position: relative;
		text-decoration: none;
		width: clamp(330px, 43.75rem, 700px);
		min-height: calc(clamp(330px, 43.75rem, 550px) * 1.65);
		max-width: calc(100vw - var(--side-padding) * 2);
		backface-visibility: hidden;
		transform: translate3d(0, 0, 0);
}
.review .mini-title {
		line-height: 1.1;
		font-size: clamp(20px, 1.875rem, 30px);
		margin-bottom: calc(30px - 0.18em);
		color: rgba(255, 255, 255, 0.5);
}
.review .stars {
		flex: 0 0 auto;
		aspect-ratio: 134/46;
		height: clamp(46px, 3.75rem, 60px);
		background: rgba(255, 255, 255, 0.12);
		object-fit: scale-down;
		object-position: center;
		border-radius: 100px;
		backface-visibility: hidden;
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		align-self: flex-start;
		border-style: solid;
		border-width: clamp(14px, 1.1875rem, 19px);
		border-color: transparent;
}
.review blockquote {
		flex: 1 0 auto;
		display: flex;
		flex-direction: column;
		margin: 0;
		padding: 0;
		border: 0;
		outline: none;
		font: inherit;
		color: inherit;
}
.review .text {
		--rows: 8;
		--lh: 1.4;
		--height: 0;
		font-weight: 500;
		font-size: clamp(21px, 2.5rem, 30px);
		line-height: var(--lh);
		overflow: hidden;
		max-height: calc(var(--rows) * var(--lh) * 1em);
}
.review .text.open {
		max-height: none;
}
.review .text:not(.has-more) + .text-trigger {
		opacity: 0;
		pointer-events: none;
}
.review .text-trigger {
		align-self: flex-end;
		cursor: pointer;
		user-select: none;
		color: var(--yellow);
		font-weight: 300;
		line-height: 1.1;
		font-size: clamp(20px, 1.875rem, 30px);
		margin-top: calc(var(--hor) * -1 + (30px - 0.18em));
		margin-bottom: auto;
		transition: opacity 0.4s ease;
}
.review .text-trigger > *:nth-child(2) {
		display: none;
}
.review .text.open ~ .text-trigger > *:nth-child(1) {
		display: none;
}
.review .text.open ~ .text-trigger > *:nth-child(2) {
		display: block;
}
.review .photo {
		position: absolute;
		top: 0;
		left: 0;
		width: var(--photo);
		height: var(--photo);
		border-radius: 50%;
		object-fit: cover;
		object-position: center;
}
.review .author {
		text-decoration: none;
		display: block;
		pointer-events: none;
		backface-visibility: hidden;
		transform: translateZ(0);
		position: relative;
		font-weight: normal;
		line-height: 1.4;
		font-size: clamp(16px, 1.3125rem, 21px);
		padding: calc((var(--photo) - clamp(16px, 1.3125rem, 21px) * 1.4 - clamp(21px, 1.875rem, 30px) * 1.4) / 2) 0 0 calc(var(--photo) + 20px);
		min-height: var(--photo);
		color: rgba(255, 255, 255, 0.7);
}
.review .author * {
		pointer-events: all;
}
.review .author span {
		position: relative;
}
.review .author strong {
		display: block;
		color: var(--white);
		font-weight: 500;
		font-size: clamp(21px, 1.875rem, 30px);
}
.review:has(video) {
		overflow: hidden;
		backface-visibility: hidden;
}
.review:has(video):after {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: clamp(64px, 5rem, 80px);
		height: clamp(64px, 5rem, 80px);
		margin: calc(clamp(64px, 5rem, 80px) / -2);
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.25) url("../") no-repeat 55% 50%;
		background-size: auto 31.25%;
		backface-visibility: hidden;
		backdrop-filter: blur(40px);
		-webkit-backdrop-filter: blur(40px);
}
.review video {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
		object-fit: cover;
		object-position: center;
		opacity: 0.4;
}
@media only screen and (max-width: 999.99px) {
		.reviews-pagination-wrap {
				display: none !important;
		}
		.review, .review blockquote {
				gap: var(--hor);
		}
		.review .mini-title {
				display: none;
		}
		.review .author {
				order: 1;
		}
		.review .text, .review .text-trigger {
				order: 2;
		}
		.review .stars {
				order: 3;
		}
		.review:has(video) .stars {
				margin-top: auto;
		}
}
@media only screen and (min-width: 1000px) {
		.slider-reviews {
				padding-bottom: calc(clamp(60px, 7.125rem, 114px) + 60px) !important;
		}
		.review .mini-title {
				order: 1;
		}
		.review blockquote {
				order: 2;
				gap: var(--hor);
		}
		.review .text {
				font-weight: normal;
				--lh: 1.3;
				--rows: 9;
		}
		.review .author {
				order: 3;
		}
		.review .stars {
				order: 4;
				margin-top: var(--hor);
		}
		.review:has(video) .author {
				margin-top: auto;
		}
}
@media only screen and (min-width: 1200px) {
		.review .text {
				--rows: 10;
		}
}
@media only screen and (min-width: 1400px) {
		.review {
				padding-bottom: 0;
		}
		.review .text {
				--rows: 12;
		}
		.review .author {
				margin-right: calc(clamp(134px, 10.875rem, 174px) + 10px);
				height: calc(var(--photo) + var(--vert));
		}
		.review .stars {
				position: absolute;
				top: calc(100% - var(--photo) - var(--vert));
				right: var(--hor);
				margin: 0;
		}
} */

/* .reviews-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
} */


.services-mda .sec-head h2 {
  font-size: 65px;
  line-height: 1.2;
letter-spacing: -.02rem;
}

.services-mda .sec-head span {
  letter-spacing: 4px;
  }

.services-mda .sec-head .img1 {
  width: 180px;
  height: 55px;
  overflow: visible; }
  .services-mda .sec-head .img1 img {
    border-radius: 30px; }

.services-mda .sec-head .img2 {
  width: 55px;
  height: 55px;
  overflow: visible; }
  .services-mda .sec-head .img2 img {
    border-radius: 50px; }

.services-mda .item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 20px; }
  .services-mda .item .cont {
    padding: 15px; }
    .services-mda .item .cont .icon {
      width: 52px;
      height: 52px;
      line-height: 50px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%; }
      .services-mda .item .cont .icon img {
        width: 25px; }
      .services-mda .item .cont .icon.invert img {
        -webkit-filter: invert(1);
        filter: invert(1); }
    .services-mda .item .cont .text {
      margin-top: 100px;
      margin-bottom: 20px; }
      .services-mda .item .cont .text p {
        font-size: 14px;
        font-weight: 300;
        line-height: 22px; }

.marq-sa {
  overflow: hidden !important; }
  .marq-sa .item {
    padding: 0 50px !important;
    position: relative; }
    .marq-sa .item:after {
      content: '';
      width: 12px;
      height: 12px;
      background: #fff;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
    .marq-sa .item h2 {
      white-space: nowrap;
      font-size: 96px;
      line-height: 120px;
      letter-spacing: -4px;
      background: -webkit-gradient(linear, left top, right top, from(#fff), to(transparent));
      background: -webkit-linear-gradient(left, #fff, transparent);
      background: -o-linear-gradient(left, #fff, transparent);
      background: linear-gradient(to right, #fff, transparent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; 
    }   

.marq-sa .item h3{
     white-space: nowrap;
      font-size: 96px;
      line-height: 120px;
      letter-spacing: -4px;
}
.marq-sa.withoutDot .item:after{
    content: '';
      width: 0px;
      height: 0px;
      background: #fff;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 0;
}

    /* BANNER */


.serv-ms .item {
  color: #fff;
  padding: 40px;
  height: 92vh;
  min-height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s; }
  .serv-ms .item h6 {
    font-size: 20px;
    text-transform: uppercase; }
  .serv-ms .item p {
    font-size: 14px; }
  .serv-ms .item .arrow,
  .serv-ms .item .text {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s; }
  .serv-ms .item .text {
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px); }
  .serv-ms .item:hover .arrow,
  .serv-ms .item:hover .text {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  .serv-ms .item:hover {
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px); }

.services-ms {
  background: #0D0D0D;
  position: relative;
  overflow: hidden; }
  .services-ms:after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 45vw;
    height: 45vw;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: unset !important;
    border-radius: 50%;
    pointer-events: none; }
  .services-ms .shape {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: .5; }
  .services-ms .item {
    background: #141414;
    border-radius: 10px;
    padding: 50px 30px;
    margin-top: 30px; }
    .services-ms .item .arrow {
      width: 45px;
      height: 45px;
      line-height: 40px;
      text-align: center;
      border-radius: 50%;
      border: 1px solid #fff; }
      .services-ms .item .arrow svg {
        width: 15px; }



/* REVIEWs */

.review-card {
  background-color: #111;
  border-radius: 20px;
  padding: 25px;
  height: 75vh;
  display: flex;
  margin: 10px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for WebKit browsers */
.review-card::-webkit-scrollbar {
  display: none;
}

.review-title {
  color: #aaa;
  margin-bottom: 10px;
  font-size: 14px;
}

.review-text {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 25px;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.review-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}
.videoPanel video{
    width: 100%;
}
.videoPanel{
    width: 100%;
    height: 100% !important;
    overflow: hidden;
    position: absolute;
    top: -10px;
}
.panelPosition{
    display: flex;flex-direction: column;height: 100%;padding: 25px;background-color: #1111116b;
}
.review-profile img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.reviewer-name {
  font-weight: bold;
  margin: 0;
}

.reviewer-company {
  font-size: 12px;
  color: #aaa;
  margin: 0;
}

.review-stars {
  background: #1f1f1f;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  color: #ff3d00;
  font-weight: bold;
}

.expand {
  color: #ff3d00;
  cursor: pointer;
}
@media (max-width: 991px) {
  .reviews-container {
    grid-template-columns: 1fr; /* Stack vertically on small screens */
  }
}


@media screen and (max-width: 768px) {

  .services-mda .sec-head h2 {
    font-size: 30px; }
    .services-mda .sec-head h2 span {
      position: relative;
      top: -10px; }
    .services-mda .sec-head h2 .fit-img {
      display: none; } }
.services-mda .item .cont .text{
    margin-top: 20px;
}


.faqs .accordion-header .accordion-button .face-icon{
    width: 0px;
}
.face-icon.mr-30{
    margin-right: 0px !important;
}
        #stepContainer [data-step] {
            display: none;
            }
            #stepContainer [data-step].active {
            display: block;
            }
        @keyframes rotateCircle {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
            }
            .socialIcon{
                justify-content: space-between;
                gap: 10px;
            }
            .socialIcon .icns{
                font-size: 19px;
            }
            .socialIcon .icns svg{
                    width: .7rem;
                    transition: transform .25s ease-in-out;
                    will-change: transform;
            }
            .socialmenu{
                display: flex;
                gap: 1.5rem;
            }
            .socialSectors {
                display: flex;
                align-items: center;
                flex-wrap: wrap;
                gap: 10px;
                padding: 1rem 0;
            }

/* .socialSectors > div:first-child {
    width: 100%;
} */

.socialSectors h6 {
    font-size: 20px;
    color: #939191;
    margin: 0;
}

.socialSectors .RoundCircle {
    /* width: 100%; */
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.socialSectors .RoundCircle .icns {
    border: 1px solid hsla(0, 0%, 100%, 0.3);
    display: inline-block;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    border-radius: 50px;
    padding: 0.625rem 1.4375rem;
    white-space: nowrap;
    transition: background 0.3s;
}

.socialSectors .RoundCircle .icns:hover {
    background-color: rgba(255, 255, 255, 0.1);
}



/* Larger screens (Desktops) */
@media (max-width: 1028px) {
.fontSize {
    font-size: 42px !important; }
     


}


            .footerImage{
                width: 75px;
                margin-left: 1.5rem;
                margin-top: unset;
            }
            .marginTop{
                 margin: 2.5rem 0;
            }
            .rotating-circle {
                animation: rotateCircle 40s linear infinite;
                width: 680px; 
                height: 680px;
                margin: auto;
                opacity: 0.6; 
            }
            .footer_logo{
                /* height: 2.25r    em; */
                gap: 2rem;
            }
            .footer_logo_01{
                height: 6rem;
                align-items: center;
            }
       .fontSize107{
            font-size: 96px;
            color: #fff;
            margin-bottom: 20px;
            font-weight: 400;
            line-height: 1;
        }
        .fontSize{
            font-size: 80px;
            color: #afaeae;
        }
        .icns a{
            color: #939191;
        }
        .fs20{
            font-size: 20px;
        }
        .brandflex{
            gap: 2rem;
            margin-top: 2rem;
            align-items: center;
        }
        .Brandinput{
            appearance: none;
            border-radius: 0;
            line-height: 1.8;
            color: #fff;
            border: none;
            border-bottom: 1.5px solid #fff;
            background: transparent;
            position: relative;
            text-align: left;
            max-width: 300px;
            margin-bottom: unset;
        }
       .BrandinputButton{
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            background-color: transparent;
            color: #d1d1d1;
            transition: background-color .2s ease, color .2s ease, opacity .2s ease, border-color .2s ease;
            cursor: pointer;
            padding: 6px 16px;
            border: 2px solid #cacaca;
            border-radius: 50px;
            font-size: 13px;
        }
        .BrandinputButton:hover{
             color: #000;
              background-color: #fff;
        }
        .footer_logo_01 h6{
            color: #939191;
        }
        .asterisk {
            color: #dc3545;
        }
        .box-dark-01{
            position:relative;
            width:100%;
            min-height:1200px;
        }

        .boxSVG svg{
            position:absolute;
            width:auto;
            height: -webkit-fill-available;
            right:0%;
            overflow:hidden;
        }

        .activeSvg{
            z-index:1;
        }
        .inactiveSvg{
            z-index:0;
        }

        .mobile-only{
            display: none;
        }
       

        @media screen and (max-width:600px) {
        .fontSize107{
            padding-top: 50px;
            font-size: 40px;
           
        }
        .col-md-5.order-2.order-md-1{
            text-align: center;
        }
        .brandflex{
            justify-content: center;
            gap: 1rem;
        }
        .brandflex .BrandinputButton{
            margin-top: 10px;
        }
        .Brandinput{
            width: 100%;
            max-width: 350px;
            text-align: center;
        }
        .socialIcon{
            flex-wrap: wrap;
            gap: 20px 20px;
        }
        .d-flex.footer_logo_01{
            flex-direction: column;
            gap: 23px 0px;
        }
        .footerImage{
            width: 60px;
            margin-left: unset;
        }
        .socialSectors .RoundCircle .icns{
               
            font-size: .875rem;
            padding: .5rem .625rem;
            margin: .3125rem .625rem .3125rem 0;
        }
            .col-md-3.text-end{
                padding-top: 30px;
            }

            .fontSize{
                font-size: 37px !important;
            }
                .animationImages{
                    left: 0;
                }
                .particle-wrapper{
                     left: 0;
                }
                #particleCanvas{
                    left: 0;
                    width: 300px !important;
                    height: 300px !important;
                }
                .step{
                    flex: auto !important;
                }
                .stepper{
                    gap: 30px 0px;
                }
        .particle-wrapper {
            width: 300px !important;
            height: 300px !important;
            left: 50px !important;
            top: 4px;
        }
            .rotating-circle{
                width: 300px !important;
                height: 300px !important;
            }
            .BrandinputButton {
                margin-top: 30px;
            }
            .socialSectors > div:first-child{
                width: 100%;
            }
        }
        .sticky-section {
            width: 100%;
            position: sticky;
            top: 25%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
            .hotel-slider-container.mobile-only {
                position: relative;
            }

        .card-container {
            position: relative;
            width: 85%;
            top: 0%;
            max-width: 400px;
            height: 500px; /* Dynamic height */
            transform-style: preserve-3d;
        }
        
        .navbar{
            position: relative;
            top: 0px;
        }
        .p-112px{
            padding: 112px 0;
        }

        .bannerSection{
            background-color: #000;
        }
        .bannerSection:before{
            content: "";
            width: 1600px;
            height: 1600px;
            display: block;
            background: radial-gradient(circle, #ff3d00 0, rgba(191, 12, 254, 0) 76%);
            opacity: .5;
            position: absolute;
            z-index: 1;
            top: unset;
            bottom: 100%;
            right: 100%;
            transform: translate(40%, 40%);
            pointer-events: none;
        }

        .particle-wrapper {
            width: 668px;
            height: 668px;
            border-radius: 50%;
            overflow: hidden;
            background-color: #000; /* optional for contrast */
            display: flex;
            justify-content: center;
            align-items: center;
            margin: auto;
                position: relative;
            left: 43px;
            }

            #particleCanvas {
            display: block;
            border-radius: 50%;
                position: relative;
                z-index: 10000;
                 width:668px; height:668px;
            }

    .stepper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      flex-wrap: wrap;
      margin: 50px auto;
      max-width: 90%;
    }

    .step {
      text-align: center;
      position: relative;
      flex: 1;
    }

    .step:before {
      content: '';
      position: absolute;
      top: 11px;
      left: 0;
      right: 0;
      height: 2px;
      background-color: #444;
      z-index: 0;
    }

    .circle {
      position: relative;
      z-index: 1;
      width: 12px;
      height: 12px;
      top: 4px;
      margin: 0 auto;
      border-radius: 50%;
      background-color: #444;
    }

    .step.active .circle {
      background-color: #000;
    border: 2px solid #ff3d00;
    box-shadow: 0px 0px 20px 5px #ff3d00;
    }

    .step.active span {
      color: #ff3d00;
    }

    .step span {
      display: block;
      margin-top: 10px;
      font-size: 15px;
      color: #aaa;
    }

    /* Remove the left line for the first step and right line for the last step */
    .step:first-child:before {
      left: 50%;
    }

    .step:last-child:before {
      right: 50%;
    }

    .dataSteper{
        width: 35px;
        height: 35px;
        border: 1px solid;
        color: #ff3d00;
        opacity: .4;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size:24px;
        border-radius: 50%;
        line-height: 1;
        margin: auto auto 1rem;
        }

@media screen and (max-width: 700px) {
.d-flex.RoundCircle.justify-content-end{
    justify-content: start !important;
}
.footer_logo_01{
    height: auto !important;
}
.d-flex.footer_logo_01{
    padding-top: 1.5rem;
    padding-bottom: 4.5rem;
    justify-content: space-between !important;
}
}
@media screen and (min-width: 769px) {
    .dataSteper{
        width: 60px;
        height: 60px;
        font-size:32px;
        margin: unset;
        
        margin-bottom: 1rem;
    }
    }


     .room-card {
        width: 100%;
        background: #080808 ;
        border-radius: 12px;
        /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
        position: absolute;
        transform-origin: center bottom;
        backface-visibility: hidden;
        transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
          opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
        overflow: hidden;
        will-change: transform, opacity;
      }

      /* Enhance drop shadow for better stacking visual */
      .room-image-container {
        position: relative;
        height: 100%;
        overflow: hidden;
      }

      .room-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .room-title {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        color: white;
        padding: 15px;
        margin: 0;
        font-size: 22px;
      }

  
.bodybottom {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
}
.bottom-blur-container {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 300px; /* Set your desired height */
            pointer-events: none;
            z-index: 100;
        }

        .backdrop-blur-effect {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 12px 12px 0 0;
        }

        /* Layered blur effect */
        .blur-layer {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 12px 12px 0 0;
            pointer-events: none;
        }

        .blur-layer-1 {
            backdrop-filter: blur(0.5px);
            -webkit-backdrop-filter: blur(0.5px);
            mask-image: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 0%, 
                rgba(0, 0, 0, 1) 12.5%, 
                rgba(0, 0, 0, 1) 25%, 
                rgba(0, 0, 0, 0) 37.5%);
            -webkit-mask-image: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 0%, 
                rgba(0, 0, 0, 1) 12.5%, 
                rgba(0, 0, 0, 1) 25%, 
                rgba(0, 0, 0, 0) 37.5%);
        }

        .blur-layer-2 {
            backdrop-filter: blur(0.5625px);
            -webkit-backdrop-filter: blur(0.5625px);
            mask-image: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 12.5%, 
                rgba(0, 0, 0, 1) 25%, 
                rgba(0, 0, 0, 1) 37.5%, 
                rgba(0, 0, 0, 0) 50%);
            -webkit-mask-image: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 12.5%, 
                rgba(0, 0, 0, 1) 25%, 
                rgba(0, 0, 0, 1) 37.5%, 
                rgba(0, 0, 0, 0) 50%);
        }

        .blur-layer-3 {
            backdrop-filter: blur(1.125px);
            -webkit-backdrop-filter: blur(1.125px);
            mask-image: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 25%, 
                rgba(0, 0, 0, 1) 37.5%, 
                rgba(0, 0, 0, 1) 50%, 
                rgba(0, 0, 0, 0) 62.5%);
            -webkit-mask-image: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 25%, 
                rgba(0, 0, 0, 1) 37.5%, 
                rgba(0, 0, 0, 1) 50%, 
                rgba(0, 0, 0, 0) 62.5%);
        }

        .blur-layer-4 {
            backdrop-filter: blur(2.25px);
            -webkit-backdrop-filter: blur(2.25px);
            mask-image: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 37.5%, 
                rgba(0, 0, 0, 1) 50%, 
                rgba(0, 0, 0, 1) 62.5%, 
                rgba(0, 0, 0, 0) 75%);
            -webkit-mask-image: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 37.5%, 
                rgba(0, 0, 0, 1) 50%, 
                rgba(0, 0, 0, 1) 62.5%, 
                rgba(0, 0, 0, 0) 75%);
        }

        .blur-layer-5 {
            backdrop-filter: blur(4.5px);
            -webkit-backdrop-filter: blur(4.5px);
            mask-image: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 50%, 
                rgba(0, 0, 0, 1) 62.5%, 
                rgba(0, 0, 0, 1) 75%, 
                rgba(0, 0, 0, 0) 87.5%);
            -webkit-mask-image: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 50%, 
                rgba(0, 0, 0, 1) 62.5%, 
                rgba(0, 0, 0, 1) 75%, 
                rgba(0, 0, 0, 0) 87.5%);
        }

        .blur-layer-6 {
            backdrop-filter: blur(9px);
            -webkit-backdrop-filter: blur(9px);
            mask-image: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 62.5%, 
                rgba(0, 0, 0, 1) 75%, 
                rgba(0, 0, 0, 1) 87.5%, 
                rgba(0, 0, 0, 0) 100%);
            -webkit-mask-image: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 62.5%, 
                rgba(0, 0, 0, 1) 75%, 
                rgba(0, 0, 0, 1) 87.5%, 
                rgba(0, 0, 0, 0) 100%);
        }

        .blur-layer-7 {
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            mask-image: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 75%, 
                rgba(0, 0, 0, 1) 87.5%, 
                rgba(0, 0, 0, 1) 100%);
            -webkit-mask-image: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 75%, 
                rgba(0, 0, 0, 1) 87.5%, 
                rgba(0, 0, 0, 1) 100%);
        }

        .blur-layer-8 {
            backdrop-filter: blur(36px);
            -webkit-backdrop-filter: blur(36px);
            mask-image: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 87.5%, 
                rgba(0, 0, 0, 1) 100%);
            -webkit-mask-image: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 87.5%, 
                rgba(0, 0, 0, 1) 100%);
    }

        .services-container-01 {
      display: flex;
      width: 100%;
      gap: 20px;
    }

    .card-01 {
      background: #111;
      border: 1px solid #222;
      border-radius: 12px;
      flex: 1;
      padding: 30px 20px;
      transition: all 0.5s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 400px;
      justify-content: space-between;
    }

    .card-01.active {
      flex: 2; /* 200% width */
      background-color: #181818;
      border-color: #fff;
    }

    .icon-01 {
      font-size: 32px;
      margin-bottom: 200px;
    }

    .content-01 {
      opacity: 0;
      height: 0;
      overflow: hidden;
      transition: opacity 0.3s ease, height 0.3s ease;
      font-size: 14px;
      line-height: 1.6;
    }

    .card-01.active .content-01 {
      opacity: 1;
      height: auto;
    }

    .tag-01 {
      display: inline-block;
      padding: 5px 10px;
      border: 1px solid #444;
      border-radius: 25px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
      align-self: flex-start;
    }

    .card-01-number {
      position: absolute;
      bottom: 20px;
      right: 20px;
      font-size: 12px;
      opacity: 0.5;
    }

    @media (max-width: 608px) {
           
        .mainHeading{
      font-size: 45px;
    }
.cardImageProject .card-img-overlay{
    opacity: 0 !important;
}
.row.pt-50{
    padding-top: 0px !important;
}
.row.pt-50 .col-md-6{
    padding-top: 50px !important;
}
.card-01 .content-01{
opacity: 1 !important;
    height: auto !important;
}
    }
    @media (max-width: 468px) {
.main-marq .box .item{
    padding: 0px ;
}
.clients-dm:after , .clients-dm:before{
    width: 90px;
}
.intro-dm.pt-100 .container.pt-100{
    padding-top: 20px !important;
}
.work-card .card-item .cont{
    padding: 20px !important;
        justify-content: space-around;
}
.mt-40{
    margin-top: 20px !important;
}
.tag-01{
    padding: 5px 9px;
    font-size: 10px ;
}
.d-flex.flex-wrap.gap-3.content-01{
    padding-top: 10px !important;
    gap:10px !important;
}
        .work-card .room-card .card-item .cont{
            padding:15px !important;
        }
        .work-card .room-card .card-item{
            margin-bottom: 0px;
            background-color: #080808;
        }
    .fontSize {
        font-size: 17px !important;
        letter-spacing: 0px;
    }
    .socialIcon .icns{
        font-size: 16px !important;
    }
    /* .footer-sa .col-md-2{
        text-align: center !important;
    } */
    .container-fluid.section-padding.pt-0.pb-80{
        padding-bottom: 0px !important;
    }
    }
    .belowmobilescreen{
    display: none;
}
    @media  (max-width:1025px) {
.team-cst.section-padding{
            overflow: hidden !important;
        }
        .thecontainer{
              overflow: hidden !important;
        }
    }
    @media (min-width: 769px) and (max-width:1025px) {
        .fontsizecont{
        font-size: 20px !important;
        }
        .review-text{
            font-size: 23px !important;
        }
        .d-flex.RoundCircle.justify-content-end{
            justify-content: start !important;
        }
        .icon-01{
            margin-bottom: 140px !important;
        }
    }
    @media (max-width: 768px) {
        .serv-ms.bg-img .container .row .col-lg-4{
            padding-top: 15px !important;
        }
        .serviceHeader{
            font-size: 26px;
        }
        .clients-dm .item img{
            width: 70px !important;
        }
        .videoPanel{
            top: 0px !important;
        }
        .serv-ms .item{
            min-height: 33vh;
            height: 33vh;
        }
        .tablistFlex{
            justify-content: start !important;
        }

        .socialIcon{
            justify-content: flex-start;
        }
                .review-text {
            font-size: 20px !important;
        }
        .belowmobilescreen{
            display: block;
            padding-top: 1.5rem;
        }
        .Footer_logos__jFNys {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            align-items: center;
            gap: 1.25rem;
        }
        .footer-sa .logo{
            width: 60px;
            height: 60px;
        }
        .services-container-01 {
            flex-direction: column;
        }
        .bottom-blur-container{
            height: 100px;
        }
        .card-01 {
            flex: none;
            width: 100%;
        }
        .socialSectors .RoundCircle{
            gap: 0px;
        }
        .card-01.active {
            flex: none;
            width: 100%;
        }
        .footer_logo img {
            /* height: 4.25rem; */
            width: 9rem;
        }
        .marginTop{
            margin: 1.5rem 0rem 0rem 0rem;
        }
        .socialSectors{
            padding: 0rem;
        }
        .icns a{
            font-size: 16px ;
        }
        .RoundCircle .icns a{
            font-size: 13px ;
        }
        .d-flex.footer_logo{
            flex-wrap: wrap;
        }
        .box-dark-01{
            min-height: 1070px !important;
        }
        .videoSection{
            height: 55vh !important;
        }
        .statesNum{
            font-size: 35px;
        }
        .statesHead{
            font-size: 14px;
        }
        .marq-sa .item h3{
            font-size: 45px !important;
        }            
        .mobile-only{
            display: block !important;
        }
        .abovemobileScreen{
            display: none !important;
        }
        .MobileScreen{
        display: none !important;
        }
        .desktopscreen{
        display: block !important;
        }
    }
.videoSection{
    width: 100%; height: auto; position: relative; z-index: 0;transform: rotate(45deg);
}





.view-details-btn {
  text-transform: uppercase;
  text-decoration: underline;
  color: #ff3d00; /* Customize color as needed */
  font-size: 14px;
  letter-spacing: 2px;
  transition: color 0.3s ease;
  margin-top: 20px;
}

.view-details-btn .arrow {
  font-size: 14px;
  transform: translateY(-1px); /* optional vertical alignment */
}

.view-details-btn:hover {
  color: #fff; /* Lighter on hover */
}


 .ProjectCard_heading__1csIW  {
        margin-top: auto;
        font-size: 30px;  
        line-height: 1;
        color: #fff; 
    }


.ProjectCard_tags__XdVcf {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: .5rem;
    padding-top: 40px;
    padding-left: 0px;
    z-index: 5
}

.ProjectCard_tags__XdVcf li {
    font-size: .75rem;
    line-height: 1;
    font-weight: 400;
    letter-spacing: calc(-10em / 1000);
    color: #fff;
    border-radius: 2rem;
    border: 1px solid #fff;
    padding: 4px 10px 5px;
    list-style: none
}

@media (min-width: 769px) {
    .ProjectCard_tags__XdVcf li {
        font-size:.8125rem;
        padding: 8px 15px
    }
}

@media screen and (min-width: 1920px) {
    .ProjectCard_tags__XdVcf li {
        font-size:1.05rem;
        padding: 12px 20px
    }
}

.cardImageProject .card-img-overlay {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 50px;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cardImageProject:hover .card-img-overlay {
    opacity: 1;
    visibility: visible;
}
        .ProjectCard{
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #504f4f;
            border-right: 1px solid #504f4f;
            border-left: 1px solid #504f4f;
            border-top-left-radius: .625rem;
            border-top-right-radius: .625rem;
            padding: 1.1rem 1.25rem 2.225rem;
            margin-bottom: -1.125rem;
        }


.services-accord2 {
  color: #fff;
  /* background: #080808; */
  border-radius: 50px 50px 0 0;
  padding-bottom: 100px;
  position: relative;
  z-index: 5; }
  .services-accord2 .accordion .accordion-item {
    background: transparent;
    border-radius: 0;
    border: 0; }
  .services-accord2 .accordion .accordion-title {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    overflow: hidden; }
    .services-accord2 .accordion .accordion-title h2 {
      font-size: 90px;
      font-weight: 500;
      margin-bottom: -60px; }
    .services-accord2 .accordion .accordion-title .icon svg {
      width: 40px;
      height: 40px; }
    .services-accord2 .accordion .accordion-title:not(.collapsed) .title h2 {
      margin-bottom: 0; }
    /* .services-accord2 .accordion .accordion-title:not(.collapsed) .icon svg path {
      stroke: #2d4d9c; } */
  .services-accord2 .accordion .accordion-body {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .services-accord2 .accordion .accordion-body .img {
      height: 140px;
      border-radius: 15px; }

.servise_title {
  position: relative;
  width: 65%;
}


/* Base style for all spans */
.services-accord2 .accordion-item .servise_title .service_list span {
  padding: 7px 12px;
  background: #ff3d00;
  border-radius: 30px;
  position: absolute;
  font-size: 14px;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* Span 1 */
.services-accord2 .accordion-item .servise_title .service_list span:nth-of-type(1) {
  top: 0;
  left: 15%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

/* Span 2 */
.services-accord2 .accordion-item .servise_title .service_list span:nth-of-type(2) {
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

/* Span 3 */
.services-accord2 .accordion-item .servise_title .service_list span:nth-of-type(3) {
  bottom: 0;
  right: 15%;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

/* Span 4 */
.services-accord2 .accordion-item .servise_title .service_list span:nth-of-type(4) {
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) translateX(50%);
  -ms-transform: translateY(-50%) translateX(50%);
  transform: translateY(-50%) translateX(50%);
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

/* Hover activation */
.services-accord2 .accordion-item:hover .servise_title .service_list span {
  opacity: 1;
}

@media (max-width:600px){
    .box-dark.goup{
        margin-top: -80px !important;
    }
  .services-accord2 .accordion .accordion-title h2{
        font-size: 26px;
        font-weight: 500;
        margin-bottom: -25px;
        letter-spacing: 0px !important;
    }
       
}