.main-container {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  margin-bottom: -50%;
  padding-top: 40px;
}
.main {
  margin: 0px auto;
  width: 1000px;
  height: 1000px;
  position: relative;
}
.big-circle {
  height: 100%;
  width: 100%;
  position: relative;
  border: 2px solid #F4F4F4;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  animation: Rotate 20s linear infinite;
  -webkit-animation: Rotate 20s linear infinite;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
}
.icon-block {
  position: absolute;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.icon-block img {
  margin: 0px auto;
  animation: Rotate-reverse 20s linear infinite;
  -webkit-animation: Rotate-reverse 20s linear infinite;

}
.icon-block:first-child {
  -webkit-transform: translate(0%, -48%);
   top: 0%;
}
.icon-block:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
}
.icon-block:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
}
.icon-block:nth-child(4) {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.icon-block:nth-child(5) {
  top: 19%;
  left: 10%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.icon-block:nth-child(6) {
  top: 83%;
  left: 12%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.icon-block:nth-child(7) {
  top: 83%;
  left: 88%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.icon-block:nth-child(8) {
  top: 17%;
  left: 88%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
    
.circle .icon-block:first-child {
  -webkit-transform: translate(88%, 88%);
  top: 4%;
  left: 5%;
}
.circle .icon-block:nth-child(2) {
  top: 47%;
  right: 0;
  transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
}
.circle .icon-block:nth-child(3) {
  bottom: 0;
  left: 46%;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
}
.circle .icon-block:nth-child(4) {
  top: 54%;
  left: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.circle .icon-block:nth-child(5) {
  top: 15%;
  left: 85%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.circle .icon-block:nth-child(6) {
  top: 85%;
  left: 15%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.circle .icon-block:nth-child(7) {
  top: 85%;
  left: 86%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.circle .icon-block:nth-child(8) {
  top: 0%;
  left: 54%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
    
/* circle content */
.circle {
  animation: circle-rotate 20s linear infinite;
  -webkit-animation: circle-rotate 20s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
 transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  width: 850px;
  height: 850px;
  border: 2px solid #F4F4F4;
  border-radius: 50%;
}
.circle .icon-block img {
   animation: img-rotate 20s linear infinite;
  -webkit-animation: img-rotate 20s linear infinite;
}

/* keyframe animation */

@keyframes Rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes Rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes Rotate-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes Rotate-reverse {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes circle-rotate {
  from {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(405deg);
  }
}

@-webkit-keyframes circle-rotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(405deg);
  }
}

@keyframes img-rotate {
  from {
    transform: rotate(-45deg);
  }
  to {
    transform: rotate(-405deg);
  }
}

@-webkit-keyframes img-rotate {
  from {
    -webkit-transform: rotate(-45deg);
  }
  to {
    -webkit-transform: rotate(-405deg);
  }
}



/* Half Circle css */
.techstackbuttons.buttons {
            margin-bottom: 20px;
        }
        .techstackbuttons.buttons button {
            margin: 5px;
            padding: 10px 20px;
            cursor: pointer;
        }
        .techstackbuttons h1 {
            transition: opacity 0.3s ease-in-out;
        }
        .circle-container {
            position: relative;
            width: 100vw; /* Updated width */
            height: 716px;  /* Updated height */
            margin: auto;
            overflow: hidden;
            max-width: 1400px;
        }
        .circle-container .icon {
            position: absolute;
            width: 94px;
            height: 94px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            cursor: pointer;
        }
       .circle-bg {
            background: url(https://griphhy.itmakerz.com/wp-content/uploads/2025/03/Subtract.png);
            height: 100%;
            width: 100%;
            position: absolute;
            background-size: cover;
            background-position: center;
        }
        @media screen and (max-width: 1024px) {
			.circle-container .icon {
                width: 70px;
                height: 70px;
                font-size: 25px;
            }
            .circle-container {
                width: 100%;
                height: 650px;
                overflow: visible;
            }

            
            
            .circle-bg{
                display: none;
            }
			.formobilecss{
				display: flex;
				flex-wrap: wrap;
				justify-content: center;
				align-items: center;
				flex-direction: column;
			}
			.techstackbuttons {
				justify-items: center;
				position: absolute;
				width: 100%;
				bottom: 0;
				z-index: 1;
				height: fit-content !important;
				margin-bottom: 0px !important;
				top: 25%;
			}
        }
		 @media screen and (max-width: 375px) {
            .circle-container .icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
           }
		  div#circle {
			padding-left: 20px;
		}
       }
/* Half Circle css finish */

/* Testimonail css start */

.testimonial-section {
  display: flex;
  gap: 140px;
  align-items: flex-start;
}

.testimonial-content {
  	flex: 2;
	align-self: center;
}

#testimonial-text {
    font-size: 22px;
    color: #8996BB;
    line-height: 30px;
    margin-bottom: 64px;
    font-weight: 400;
	font-family:'rebond-grotesque';
}

.author-active {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.testimonial-slider {
  flex: 1;
}

.testimonial-slider .author {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 20px;
    border: 2px solid #EFF3FF !important;
    border-radius: 20px;
    cursor: pointer;
    background: #fff !important;
    margin-bottom: 20px;
}
	
span.authorname {
    font-family: 'rebond-grotesque';
    color: #0A1132;
    font-weight: 600;
    font-size: 20px;
}
	
.testimonial-section .author.slick-slide.slick-current.slick-active {
    background: #ffffff;
    border: 2px solid #3184ff57;
}
	
.testimonial-section img.authorimg {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.testimonial-slider .slick-current {
  background-color: #f5f7ff;
}
	
.author-active span#active-name {
    font-family: 'rebond-grotesque';
    color: #0A1132;
    font-weight: 600;
    font-size: 20px;
}
	
.author-active img#active-img {
    width: 80px;
    height: 80px;
    border-radius: 100px;
    background: #ff596499;
    object-fit: contain;
    padding: 10px;
}
	
.testimonial-section button.slick-next.slick-arrow {
    position: absolute;
    top: -100px;
    right: 0;
	padding: 0px 15px 9px 15px;
    line-height: 29px;
    border-radius: 100px;
    border: none;
    color: #0A1132;
    font-size: 29px;
    background: #0A11321A;
}
	
.testimonial-section button.slick-prev.slick-arrow {
    position: absolute;
    top: -100px;
    right: 50px;
    padding: 0px 15px 9px 15px;
    line-height: 29px;
    border-radius: 100px;
    border: none;
    color: #0A1132;
    font-size: 29px;
    background: #0A11321A;
}

/* Testimonial css finish */


/* Vertical technology */

.vertical-line {
            position: absolute;
            left: 7%;
            top: 0;
            bottom: 0;
            width: 2px;
            z-index: 0;
        }
	.base-line {
            background-color: white;
            opacity: 0.3;
     }
	.animated-line {
            background-color: white;
            transform-origin: top;
            transform: scaleY(0);
            opacity: 1;
        }
		.border-indicator {
			position: absolute;
			left: 0;
			width: 5px;
			/* Thickness of the border */
			height: 0;
			background-color: #008080;
			/* Green color */
			transition: top 0.3s ease-in-out, height 0.3s ease-in-out;
		}

		.award-listing li {
			flex: 0 0 100%;
			max-width: 100%;
		}

		.mainsection {
			display: block;
		}

		.award-listing div p {
			color: #fff;		
    		font-family: 'rebond-grotesque';
			font-size: 24px;
			font-weight: 400;
			line-height: 29.5px;
		}

		.award-listing .right-content {
			padding-left: 20px;
			height: auto;
			display: flex;
			flex-wrap: wrap;
			justify-content: flex-end;
			flex-direction: column;
			width: 100%;
			display:none;
		}

		.award-listing .left-content {
			width: 100%;
		}

		.award-tab-list li a.active+.border-indicator {
			height: 100%;
		}

		.award-listing li {
			padding: 0;
			border: 0;
			height: fit-content;
		}


		ul.award-tab-list li {
			margin-bottom: 0px !important;
			background-color: #0A1132;
			z-index:1;
		}

		ul.award-tab-list li a {
			font-family: "Inter", Sans-serif;
			font-size: 19px !important;
			font-weight: 500 !important;
			line-height: 31.47px;
			color: #000000 !important;
			padding: 6px 20px 6px 0px !important;
		}

		.award-tabing-row .award-tab-content-col {
			max-width: 100%;
			flex: unset !important;
			padding-top: 0px !important;
		}

.award-tabing-row {
    flex-wrap: nowrap;
}
.left-content img{
	width:100%;
}
ul.award-tab-list li a::before {
    display: none;
}

.award-tabing-row .award-tab-col {
    flex: 0 0 23%;
    max-width: 22%;
    padding-right: 0px;
	padding-top: 0px;
    
}
.award-review-section {
    padding: 70px 0;
    overflow: hidden;
    height: 100vh;
	display:flex;
	align-items:center;
	justify-content:center;
}

.award-review-section .container {
    max-width: 1420px;
    padding: 0 0px;
    margin: 0 auto;
	display:flex;
	width: 100%;
    height: 60vh;;
    position: relative;
}
.award-review-section .section-title {
    font-family: 'Pilat Extended';
    text-transform: uppercase;
    width: calc(100% + 200px);
    color: #242424;
    font-size: 48px;
    margin-bottom: 5vh;
    margin-top: 0;
}

.award-tabing-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.award-tabing-row>div {
    padding: 0 20px;
}

.award-tabing-row .award-tab-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 00px;
}

.award-tabing-row .award-tab-content-col {
    flex: 0 0 50%;
    max-width: 50%;
}
	.award-tab-col a{
		    border-bottom: 0 solid #000 !important;
	}
ul.award-tab-list,
ul.award-listing {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

ul.award-tab-list li {
    margin-bottom: 0px;
}

ul.award-tab-list li a {
    font-size: 26px;
    padding: 10px 34px 10px 0;
    color: #000;
    opacity: 0.5;
    border-bottom: 1px solid #000;
    display: block;
    transition: all 300ms ease-in-out;
    position: relative;
    font-weight: 500;
}

ul.award-tab-list li a:hover {
    opacity: 0.5;
}

ul.award-tab-list li a.active {
    opacity: 1;
}

ul.award-tab-list li a::before {
    content: '';
    height: 24px;
    width: 24px;
    background-image: url(../images/arrow-right-black.svg);
    background-position: center;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

ul.award-listing {
    display: flex;
    flex-wrap: wrap;
}

.award-listing li {
    padding: 40px;
    border: 1px solid rgba(115, 130, 130, 0.37);
    flex: 0 0 33.33%;
    max-width: 33.33%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: none;
}

.award-listing li:nth-child(1),
.award-listing li:nth-child(2),
.award-listing li:nth-child(3) {
    border-top: none;
}

.award-listing li:nth-child(1),
.award-listing li:nth-child(4),
.award-listing li:nth-child(7),
.award-listing li:nth-child(10),
.award-listing li:nth-child(13),
.award-listing li:nth-child(16) {
    border-left: none;
}

.award-listing li:nth-child(3),
.award-listing li:nth-child(6),
.award-listing li:nth-child(9),
.award-listing li:nth-child(12),
.award-listing li:nth-child(15),
.award-listing li:nth-child(18) {
    border-right: none;
}

.award-listing li img {
    max-width: 100%;
}

.award-tabing-row .client-review-wrap {
    position: relative;
    height: 100%;

}


.slick-arrow.slick-prev svg {
    transform: rotate(180deg);
}


.award-tab-content-col,
.award-tabing-row .award-tab-col,
.award-tabing-row {
    max-height: calc(100vh - 140px);

}

.award-tabing-row {
    overflow: hidden;
}

.award-tab-content-col .tab-content-single {
    min-height: calc(100vh - 400px);
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease-in-out;
}

.tab-content-single [data-anim="scroll"] {
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease-in-out;
}

.section-wrapper {
    overflow: hidden;
}

.award-tab-content-col .tab-content-single.show,
.tab-content-single [data-anim="scroll"].active {
    opacity: 1;
    visibility: visible;
}

.award-listing h2
{
    margin-top: 0;
}


@media(max-width:1600px) {

    .development-section .container,
    .award-review-section .container {
        max-width: 100%;
        padding: 0 0px;
    }

    section.award-review-section {
        padding: 30px 0 20px;
		
    }

    .award-tab-content-col,
    .award-tabing-row .award-tab-col,
    .award-tabing-row {
        max-height: calc(100vh - 50px);
    }

    .client-review-header .review-title,
    .review-slide .review-text {
        font-size: 42px;
    }

    .award-review-section .section-title {
        font-size: 40px;
    }
}

@media(max-width:1400px) {
    .client-review-header .review-title,
    .review-slide .review-text {
        font-size: 36px;
    }

    .award-review-section .section-title {
        font-size: 34px;
    }

    ul.award-tab-list li a {
        font-size: 19px;
    }

    ul.award-tab-list li {
        margin-bottom: 20px;
    }


    .award-tabing-row .award-tab-col {
        padding-right: 140px;
    }

    .award-tabing-row .award-tab-col {
        padding-right: 20px;
    }

    .award-review-section .section-title {
        width: calc(100% + 140px);
    }

    .award-listing li {
        padding: 30px 50px;
    }

    .award-listing li {
        padding: 0;
    }

}
@media(max-width:1199px) {
    .award-tabing-row .award-tab-col {
        padding-right: 0px;
    }

    .award-listing li {
        padding: 30px;
    }
	ul.award-tab-list, ul.award-listing {
		gap: 0px;
	}
	.award-tab-list img {
		height: 70px;
	}
}
@media(max-width:991px) {

    .development-section .container,
    .award-review-section .container {
        padding: 0 20px;
    }

    .tech-box-col .tech-box-row,
    .tech-content-anim .tech-content-single,
    .development-section .tech-scroll-animation {
        min-height: 600px;
        max-height: 600px;
    }

    .award-tabing-row .award-tab-col {
        padding-right: 0;
    }

}

@media(max-width:767px) {
	.circle-container .icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

	.right-content h6{
		    font-size: 23px;
	}
    .tech-box-col .tech-box-row,
    .tech-content-anim .tech-content-single,
    .development-section .tech-scroll-animation,
    .tech-content-col .col-inner {
        height: calc(100vh - 20px);
        min-height: auto;
        max-height: 100%;
        overflow: hidden;
    }
    .award-review-section .section-title {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .award-tabing-row .award-tab-col,
    .award-tabing-row .award-tab-content-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    ul.award-tab-list li a {
        font-size: 16px;
    }

    ul.award-tab-list li {
        margin-bottom: 10px;
    }

    .client-review-header .review-title,
    .review-slide .review-text {
        font-size: 24px;
    }

  

    .award-review-section .section-title {
        width: 100%;
    }

    ul.award-tab-list li a {
        padding-right: 0px;
    }

    .award-tab-list {
        max-height: 100%;
        overflow: auto;
    }

    .award-tabing-row .award-tab-col {
        z-index: 1;
    }

    .award-tabing-row .award-tab-col {
        background-color:#0A1132;
    }
}
@media(max-width:767px) {
	ul.award-tab-list li a h6 {
		font-size: 18px !important;
	}
	.award-tab-list img,.award-tab-list p{
		display:none !important;
	}
	.base-line,.animated-line {
			display: none;
		}
	.development-section, .award-review-section {
		display: block;
		padding-top:0 !important;
	}
   .award-listing h2 {
        font-size: 20px !important;
        font-weight: 500 !important;
        line-height: 30px !important;
        margin-bottom: 18px !important;
    }

    .award-listing h4 {
        font-size: 20px !important;
        font-weight: 500 !important;
        line-height: 30px !important;
    }

    .award-listing p {
        font-size: 16px !important;
        font-weight: 300 !important;
        line-height: 26px !important;
    }

   .mainsection {
        display: block;
    }

    .award-listing .left-content {
        width: 100%;
    }

    .award-listing .right-content {
        padding-left: 0px;
        height: 100%;
        display: block;
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: column;
        width: 100%;
        gap: 100px;
		color: #fff !important;
        font-family: 'rebond-grotesque';
    }

    .award-tabing-row .award-tab-content-col {
        border-left: 0;
        /* padding-left: 0; */
        max-width: 100%;
        flex: 0 0 100% !important;
		padding: 10px 0px 0px 0px !important;
    }

    .award-tabing-row .award-tab-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 5px;
        padding-left: 5px;
		padding-top: 0px;
    }

    .award-tabing-row {
        flex-wrap: wrap;
    }

   ul.award-tab-list .slick-track {
        display: flex;
        align-items: center;
        gap: 20px;
        border: 0;
    }
    .eael-advance-tabs.eael-tabs-vertical>.eael-tabs-nav {
        min-width: auto;
    }
    .award-tabing-row .award-tab-col
    {
        position: relative;
		order: -1;
    }
	ul.award-tab-list li {
		font-size: 13px !important;
		font-weight: 600;
		line-height: 15px;
		padding: 0;
	}
	.review-text{
		    line-height: 35px;
	}
    .award-tabing-row
    {
        margin: 0;
    }
    .e-con-boxed .scroll-anim-section .container
    {
        padding: 0;
		display: block;
        height: auto;
    }
    .award-tabing-row .award-tab-content-col
    {
        max-height: calc(100vh - 80px);
    }
   
}

/* Vertical technology */