 @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&display=swap');

 :root {
     --primary-blue: #007bff;
     --secondary-blue: #0056b3;
     --light-blue: #e3f2fd;
     --text-dark: #2c3e50;
     --text-light: #6c757d;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html,
 body {
     font-family: 'Inter', sans-serif;
     line-height: 1.6;
     color: var(--text-dark);
     /* font-size: 14px !important; */
     overflow-x: hidden;
     scroll-behavior: smooth;

 }

 html::-webkit-scrollbar,
 body::-webkit-scrollbar {
     display: none;
     /* Chrome, Safari */
 }

 /* Navigation */
 .container {
     max-width: 80vw !important;
 }

 .sticky-hdnav {
     position: fixed;
     top: 0;
     z-index: 1030;
     /* Make sure it’s above other content */
     width: 100%;
     transition: background-color 0.3s ease, box-shadow 0.3s ease;
 }

 .sticky-hdnav.scrolled {
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
     background: #fffffff2;
 }

 .sticky-hdnav.scrolled .navbar .nav-link {
     color: #000000;
     position: relative;
     transition: color 0.3s ease;
 }

 .sticky-hdnav.scrolled .navbar-toggler {
     color: #333 !important;
     border: var(--bs-border-width) solid rgb(0, 0, 0);
 }

 .sticky-hdnav.scrolled .navbar-toggler-icon {
     color: rgb(0, 0, 0);
 }

 .navbar-toggler-icon {
     background-image: none;
     padding: 8px;
     font-size: 29px;
     color: white;
 }

 .navbar-toggler {
     padding: 0px;
     border: var(--bs-border-width) solid rgb(255, 255, 255);
 }



 .sticky-hdnav.scrolled .nav-link::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     height: 2px;
     /* thickness of underline */
     width: 0%;
     /* start hidden */
     background-color: #333;
 }

 .navbar-nav {
     gap: 22px;
 }

 .logo {
     height: 70px;
     background: #fff;
     padding: 0px;
     border-radius: 10px;
 }

 .navbar .nav-link {
     color: white;
     position: relative;
     transition: color 0.3s ease;
 }

 /* Hover effect: underline appears from left to right */
 .navbar .nav-link::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     height: 2px;
     /* thickness of underline */
     width: 0%;
     /* start hidden */
     background-color: white;
     transition: width 0.3s ease;
 }

 .navbar .nav-link:hover::after {
     width: 100%;
     /* underline expands on hover */
 }

 /* Active link: underline visible all the time */
 .navbar .nav-link.active::after {
     width: 100%;
 }

 /* Banner Section Banner Section Banner Section Banner Section Banner Section Banner Section Banner Section Banner Section */
 .new-hero {
     min-height: 80vh;
     background: linear-gradient(157deg, #2a3241 0%, #255abb 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 2rem;
     position: relative;
     overflow: hidden;
 }

 .new-hero::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     /* background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 55%), radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 55%); */
     background: #333 url(../images/ban-imgbg.webp) no-repeat;
     background-position: 100% 70%;
     z-index: 1;
     opacity: .1;
     background-blend-mode: overlay;
     animation: bgZoom 20s ease-in-out infinite;
     transform-origin: center;
 }

 @keyframes bgZoom {
     0% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.15);
     }

     100% {
         transform: scale(1);
     }
 }

 .hero-container {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 4rem;
     position: relative;
     z-index: 2;
 }

 /* Text Content */
 .hero-content {
     flex: 1;
     color: white;
     opacity: 1;
     transform: translateY(50px);
     transition: all 0.9s ease;
 }

 .hero-content.visible {
     opacity: 1;
     transform: translateY(0);
     transition-delay: 0.1s;
     margin-top: 62px;
 }

 .hero-content h1 {
     font-size: 3.5rem;
     font-weight: 700;
     background: linear-gradient(to right, #ffffff, #e0e0e0);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
 }

 .hero-content h2 {
     -webkit-text-stroke: 1px #ffffff;
     -webkit-text-fill-color: transparent;
     background: none !important;
     -webkit-background-clip: unset !important;
     background-clip: unset !important;
     font-size: 50px;
 }

 .hero-content p {
     font-size: 1.2rem;
     line-height: 1.6;
     margin-bottom: 2.5rem;
     color: rgba(255, 255, 255, 0.8);
     max-width: 90%;
 }

 /* CTA Button with Glow */
 .cta-button {
     position: relative;
     display: inline-flex;
     align-items: center;
     gap: 0.8rem;
     background: white;
     color: #3d4d6a;
     padding: 1rem 2rem;
     border-radius: 2px;
     text-decoration: none;
     font-weight: 600;
     font-size: 1.1rem;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
     overflow: hidden;
 }

 /* 🌈 Animated Glow Pulse */
 .cta-button::after {
     content: "";
     position: absolute;
     top: 50%;
     left: 50%;
     width: 160%;
     height: 160%;
     background: radial-gradient(circle,
             rgba(67, 97, 238, 0.35) 0%,
             transparent 70%);
     transform: translate(-50%, -50%);
     border-radius: 50%;
     z-index: -1;
     animation: glowPulse 2.5s ease-in-out infinite;
 }

 @keyframes glowPulse {
     0% {
         transform: translate(-50%, -50%) scale(1);
         opacity: 0.6;
     }

     50% {
         transform: translate(-50%, -50%) scale(1.2);
         opacity: 1;
     }

     100% {
         transform: translate(-50%, -50%) scale(1);
         opacity: 0.6;
     }
 }

 .cta-button::before {
     content: "";
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg,
             transparent,
             rgba(255, 255, 255, 0.2),
             transparent);
     transition: left 0.5s ease;
 }

 .cta-button:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(67, 97, 238, 0.5);
 }

 .cta-button:hover::before {
     left: 100%;
 }

 .cta-button:hover .arrow-icon {
     transform: translateX(5px);
 }

 .arrow-icon {
     transition: transform 0.3s ease;
     font-size: 1.2rem;
 }

 /* Illustration Side */
 .hero-illustration {
     flex: 1;
     display: flex;
     justify-content: center;
     align-items: center;
     opacity: 1;
     transform: translateX(80px);
     transition: all 1s ease;
 }

 .hero-illustration.visible {
     opacity: 1;
     transform: translateX(0);
     transition-delay: 0.4s;
 }

 .illustration-container {
     position: relative;
     width: 100%;
     max-width: 500px;
     height: 500px;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .illustration {
     width: 550px;
     height: auto !important;
     position: absolute;
     height: auto;
     filter: drop-shadow(43px 79px 126px rgba(0, 265, 255, 0.9));
     /*  animation: float 6s ease-in-out infinite; */
 }

 .floating-element {
     position: absolute;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.1);
     animation: float 8s ease-in-out infinite;
 }

 .element-1 {
     width: 80px;
     height: 80px;
     top: 2%;
     left: -1%;
     animation-delay: 0s;
 }

 .element-2 {
     width: 40px;
     height: 40px;
     bottom: 20%;
     right: -15%;
     animation-delay: 1s;
 }

 .element-3 {
     width: 60px;
     height: 60px;
     top: 60%;
     left: -19%;
     animation-delay: 2s;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0) scale(1);
     }

     50% {
         transform: translateY(-20px) scale(1.02);
     }
 }

 /* aboutus aboutus aboutusaboutus aboutus aboutus aboutus aboutus aboutus aboutus aboutus aboutus aboutus aboutus v aboutus v aboutus v aboutus */
 .aboutus {
     height: auto;
     padding: 30px 0 50px 0;
 }

 .aboutus h2 {
     font-size: 35px;
     /* padding-bottom: 20px; */
 }

 .aboutus h3 {
     color: #333;
 }

 .aboutus p {
     font-size: 17px !important;
     text-align: justify;
 }

 /*  .aboutus .silverbox {
     background: linear-gradient(180deg, #3D4D6A 0%, #7897D0 100%);
     box-shadow: -10px 7px 21px -1px rgba(0, 0, 0, 0.25);
     padding: 30px;
 }

 .aboutus .silverbox h2 {
     margin-top: 4px;
     margin-bottom: 15px;
     width: 100%;
 }

 .aboutus .silverbox p {
    padding:10px 0;
	text-align:justify;
 }

 .aboutus .silverbox button {
     margin-top: 19px;
     margin-bottom: 34px;
     font-size: 10px;
     width: 147px;
     padding: 0.5rem 1rem;
 } */

 .footer-copyright {
     background-color: black;
     color: #fff;
     padding: 15px 30px;
     text-align: center;
 }

 .footer-copyright-wrapper {
     margin-left: auto;
     margin-right: auto;
     max-width: 1200px;
 }

 .footer-copyright-text {
     color: #fff;
     font-size: 13px;
     font-weight: 400;
     line-height: 18px;
     margin-bottom: 0;
     margin-top: 0;
 }

 .footer-copyright-link {
     color: #fff;
     text-decoration: none;
 }
 .top-right-icon {
     left: 215px;
     width: 80px;
     height: auto;
 }

 .aboutus ul {
     list-style: none;
     padding: 0 0 30px 0;
 }

 .aboutus ul li {
     padding: 5px 0;
 }

 .aboutus ul li i {
     font-size: 20px;
     color: #ffb716;
     float: left;
     padding: 0 14px 0 0;
 }

 .aboutus-list {
     list-style-type: disc;
 }

 .aboutus .right-side {
     position: relative;
     padding: 0;
 }

 .spinner-wrap {
     position: absolute;
     left: 94px;
     bottom: 231px;
     z-index: -1;
 }

 .spinner-wrap-tw {
     top: 92% !important;
     right: 20% !important;
     position: absolute;
     z-index: -1;
 }

 .aboutus .right-side img {
     display: block;
     width: auto;
     height: 52px;
     object-fit: cover;
 }
 .aboutus .left-content {
     position: relative;
     color: #fff;
 }

 .about-container {
     width: 90%;
     margin: 0 auto;
     position: relative;
 }

 .ourservices {
     background:linear-gradient(180deg, #5165a1 0%, #255499 100%);
     padding: 60px 0;
     position: relative;
 }

 .ourservices .owl-nav {
     display: flex;
     justify-content: center;
     font-size: 35px;
     position: absolute;
     right: 0px;
     top: -143px;
     color: white;
     gap: 12px;
 }

 .services-sec-title {
     font-size: 30px;
 }

 .ourservices:before {
     background: url(../images/overlay-left.png) no-repeat;
     position: absolute;
     content: "";
     width: 100%;
     height: 100%;
     top: 0;
     opacity: .1;
     background-position: 13% 74%;
 }

 .ourservices h1 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
 }

 .ourservices .top-left-service {
     rotate: 180deg;
 }

 .ourservices .bottom-right-service {
     /* bottom: -17px; */
     right: -3px;
 }

 .ourservices .corner-image {
     position: absolute;
     width: auto;
     height: 680px;
     z-index: 0;
     animation: floatAnim 6s ease-in-out infinite;
     pointer-events: none;
     top: 0;
 }

 .nav-pills {
     border-bottom: 1px solid #ffffff;
     padding-bottom: 1rem;
     margin-bottom: 2rem;
     flex-wrap: wrap;
     overflow-x: auto;
     overflow-y: hidden;
     -webkit-overflow-scrolling: touch;
     scrollbar-width: none;
 }
 .nav-pills::-webkit-scrollbar {
     display: none;
 }

 .nav-pills .nav-item {
     flex-shrink: 0;
 }

 .nav-pills .nav-link {
     background-color: transparent;
     border: none;
     color: #ffffff;
     padding: 0.75rem 1.5rem;
     border-radius: 8px;
     white-space: nowrap;
     transition: all 0.3s ease;
     margin-top: 30px;
     margin-right: 12px !important;
 }

 .nav-pills .nav-link:hover {
     background-color: rgb(255, 255, 255);
     color: #000000;
 }

 .nav-pills .nav-link.active {
     background-color: #ffffff;
     color: rgb(0, 0, 0);
 }

 .tab-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin-bottom: 2rem;
     gap: 2rem;
 }

 .tab-header-content {
     flex: 1;
 }

 .tab-header h2 {
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 1rem;
     color: white;
 }

 .tab-header p {
     font-size: 1rem;
     color: #ffffff;
     line-height: 1.6;
     margin: 0;
 }

 .navigation-wrapper {
     display: flex;
     gap: 1rem;
     flex-shrink: 0;
 }

 .swiper-nav-btn {
     width: 48px;
     height: 48px;
     background: #ffffff;
     border: none;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     color: rgb(0, 0, 0);
     font-size: 21px;
 }

 .swiper-nav-btn:hover {
     background: #666;
     transform: scale(1.05);
 }

 .swiper-nav-btn.swiper-button-disabled {
     opacity: 0.4;
     cursor: not-allowed;
 }

 .servicesmySwiper {
     padding-bottom: 1rem;
 }

 .swiper-wrapper {
     display: flex;
     align-items: stretch;
 }

 .swiper-slide {
     display: flex;
     /* flex: 1 0 23%; */
     height: auto !important;
 }

 .service-card {
     /* flex: 1;  */
     background-color: #000000;
     border-radius: 12px;
     overflow: hidden;
     height: 100%;
     display: flex;
     flex-direction: column;
     transition: all 0.3s ease;
     height: 353px;

 }

 .service-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
 }

 .service-card-image {
     position: relative;
     width: 100%;
     height: 181px;
     overflow: hidden;
     padding: 8px;
 }


 .service-card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
     border-radius: 10px;
 }

 /* .service-card:hover .service-card-image img {
     transform: scale(1.1);
     overflow: hidden;
 } */

 .ourservices .owl-carousel .owl-stage-outer {
     position: relative;
     overflow: hidden;
     -webkit-transform: translate3d(0px, 0px, 0px);
     padding: 12px 0;
 }

 .service-card-content {
     padding-top: 2px;
     padding-left: 20px;
     padding-right: 20px;
     padding-bottom: 20px;
     flex: 1;
     display: flex;
     flex-direction: column;
     position: relative;
 }

 .service-card-title {
     font-size: 1rem;
     font-weight: 600;
     color: white;
     margin-bottom: 0.5rem;
 }

 .service-card-description {
     font-size: 0.875rem;
     color: #D1D5DB;
     line-height: 1.5;
     margin-bottom: 2.5rem;
     flex: 1;
 }

 .service-card-arrow {
     position: absolute;
     bottom: 0rem;
     right: 0rem;
     width: 60px;
     height: 60px;
     background: white;
     border: #ffffff;
     border-top-left-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
     box-shadow: 0 0 0 9px #7695cd;

 }


 .service-card-arrow i {
     font-size: 1.25rem;
     color: #333;
     transition: transform 0.3s ease;
 }

 .service-card:hover .service-card-arrow i {
     transform: rotate(45deg);
 }

 /* trusted by trusted by trusted by trusted by trusted by trusted by trusted by trusted by trusted by trusted by trusted by trusted by  */
 @keyframes scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(calc(-250px * 7));
     }
 }

 .trustedby .slider {
     height: 171px;
     margin: auto;
     overflow: hidden;
     position: relative;
     width: 88%;
     padding-top: 19px;
 }

 .trustedby {
     position: relative;
 }


 .trustedby::before {
     content: "";
     position: absolute;
     width: 517px;
     height: 100%;
     background-image: url(../images/counter_decorative.png);
     background-size: contain;
     background-repeat: no-repeat;
     left: 0;
     bottom: 0px;
     transform: scaleY(-1);
     opacity: 0.2;
 }

 .trustedby::after {
     content: "";
     position: absolute;
     width: 517px;
     height: 100%;
     background-image: url(../images/counter_decorative.png);
     background-size: contain;
     background-repeat: no-repeat;
     right: 0;
     bottom: 0px;
     transform: scalex(-1);
     opacity: 0.2;
     z-index: -1;
 }
.trusted_by-sec-title {
     font-size: 30px;
     font-weight: 500;
 }

 .trustedby .slider::before,
 .slider::after {
     background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
     content: "";
     height: 100px;
     position: absolute;
     width: 0px;
     z-index: 2;
 }

 .trustedby .slider::after {
     right: 0;
     top: 0;
     transform: rotateZ(180deg);
 }

 .trustedby .slider::before {
     left: 0;
     top: 0;
 }

 .trustedby .slider .slide-track {
     animation: scroll 40s linear infinite;
     display: flex;
     width: calc(250px * 14);
 }

 .trustedby .slider .slide {
     height: 100px;
     width: 250px;
 }
 .trustedby .slider .slide img {
     height: 134px;
     width: 134px;
     box-shadow: 0px 0px 23px rgba(0, 0, 0, 0.25);
     border-radius: 18.2972px;
 }


 .trustedby {
     padding: 40px 0;
 }

 .trustedby h2 {
     text-align: center;
     padding-bottom: 30px;
 }

 /* techstack techstack techstack techstack techstack techstack techstack techstack techstack techstacktechstack techstack techstack */
 .ourservices .decor-image {
     position: absolute;
     width: auto;
     height: 680px;
     z-index: 0;
     animation: floatAnim 6s ease-in-out infinite;
     pointer-events: none;
 }

 .tech-stack-sec-title {
     font-size: 30px;
 }

 .tech-stack-content {
     position: relative;
 }

 .services-top-icon {
     height: 50px;
 }

 .main-section .top-right {
     right: -317px;
     animation-delay: 0.5s;
     position: absolute;
     bottom: -33px;
     height: 500px;
     rotate: 325deg;
 }

 .main-section .bottom-left {
     rotate: 180deg;
     top: -17px;
     left: -452px;
     position: absolute;
     height: 530px;
 }

 .main-section .nav-tabs {
     border-bottom: 1px solid #ffffff !important;
     padding-bottom: 20px;
 }
 .main-section .nav-tabs .nav-link {
     color: #fff !important;
 }

 .main-section .nav-tabs .nav-link:focus,
 .nav-tabs .nav-link:hover {
     border-color: transparent !important;
 }



 .main-section .nav-tabs .nav-item.show .nav-link,
 .nav-tabs .nav-link.active {
     border-bottom: 1px solid #fff !important;
     background: transparent !important;
     border-top: none !important;
     border-left: none;
     border-right: none;
 }


 .decor-image {
     position: absolute;
     width: 880px;
     opacity: 0.8;
     animation: float 6s ease-in-out infinite;
     pointer-events: none
 }

 /* Main Section */
 .main-section {
     padding: 33px 0 60px 0px;
     background: linear-gradient(180deg, #3D4D6A 0%, #7897D0 100%);
     position: relative;
 }

 .main-section:before {
     background: url(../images/21.png) no-repeat;
     position: absolute;
     content: "";
     width: 100%;
     height: 100%;
     top: 0;
     opacity: .1;
     background-position: 49% -5%;
 }

 .tech-top-icon {
     width: 80px;
     height: auto;
 }

 /* Header Styles */
 .display-1 {
     font-size: clamp(2.5rem, 8vw, 2.5rem);
     background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 /* Tab Navigation */
 .tab-navigation {
     border-bottom: 1px solid rgb(82 104 143 / 57%) !important;
 }

 .tab-btn {
     background: none;
     border: none;
     color: #ffffff;
     padding: 12px 20px;
     margin: 0 5px 10px;
     font-size: 16px;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.3s ease;
     border-bottom: 2px solid transparent;
     display: inline-flex;
     align-items: center;
     text-decoration: none;
 }

 .tab-btn:hover {
     color: #ffffff;
     transform: translateY(-2px);
 }

 .tab-btn.active {
     color: #ffffff;
     border-bottom-color: #ffffff;
 }

 .tab-btn.active:hover {
     color: #ffffff;
 }

 /* Technology Cards */
 .tech-card {
     background: rgba(255, 255, 255, 0.1);
     border-radius: 16px;
     backdrop-filter: blur(10px);
     padding: 30px 20px;
     height: 180px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .tech-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
 }

 .tech-content {
     text-align: center;
     width: 100%;
 }

 .tech-logo {
     width: 100px;
     height: 100px;
     object-fit: contain;
     margin-bottom: 15px;
     transition: transform 0.3s ease;
 }

 .tech-card:hover .tech-logo {
     transform: scale(1.1);
 }

 .tech-name {
     display: block;
     color: #ffffff;
     font-weight: 600;
     font-size: 14px;
     letter-spacing: 0.5px;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .main-section {
         padding: 40px 0;
     }

     .display-1 {
         font-size: 2.5rem;
     }

     .lead {
         font-size: 1.1rem;
     }

     .tab-btn {
         padding: 10px 15px;
         font-size: 14px;
         margin: 0 2px 8px;
     }

     .tech-card {
         height: 140px;
         padding: 20px 15px;
     }

     .tech-logo {
         width: 50px;
         height: 50px;
         margin-bottom: 10px;
     }

     .tech-name {
         font-size: 12px;
     }
 }

 @media (max-width: 576px) {
     .display-1 {
         font-size: 2rem;
     }

     .tech-card {
         height: 120px;
         padding: 15px 10px;
     }

     .tech-logo {
         width: 40px;
         height: 40px;
     }
 }

 /* Animation for page load */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .tech-card {
     animation: fadeInUp 0.6s ease forwards;
     margin-bottom: 15px;
 }

 .tech-card:nth-child(1) {
     animation-delay: 0.1s;
 }

 .tech-card:nth-child(2) {
     animation-delay: 0.2s;
 }

 .tech-card:nth-child(3) {
     animation-delay: 0.3s;
 }

 .tech-card:nth-child(4) {
     animation-delay: 0.4s;
 }

 .tech-card:nth-child(5) {
     animation-delay: 0.5s;
 }

 .tech-card:nth-child(6) {
     animation-delay: 0.6s;
 }

 /* Custom scrollbar for webkit browsers */
 ::-webkit-scrollbar {
     width: 8px;
 }

 ::-webkit-scrollbar-track {
     background: rgba(255, 255, 255, 0.1);
 }

 ::-webkit-scrollbar-thumb {
     background: rgba(255, 255, 255, 0.3);
     border-radius: 4px;
 }

 ::-webkit-scrollbar-thumb:hover {
     background: rgba(255, 255, 255, 0.5);
 }

 /* why choose us why choose us why choose us why choose us why choose us why choose us why choose us why choose us why choose us   */

 .whychooseus {
     background-image: url(../../assets/images/working-bg.png);
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     background-attachment: fixed;
     position: relative;
     padding: 60px 0 0 0;
 }

 .why-choose-us-title {
     font-size: 30px;
     color: black;
 }

 .whychooseus .whychooseus-left-icon {
     width: 80px;
     height: auto;
 }

 .whychooseus ul li::marker {
     color: #0a0a0a;
     font-size: 1rem;
     margin-top: 1rem;
 }

 .whychooseus .leftside h1 {
     background: linear-gradient(180deg, #3D4D6A 0%, #7897D0 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .whychooseus .rightside {
     display: flex;
     justify-content: center;
 }

 .whychooseus .rightside img {
     height: auto;
     width: 271px;
 }




 /* career section career section v career section career section career section career section career section career section career section career section v */

 .careersection {
     background: #617aa8;
     height: auto;
     position: relative;
     padding: 60px 0;
 }

 .careersection:before {
     position: absolute;
     content: "";
     background: url(../images/20.png) no-repeat;
     top: -170px;
     width: 100%;
     height: 300px;
 }

 .careersection img {
     height: 500px;
 }

 .careersection .accordion-button {
     background: transparent !important;
     color: #fff;
     font-size: 18px;
 }

 .careersection .accordion-button:not(.collapsed) {
     box-shadow: none !important;
     color: #ffffff;
     border-bottom: 1px solid #506791;
 }

 .careersection .accordion-button:focus {
     box-shadow: none !important;
 }

 .careersection .accordion-body {
     color: #000 !important;
     background: #fbfbfba6 !important;
     border-radius: 15px !important;
     padding: 30px !important;
 }

 /* .careersection .accordion-button:not(.collapsed)::after {
    background-image:none!important;
    transform: var(--bs-accordion-btn-icon-transform);
    background-color: #ffffffad;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
} */


 .careersection .accordion-button::after {
     flex-shrink: 0;
     width: 40px;
     height: 40px;
     margin-left: auto;
     content: "";
     background-image: var(--bs-accordion-btn-icon);
     background-repeat: no-repeat;
     background-position: center;
     /* ✅ Center the icon */
     background-size: var(--bs-accordion-btn-icon-width);
     transition: var(--bs-accordion-btn-icon-transition);
     background-color: #ffffff7d;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .careersection .accordion-item {
     background: transparent !important;
     border: none !important;
 }

 .careersection .leftside .innercontent {
     background-color: #15203B;
     padding: 13px;
     border-top-left-radius: 13px;
     border-bottom-left-radius: 13px;
 }

 .outerheading {
     font-family: 'Inter', sans-serif;
     font-size: 50px;
     color: #fff;
 }

 .jointeam-icon {
     height: 59px;
     width: 60px;
 }

 .careersection .leftside {
     padding-right: 0px;
 }

 .careersection .rightside {
     padding-left: 0px;
 }

 .careersection .maindiv {
     justify-content: center;
 }

 .careersection .whyjoinus {
     background-color: #0A0E1A;
     border-radius: 9px;
     padding-bottom: 1px;
     margin-bottom: 15px;
     padding-top: 4px;
 }

 .whyjoinus ul {
     color: #90A1B9
 }

 .companystats ul {
     color: #90A1B9
 }

 .careersection .whyjoinus h1 {
     font-size: 31px;
 }

 .careersection .companystats h1 {
     font-size: 31px;
 }

 .careersection .companystats {
     background-color: #0A0E1A;
     padding-bottom: 8px;
     border-radius: 9px;
     padding-top: 7px;
 }


 .careersection .swiper {
     width: 100%;
     height: 100%;
     background-color: #0A0E1A;
     border-radius: 9px;
 }


 .careersection .swiper-slide {
     font-size: 18px;
     height: auto;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
     padding: 3px;
 }

 .careersection .rightside .innercontent {
     background-color: #15203B;
     padding: 13px;
     border-top-left-radius: 15px;
     border-top-right-radius: 15px;
     border-bottom-right-radius: 15px;
     height: 507px;
     overflow: hidden;
 }

 .scrollbar.swiper-scrollbar-vertical,
 .swiper-vertical>.swiper-scrollbar {
     background-color: white;
 }

 .swiper-scrollbar-drag {
     background-color: #3F4F6D;
 }

 .careersection .job {
     border-radius: 6.75001px;
     margin-left: 0px;
     padding: 6px;
     background-color: #0F172A;
 }

 .job i {
     color: #90A1B9
 }

 .job .exp {
     color: #90A1B9
 }

 .job .work {
     color: #90A1B9
 }

 .moneylocation p {
     color: #90A1B9
 }

 .careersection .jobpost {
     display: flex;
     flex-direction: column;
     gap: 17px;
     padding-right: 9px;
     padding-top: 9px;
     color: white
 }

 .careersection .jobtittle {
     margin-left: 0px;
     color: white;
     height: 22px;
 }

 .careersection .jobtittle .logo {
     width: 26px;
     padding-left: 2px;
 }

 .careersection .jobtittle .heading {
     font-size: 15px;
     width: 173px;
     padding-left: 0px;
 }

 .careersection .job .exp {
     font-size: 11px;
 }

 .careersection .job .work {
     font-size: 11px;
 }

 .careersection .job .moneylocation {
     gap: 119px;
     font-size: 11px;
     margin-top: 5px;
 }

 .careersection .job .skill p {
     margin-bottom: 0px;
     font-size: 12px;
     background-color: #0A0E1A;
     border-radius: 19px;
     color: #90A1B9;
     width: auto;
     text-align: center;
     padding-left: 6px;
     padding-right: 6px;
     border: 1px solid #90A1B9;
 }

 .days {
     color: #90A1B9;
 }

 .jobrightside {
     display: flex;
     flex-direction: column;
     align-items: end;
     gap: 93px;
 }

 .careersection .job .skill {
     gap: 13px;
 }

 .careersection .job .days {
     font-size: 11px;
 }

 .tag p {
     font-size: 13px;
     margin-left: 0px;
     background-color: #0A0E1A;
     border-radius: 15px;
     color: #90A1B9;
     width: 69px;
     text-align: center;
     margin-bottom: 0px;
     border: 1px solid #90A1B9;
 }

 .jobrightside button {
     all: unset;
     background-color: #0A0E1A;
     cursor: pointer;
     border-radius: 4px;
     color: white;
     font-size: 12px;
     width: 100px;
     text-align: center;
     height: 27px;

 }




 @keyframes scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(calc(-250px * 7));
     }
 }


 .recognition .slider {
     height: 132px;
     margin: auto;
     overflow: hidden;
     position: relative;
     width: 100%;
 }

 .recognition .slider::before,
 .slider::after {
     background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
     content: "";
     height: 100px;
     position: absolute;
     width: 0px;
     z-index: 2;
 }

 .recognition .slider::after {
     right: 0;
     top: 0;
     transform: rotateZ(180deg);
 }

 .recognition .slider::before {
     left: 0;
     top: 0;
 }

 .recognition .slider .slide-track {
     animation: scroll 40s linear infinite;
     display: flex;
     width: calc(250px * 14);
 }

 .recognition .slider .slide {
     height: 100px;
     width: 250px;
     margin-right: 74px;
 }

 /* .testimonial .content-box {
     height: 534px;
 } */


 .recognitio-carousel .owl-nav {
     display: block !important;
     position: relative;
     top: 10px;
 }

 .recognitio-carousel .owl-nav .owl-prev,
 .recognitio-carousel .owl-nav .owl-next {
     cursor: pointer;
     background: #00225f;
     padding: 3px 8px;
     color: #ffffff !important;
     font-size: 20px;
     position: absolute;
     top: -75px;
     height: 35px;
     width: 35px;
     text-align: center;
     border-radius: 100%;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     border: none !important;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .recognitio-carousel .owl-carousel .owl-item img {
     display: block;
     /* width: 100%; */
     height: auto;
     width: 100px;
 }

 .recognitio-carousel .owl-nav .owl-prev {
     right: 103%;
 }

 .recognitio-carousel .owl-nav .owl-next {
     left: 102%;
 }

 .recognitio-carousel .owl-nav .owl-prev:hover,
 .recognitio-carousel .owl-nav .owl-next:hover {
     transform: scale(1.15);
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
 }



 /* getintouch getintouch getintouch getintouch getintouch getintouch getintouch getintouch getintouch */
 .contact-container,
 .contact-input,
 .contact-textarea {
     font-family: 'Inter', sans-serif;
 }

 .contact-container {
     position: relative;
     width: 100%;
     padding: 60px 0;
     background: #e5e4e4 url(../images/careerbg.png);
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     background-blend-mode: color-dodge;
 }



 .contact-form-wrapper {
     width: 70%;
     margin: 0 auto;
     background-color: #fff;
     border-radius: 10px;
     box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
     position: relative;
     z-index: 1;
 }

 .contact-input-container input::placeholder{
    color:white;
 }

 .contact-input-container textarea::placeholder{
    color:white;
 }

 .contact-left {
     /* background: linear-gradient(7.14deg, #3d4d6a 5.57%, #7897d0 218.69%); */
     position: relative;
     width: 100%;
     height: 100%;
     border-radius: 10px;
 }

 .contact-circle {
     border-radius: 50%;
     background: linear-gradient(7.14deg, #3d4d6a 5.57%, #7897d0 218.69%);
     position: absolute;
 }

 .contact-circle.one {
     width: 100px;
     height: 100px;
     top: 130px;
     right: -23px;
 }

 .contact-circle.two {
     width: 53px;
     height: 53px;
     top: 10px;
     right: 30px;
 }

 .contact-left::before {
     content: "";
     position: absolute;
     width: 26px;
     height: 26px;
     /* background: linear-gradient(7.14deg, #3d4d6a 5.57%, #7897d0 218.69%); */
     transform: rotate(45deg);
     top: 50px;
     left: -13px;
 }

 .contact-form {
     position: relative;
 }

 .contact-title {
     color: #fff;
     font-weight: 600;
     font-size: 16px;
     /* line-height: 1; */
     margin-top: 0px;
 }

 .contact-input-container {
     position: relative;
     margin: 12px 0;
 }

 .contact-input {
     width: 100%;
     outline: none;
     border: none;
     background: none;
     padding: 12px;
     color: #fff;
     border-radius: 5px;
     transition: 0.3s;
     background: #22365c
 }

 textarea.contact-input {
     padding: 0.8rem 1.2rem;
     /* min-height: 150px; */
     border-radius: 5px;
     resize: none;
     overflow-y: auto;
 }
 .contact-input-container label {
     position: absolute;
     top: 50%;
     left: 15px;
     transform: translateY(-50%);
     padding: 0 0.4rem;
     color: #fafafa;
     font-size: 0.9rem;
     font-weight: 400;
     pointer-events: none;
     z-index: 1000;
     transition: 0.5s;
 }

 .contact-input-container.textarea label {
     top: 1rem;
     transform: translateY(0);
 }

.cmi-img {
    height: auto;
    width: 55%;
    margin-bottom: 21px;
    border: 1px solid white;
    border-radius: 10px;
    padding: 5px;
}

 .contact-btn {
     padding: 0.6rem 1.3rem;
     background-color: #fff;
     border: 2px solid #fafafa;
     font-size: 0.95rem;
     color: #3d4d6a;
     line-height: 1;
     border-radius: 5px;
     outline: none;
     cursor: pointer;
     transition: 0.3s;
     margin: 0;
     width: 100%;
 }

 .contact-btn:hover {
     background-color: transparent;
     color: #fff;
 }

 .contact-input-container span {
     position: absolute;
     top: 0;
     left: 25px;
     transform: translateY(-50%);
     font-size: 0.8rem;
     padding: 0 0.4rem;
     color: transparent;
     pointer-events: none;
     z-index: 500;
 }

 .contact-input-container.focus label {
     top: 0;
     transform: translateY(-50%);
     left: 25px;
     font-size: 0.8rem;
 }

 .contact-info {
     padding: 60px;
     position: relative;
 }

 .contact-info .contact-title {
     background: linear-gradient(7.14deg, #3d4d6a 5.57%, #7897d0 218.69%);
     background-clip: text;
     -webkit-background-clip: text;
     color: transparent;
     -webkit-text-fill-color: transparent;
 }

 .contact-text {
     color: #333;
     margin: 1.5rem 0 2rem 0;
 }

 .contact-info-item {
     display: flex;
     color: #555;
     margin: 0.7rem 0;
     font-size: 0.95rem;
 }

 .contact-info-item i {
     font-size: 1.1rem;
     color: #3d4d6a;
     margin-right: 0.7rem;
     display: flex;
     align-items: center;
     border: 1px solid #455778;
     width: 35px;
     height: 35px;
     justify-content: center;
     font-size: 20px;
     border-radius: 50%;
     flex-shrink: 0;
 }

 .contact-social-media {
     padding: 2rem 0 0 0;
 }

 .contact-social-media p {
     color: #333;
 }

 .contact-social-icons {
     display: flex;
     margin-top: 0.5rem;
 }

 .contact-social-icons a {
     width: 35px;
     height: 35px;
     border-radius: 5px;
     background: linear-gradient(7.14deg, #3d4d6a 5.57%, #7897d0 218.69%);
     color: #fff;
     text-align: center;
     line-height: 35px;
     margin-right: 0.5rem;
     transition: 0.3s;
 }

 .contact-social-icons a:hover {
     transform: scale(1.05);
 }

 .contact-info::before {
     content: "";
     position: absolute;
     width: 160px;
     height: 160px;
     border: 22px solid #e5e4e4;
     border-radius: 50%;
     bottom: -77px;
     right: 50px;
     opacity: 0.3;
 }

 .recognition-content {
     align-items: center;
     color: #fff;
     padding: 0 2px 0 0;
     position: relative;
     text-align: left;
     display: flex;
     justify-content: center;
 }

 .recognition-content .left-title {
    font-size: 33px;
    font-weight: 300;
    color: rgb(0 0 0);
    /* margin: 0 !important; */
    margin-top: 0px;
    position: relative;
}
 /* Left line */
 .recognition-content .left-title::before,
 .recognition-content .left-title::after {
     content: "";
     position: absolute;
     top: 50%;
     width: 120px;
     height: 2px;
     transform: translateY(-50%);
 }

 /* Left fading line */
 .recognition-content .left-title::before {
     right: 100%;
     margin-right: 15px;
     background: linear-gradient(to left, #000000, transparent);
 }

 /* Right fading line */
 .recognition-content .left-title::after {
     left: 100%;
     margin-left: 15px;
     background:linear-gradient(to left, #000000, transparent);
     transform: rotate(180deg);
}


.recognition .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 100px;
    border: 4px solid #FFFFFF;
    box-shadow: 0px 0px 6px 5px rgba(0, 0, 0, 0.25);
    border-radius: 9px;
}


 .contact-big-circle {
     position: absolute;
     width: 420px;
     height: 420px;
     border-radius: 50%;
     background: linear-gradient(344deg, #3d4d6a 5.57%, #7897d0 218.69%);
     bottom: 37%;
     right: 60%;
     transform: translate(-40%, 38%);
     z-index: -1;
     opacity: .5;
 }

 /* .contact-big-circle::after {
     content: "";
     position: absolute;
     width: 360px;
     height: 360px;
     background-color: #fafafa;
     border-radius: 50%;
     top: calc(50% - 180px);
     left: calc(50% - 180px);
 } */

 .contact-square {
     position: absolute;
     height: 400px;
     top: 50%;
     left: 50%;
     transform: translate(181%, 11%);
     opacity: 0.2;
 }



 /* recognition recognition recognition recognition recognition recognition recognition recognition recognition  */



 @keyframes scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(calc(-250px * 7));
     }
 }

 .recognition .slider {
     height: 140px;
     margin: auto;
     overflow: hidden;
     position: relative;
     width: 88%;
 }

 .recognition .slider::before,
 .slider::after {
     background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
     content: "";
     height: 100px;
     position: absolute;
     width: 0px;
     z-index: 2;
 }

 .recognition .slider::after {
     right: 0;
     top: 0;
     transform: rotateZ(180deg);
 }

 .recognition .slider::before {
     left: 0;
     top: 0;
 }

 .recognition .slider .slide-track {
     animation: scroll 40s linear infinite;
     display: flex;
     width: calc(250px * 14);
 }

 .recognition .slider .slide {
     height: 100px;
     width: 250px;
     margin-right: 74px;
 }


 .recognition {
     /* margin-top: 22px; */
     /* padding-top: 20px; */
     padding-bottom: 20px;
     margin-bottom: 0px;
     position: relative;
 }

 .recognition-box {
     /* padding-top:30px; */
     padding-bottom: 30px;
 }

 .recognition-box::before {
     content: "";
     position: absolute;
     inset: 0;
     background:linear-gradient(
174deg, rgb(189 208 244) 1%, rgb(70 89 135) 100%);
     clip-path: polygon(9% 0, 90% 0, 85% 90%, 15% 90%);
     z-index: -1;
     width: 100%;
 }







 /* .recognition:before {
     position: absolute;
     content: "";
     background: #304b7c;
     width: 47%;
     height: 100%;
     left: -10%;
     top: 0%;
     border-bottom-right-radius: 141px;
 } */

 .recognition-right {
     position: relative;
     width: 80%;
     margin: 0 auto;
 }


 .carousel-part {
     display: flex;
     align-items: center;
 }

 /* footer footer footer footer footer footer footer footer footer footer footer footer footer footer footer footer footer footer footer footer  */

 .custom-footer {
     color: white;
     position: relative;
     background: #35496e url(../images/building.png) no-repeat right bottom;
     background-blend-mode: luminosity;
 }

 .custom-footer .container {
     position: relative;
 }

 .custom-footer li a:hover {
     color: var(--light);
     letter-spacing: 1px;
     box-shadow: none;
 }


 .custom-footer h6 {
     font-weight: 400;
     margin-bottom: 10px;
     font-size: 25px;
     position: relative;
 }



 .location-title::before {
     content: "";
     position: absolute;
     top: -5px;
     left: 107px;
     width: 40px;
     height: 40px;
     background-image: url(../images/footer_title_icon_white.png);
     background-size: contain;
     background-position: center;
     background-repeat: no-repeat;
 }

 .location-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 50%;
    height: 1px;
    background: rgb(124 124 124);
 }


 

.contact-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 29%;
    height: 1px;
    background: rgb(124 124 124);
}

  
  .contact-title::before {
     content: "";
     position: absolute;
     top: -3px;
     left: 202px;
     width: 40px;
     height: 40px;
     background-image: url(../images/contact_title_icon.png);
     background-size: contain;
     background-position: center;
     background-repeat: no-repeat;
 }




 .custom-footer ul {
     list-style: none;
     padding: 0;
 }

 .custom-footer .logo {
     height: 70px;
     background: #fff;
     padding: 0px;
     border-radius: 9px;
     margin-bottom: 15px;
 }

 .custom-footer ul li {
     margin-bottom: 6px;
 }

 .custom-footer ul li a {
     color: #d9e2ff;
     text-decoration: none;
     transition: .3s;
 }



 /* .footer-logo {
     width: 120px;
 } */

 .footer-bottom {
     background: rgb(0 0 0);
     font-size: 14px;
 }

 .get-in-touch-btn {
     font-size: 13px;
     font-weight: 700;
 }



 .footer-social-links {
     position: absolute;
     bottom: 0;
     right: 0;
     width: 236px;
     height: 54px;
 }

 .footer-social-amoeba-svg {
     height: 54px;
     width: 236px;
     position: absolute;
     top: 0;
     left: 0;
 }

 .footer-social-amoeba-path {
     fill: white;
 }

 .footer-social-link {
     position: absolute;
     /* color: #000; */
     font-size: 1.3rem;
     transition: all 0.3s ease;
 }



 .footer-social-link:hover {
     color: #3d4d6a;
     transform: scale(1.2);
 }

 .footer-social-link.linkedin {
     left: 15px;
     top: 18px;
     color: #007bff
 }

 .footer-social-link.twitter {
     left: 76px;
     top: 16px;
     color: black
 }

 .footer-social-link.youtube {
     left: 135px;
     top: 19px;
     color: rgb(163, 0, 0)
 }

 .footer-social-link.github {
     left: 189px;
     top: 18px;
     color: rgb(8, 45, 212)
 }


.contact-details li {
     display: flex;
     gap: 8px;
     flex-shrink: 0;
 }

 .contact-details .icon-box {
     width: 30px;
     height: 30px;
     background: linear-gradient(7.14deg, #3d4d6a 5.57%, #7897d0 218.69%);
     border-radius: 20%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 15px;
     flex-shrink: 0;
     transition: 0.3s;
 }

 .map-frame {
     /* background: white; */
     padding: 10px;
     border: 1px solid #fff;
     border-radius: 12px;
 }
 .readmore {
     display: block;
     width: 195px;
     height: 45px;
     text-decoration: none;
     text-align: center;
     border-radius: 50px;
     border: 3px solid #eb8f33;
     color: #000;
     font-size: 14px;
     font-family: 'Inter', sans-serif;
     position: relative;
     overflow: hidden;
     background: #fff;
     text-transform: uppercase;
     transition: all .35s;
     z-index: 1;
 }

 .readmore:before,
 .readmore:after {
     position: absolute;
     content: "";
     width: 100%;
     height: 100%;
     top: -100%;
     left: 0;
     background: #eb8f33;
     z-index: -1;
     transition: all .35s;
 }

 .readmore:before {
     opacity: .5;
 }

 .readmore:after {
     transition-delay: .2s;
 }

 .readmore:hover {
     color: #fff;
 }

 .readmore:hover:before,
 .readmore:hover:after {
     top: 0;
 }
 .ades
 {
 margin: 0;
 }

 .sticky-hdnav .navbar {
     padding: 0;
 }



 .spinner-item {
     border: 1px solid #e9a06e;
     border-radius: 50%;
     height: 200px;
     width: 200px;
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%);
     opacity: 0;
     -webkit-animation: zoom 2s linear 0.75s infinite;
     animation: zoom 2s linear 0.75s infinite;
 }

 .spinner-item--2 {
     -webkit-animation-delay: 1.25s;
     animation-delay: 1.25s;
 }

 .spinner-item--3 {
     -webkit-animation-delay: 1.75s;
     animation-delay: 1.75s;
 }

 @-webkit-keyframes zoom {
     0% {
         transform: translate(-50%, -50%) scale(0.2);
         opacity: 0;
     }

     50% {
         opacity: 0.9;
     }

     100% {
         transform: translate(-50%, -50%) scale(1);
         opacity: 0;
     }
 }

 @keyframes zoom {
     0% {
         transform: translate(-50%, -50%) scale(0.2);
         opacity: 0;
     }

     50% {
         opacity: 0.9;
     }

     100% {
         transform: translate(-50%, -50%) scale(1);
         opacity: 0;
     }
 }


 .about-us-image {
     position: relative;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     gap: 30px;
     margin-right: 60px;
 }

 .about-image-box {
     width: calc(50% - 15px);
 }

 .about-img-2 {
     margin-bottom: 15px;
 }

 .about-img-1 figure,
 .about-img-2 figure,
 .about-img-3 figure {
     display: block;
     border-radius: 30px;
 }

 .about-img-1 img,
 .about-img-2 img,
 .about-img-3 img {
     width: 100%;
     object-fit: cover;
     border-radius: 30px;
 }

 .about-img-1 img {
     aspect-ratio: 1 / 1.91;
 }

 .about-img-2 img,
 .about-img-3 img {
     aspect-ratio: 1 / 1.07;
 }
 .get-free-security-circle {
     position: absolute;
     left: 44%;
     top: 50%;
     transform: translate(-50%, -50%);
     z-index: 1;
 }

 .get-free-security-circle img {
     width: 100%;
     max-width: 166px;
     animation: infiniterotate 20s infinite linear;
 }

 @keyframes infiniterotate {
     from {
         transform: rotate(0deg);
     }

     to {
         transform: rotate(360deg);
     }
 }




 .shine {
     position: relative;
     overflow: hidden;
 }

 .shine::before {
     background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
     content: "";
     display: block;
     height: 100%;
     left: -75%;
     position: absolute;
     top: 0;
     transform: skewX(-25deg);
     width: 50%;
     z-index: 2;
 }

 .shine:hover::before,
 .shine:focus::before {
     -webkit-animation: shine 0.85s;
     animation: shine 0.85s;
 }

 @-webkit-keyframes shine {
     100% {
         left: 125%;
     }
 }

 @keyframes shine {
     100% {
         left: 125%;
     }
 }


 .tech-card-sec {
     padding-top: 30px;
 }



 /*********************infograph*************************/

 #infographic .circle {
     width: 450px;
     height: 450px;
     border-radius: 50%;
     border: 40px solid #617aa8;
     text-align: center;
     padding: 60px;
     position: relative;
     /* margin: 40px 0; */
     filter: drop-shadow(-4px -11px 5px rgba(0, 0, 0, 0.2));
     animation: float 6s ease-in-out infinite;
 }

 #infographic .circle img {
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
     margin: -26px;
 }

 #infographic div:nth-child(odd) .circle {
     transform: translateX(-18%);
 }

 #infographic article {
     max-width: 410px;
     margin-bottom: 20px;
     cursor: pointer;
     position: relative;
     transform: translateX(18%);
 }

 #infographic article header {
     border-top-right-radius: 30px;
     border-bottom-right-radius: 30px;
 }

 #infographic article header h6 {
     text-align: left;
     padding: 0 30px;
 }

 #infographic article header i {
     display: flex;
     font-size: 2em;
     border-radius: 50%;
     background-clip: padding-box;
     padding: 20px;
     transition: transform 0.4s;
     color: #818999d1;
     border: 6px solid var(--bs-dark);
     margin: -16px 0 -16px -20px;
 }

 #infographic article[data-step="1"] header i {
     border-color: var(--bs-primary);
     /* blue */
 }

 #infographic article[data-step="2"] header i {
     border-color: var(--bs-success);
     /* green */
 }

 #infographic article[data-step="3"] header i {
     border-color: #dc7d35;
 }

 #infographic article:hover header i {
     transform: scale(1.2);
 }

 #infographic article.active header i {
     transform: none;
 }

 #infographic :nth-child(even) article {
     text-align: left;
 }

 #infographic :nth-child(even) article header {
     border-top-left-radius: 30px;
     border-bottom-left-radius: 30px;
 }


 #infographic section:nth-child(odd) article.active header {
     border-bottom-right-radius: 0;
 }

 #infographic section:nth-child(even) article.active header {
     border-bottom-left-radius: 0;
 }

 #infographic article.active .body {
     padding: 20px;
     max-height: 300px;
     border: 1px solid;
 }



 #infographic article[data-step="1"] {
     margin-left: 0px;
     margin-top: 40px;
 }

 #infographic article[data-step="2"] {
     margin-left: 55px;
     margin-top: 80px;
 }

 #infographic article[data-step="3"] {
     margin-left: 0px;
     margin-top: 80px;
 }

 #infographic article[data-step="4"] {
     margin-left: 61px;
 }

 #infographic article[data-step="5"] {
     margin-left: 22px;
 }

 #infographic article[data-step="6"] {
     margin-left: -5px;
 }

 #infographic article[data-step="7"] {
     margin-left: -54px;
 }

 #infographic article[data-step="8"] {
     margin-left: -70px;
 }

 #infographic article[data-step="9"] {
     margin-left: -60px;
 }

 #infographic article[data-step="10"] {
     margin-left: -21px;
 }

 #infographic article[data-step="11"] {
     margin-left: 7px;
 }

 #infographic article[data-step="12"] {
     margin-left: 55px;
 }

 #infographic article[data-step="13"] {
     margin-left: 73px;
 }

 #infographic article[data-step="14"] {
     margin-left: 62px;
 }

 #infographic article[data-step="15"] {
     margin-left: 23px;
 }

 #infographic article[data-step="16"] {
     margin-left: -102px;
 }

 .info-content {
     width: 90%;
     padding: 30px 0 60px 0;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 /***********************end********************************/


 .careersection .accordion-header i {
     color: #f9ae00;
     padding: 0 15px 0 0;
 }

 .careersection .accordion-body h5 {
     padding-bottom: 10px;
 }

 .careersection .accordion-body p {
     margin-bottom: 3px !important;
 }

 .careersection .accordion-body i {
     padding: 0 10px 0 0;
     color: #040404;
     font-size: 18px;
 }

.apply-btn {
    position: relative;
    left: 86%;
    top: -41px;
    background: #617aa8;
    padding: 9px 20px;
    border-top-left-radius: 26px;
    text-decoration: none;
    color: white;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s ease, background 0.3s ease;
}

.apply-btn:hover {
    transform: translateX(8px);
    color: #bbe3f6;
}

 .line-border {
     width: 250px;
     height: 1px;
     margin: 0 auto;
     background: #294781;
 }

 .hding {
     margin-top: 15px;
 }

 .cir-Animated {
     display: inline-block;
     width: 10px !important;
     height: 10px !important;
     border-radius: 95%;
     margin: 0 5px;
     position: relative;
     background-color: #2360a9;
     padding: 0 !important;
     margin-top: -6px;
     position: absolute;
 }

 .cir-Animated::before {
     content: "";
     position: absolute;
     width: 100%;
     height: 100%;
     background-color: inherit;
     border-radius: 50%;
     z-index: -1;
     animation: ripple 1.5s ease-out infinite;
     left: 0;
 }

 .line-bordertwo {
     width: 250px;
     height: 1px;
     margin: 0 auto;
     background: #ccc;
 }


 .cir-Animated-two {
     display: inline-block;
     width: 10px !important;
     height: 10px !important;
     border-radius: 95%;
     margin: 0 5px;
     position: relative;
     background-color: #ccc;
     padding: 0 !important;
     margin-top: -6px;
     position: absolute;
     right: 49.5%;
 }

 .cir-Animated-two::before {
     content: "";
     position: absolute;
     width: 100%;
     height: 100%;
     background-color: inherit;
     border-radius: 50%;
     z-index: 1;
     animation: ripple 1.5s ease-out infinite;
     left: 0;
 }




 @keyframes ripple {
     from {
         opacity: 1;
         transform: scale(0);
     }

     to {
         opacity: 0;
         transform: scale(3);
     }
 }




 .dot-sec {
     position: absolute;
     width: 100%;
     height: 100%;
     overflow: hidden;
     top: 0;
     left: 0;
 }

 .dot {
     position: absolute;
     width: 10px;
     height: 10px;
     background: #fff;
     border-radius: 50%;
     box-shadow: 0 0 15px #0eb4ff85, 0 0 30px #3cbdf5;
     animation: move 12s ease-in-out infinite alternate;
     opacity: 0.8;
 }


 .up {
     animation: moveUp 12s ease-in-out infinite alternate;
 }


 .side {
     animation: moveSide 14s ease-in-out infinite alternate;
 }

 .small {
     width: 6px;
     height: 6px;
 }

 .medium {
     width: 10px;
     height: 10px;
 }

 .large {
     width: 16px;
     height: 16px;
 }

 .dot:nth-child(1) {
     top: 30%;
     left: 20%;
     animation-delay: 0s;
 }

 .dot:nth-child(2) {
     top: 70%;
     left: 60%;
     animation-delay: 1s;
 }

 .dot:nth-child(3) {
     top: 90%;
     left: 40%;
     animation-delay: 2s;
 }

 .dot:nth-child(4) {
     top: 20%;
     left: 80%;
     animation-delay: 0.5s;
 }

 .dot:nth-child(5) {
     top: 50%;
     left: 80%;
     animation-delay: 2.5s;
 }

 .dot:nth-child(6) {
     top: 60%;
     left: 30%;
     animation-delay: 3.5s;
 }

 /* Animation for upward motion */
 @keyframes moveUp {
     0% {
         transform: translateY(0) scale(1);
         opacity: 0.8;
     }

     50% {
         transform: translateY(-70px) scale(1.1);
         opacity: 1;
     }

     100% {
         transform: translateY(0) scale(1);
         opacity: 0.8;
     }
 }

 /* Animation for sideways motion */
 @keyframes moveSide {
     0% {
         transform: translateX(0) scale(1);
         opacity: 0.8;
     }

     50% {
         transform: translateX(70px) scale(1.1);
         opacity: 1;
     }

     100% {
         transform: translateX(0) scale(1);
         opacity: 0.8;
     }
 }


 /********login******************/

 .login-wraper {
     background: #f5d791b5;
     height: 100vh;
     overflow: hidden;
 }

 .bg-img {
     background: url(../images/logbg.jpg) top left repeat;
     background-size: cover;
     z-index: 999;
     min-height: 100vh;
     position: relative;
     padding: 30px;
     text-align: center;
 }

 .bg-img:before {
     position: absolute;
     content: '';
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgb(36 10 99 / 74%);
 }

 .login-logo {
     height: 160px;
     position: relative;
     margin-top: 20%;
 }

 /* .login-title {
     display: block;
     padding-top: 50px;
     position: relative;
 } */

 .login-title h2,
 h3 {
     color: #fff;
 }

 /* .login-form {
     width: 50%;
     background: #ffffff70;
     padding: 30px;
     margin: 0 auto;
     box-shadow: 1px 2px 19px #e1c9a4;
     border-radius: 30px;
     Position: relative;
     top: 15%;
 } */

 /* .login-form img {
     position: absolute;
     height: 160px;
     top: -76px;
     left: 37%;
     border-radius: 50%;
     box-shadow: 0px -3px 4px #2c2b2b;
     border: 1px solid #fbe4c1;
     padding: 5px;
 } */

 #captchaImage {
     position: unset;
     height: 36px;
     border-radius: 50%;
     border: 2px solid #dddddd;
     cursor: pointer;
 }

 .login-btn {
     display: block;
     width: 40%;
     text-align: center;
     margin: 0 auto;
     background: #846ee9;
     padding: 8px;
     color: #fff;
     margin-top: 5%;
 }

 .login-btn:hover {
     display: block;
     /* width: 40%; */
     text-align: center;
     margin: 0 auto;
     background: #ffc107;
     padding: 8px;
     color: #000;
     margin-top: 5%;
 }
.reset-btn:hover {
     background-color: #ffc800;
 }


 .login-form p {
     font-weight: 500;
     padding: 15px 0 0 0;
 }

 /* .login-form h4 {
     text-align: center;
     font-size: 25px;
     padding-bottom: 8px;
     margin-top: 70px;
 } */

 .lines {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 100%;
     z-index: -1;
 }

 .line {
     position: absolute;
     width: 5px;
     height: 100%;
     top: 0;
     left: 50%;
     background: rgba(255, 255, 255, 0.1);
     overflow: hidden;
 }

 .line::after {
     content: '';
     display: block;
     position: absolute;
     height: 15vh;
     width: 100%;
     top: -50%;
     left: 0;
     background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
     animation: drop 7s 0s infinite;
     animation-fill-mode: forwards;
     animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
     z-index: -888;
 }

 .line:nth-child(1) {
     margin-left: -40%;
 }

 .line:nth-child(1)::after {
     animation-delay: 1s;
 }

 .line:nth-child(3) {
     margin-left: 40%;
 }

 .line:nth-child(3)::after {
     animation-delay: 2s;
 }

 .line:nth-child(4) {
     margin-left: -20%;
 }

 .line:nth-child(4)::after {
     animation-delay: 3s;
 }

 .line:nth-child(5) {
     margin-left: 20%;
 }

 .line:nth-child(5)::after {
     animation-delay: 4s;
 }

 @keyframes drop {
     0% {
         top: -50%;
     }

     100% {
         top: 110%;
     }
 }

 .forminput {
     padding: 10px !important;
     background: #846ee97d !important;
     border: 1px solid #fff !important;
     position: relative;
 }

 .forminput:focus {
     box-shadow: 0 0 0 .25rem rgb(243 243 243);
 }

 .capcha-box {
     position: relative;
     font-weight: 600;
     padding-top: 5px;
 }

 .capcha-box i {
     position: relative;
     margin-left: 55px;
     font-size: 20px;
 }

 #captcha-question {
     background: #fff;
     padding: 7px 15px;
     margin-left: 15px;
     font-size: 20px;
 }

 .password-icon {
     content: "\f116";
     position: absolute;
     right: 65px;
     margin-top: -35px;
     font-size: 20px;
     color: #fff;
 }


 .success-popup {
     background: #28a745;
     color: #fff;
     padding: 12px 20px;
     border-radius: 6px;
     margin-top: 15px;
     text-align: center;
     font-weight: 600;
     animation: fadeOut 3s forwards;
 }

 @keyframes fadeOut {
     0% {
         opacity: 1;
     }

     70% {
         opacity: 1;
     }

     100% {
         opacity: 0;
     }
 }

 /* modal */
 .modal-content {
     border: 1px solid #e2e2e3;
 }

 .modal-title {
     font-weight: 400;
     color: #1012cd;
 }

 .modal-btn .btn-group .btn {
     background-color: #5354e1c9;
     border: 1px solid #ffffff;
 }

 .btn-group i {
     font-size: 18px;
     color: #fff;
 }

 .btn-group {
     width: 100%;
 }

 .add-modal {
     padding: 0px !important;
     overflow-y: visible !important;
     height: auto !important;
 }


 .homemodal-close {
     position: absolute;
    top: -20px;
    right: -42px;
    background: #5657e0;
    opacity: 1;
    font-size: 25px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
 }

 .advirtise-img {
     height: 430px !important;
     width: 100%;
     object-fit: cover;
 }


 tbody,
 td,
 tfoot,
 th,
 thead,
 tr {
     padding: 10px 30px !important;
 }

 #advertisementModal .modal-content {
     padding: 24px;
     overflow-y: auto;
     height: 100%;
 }

 #advertisementModal .modal-dialog {
     transform: translate(0%, 0%);
     max-width: 900px;
 }

 #advertisementModal .modal-backdrop.show {
     display: block !important;
 }

 /* chart */









 /*careers-page careers-page careers-page careers-page careers-page careers-page careers-page careers-page careers-page careers-page careers-page careers-page careers-page*/

 .bread-crumb {
     background: linear-gradient(180deg, rgba(0, 0, 0, 0) -70%, #00528D 99.91%), url(../images/bread-crumb_bg.jpeg);
     background-position: center;
     background-size: cover;
 }


 .bread-crumb-content {
     height: 300px;
     padding-top: 88px;
     display: flex;
     align-items: end;
 }


 .bread-crumb-content h1 {
     margin: 20px 0;
     font-size: 54px;
     color: white;
 }



 .job-wrapper {
     /* margin-top: 40px;
     margin-bottom: 40px; */
     padding-top: 40px;
     padding-bottom: 40px;
 }

 .job-title {
     font-weight: 700;
     color: rgb(0, 0, 0);
     font-size: 30px;
 }

 .company-name {
     color: #6c757d;
     font-size: 14px;
 }

 .job-section h5 {
     font-weight: 600;
     margin-top: 25px;
 }

 .job-section ul {
     padding-left: 18px;
 }

 .job-card {
     border-radius: 12px;
     position: sticky;
     top: 20px;
 }

 .job-card h4 {
     font-weight: 700;
 }

 /* .apply-btn {
     background: #22c55e;
     border: none;
     padding: 12px;
     font-weight: 600;
 }

 .apply-btn:hover {
     background: #16a34a;
 } */

 .badge-location {
     background: #e5f0ff;
     color: #0d6efd;
 }

 .small-text {
     font-size: 13px;
     color: #6c757d;
 }


 .basic-details h5 {
     font-weight: 600;
     margin-top: 25px;
 }

 .basic-details-content {
     display: flex;
     flex-wrap: wrap;
 }

 /* .job-card .form-heading{
    color:black;
} */


 .application-form {
     background: #ffffff;
 }

 .form-input,
 .select-option {
     border-radius: 12px;
 }

 .application-heading {
     font-weight: 600;
     font-size: 25px;
 }

 .application-form .subtitle {
     color: #6c757d;
     font-size: 14px;
 }

 .application-header {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;

 }

 .form-img {
     height: auto;
     width: 115px;
 }

 .job-part {
     position: relative;
 }

 .job-part::after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;

     width: 100%;
     height: 100%;

     background-image: url(../images/job_part-bg.jpg);
     background-size: cover;
     background-position: center;

     z-index: -1;
     /* or adjust as needed */
     opacity: 0.5;
 }


 /* testimonial section testimonial section testimonial section testimonial section testimonial section testimonial section testimonial section testimonial section testimonial section */
 .testimonial-section .testimonial {
     text-align: center;
     color: #F2EFE8;
     margin: 80px 30px;
     padding: 17px 23px;
     border-radius: 30px;
     position: relative;
     z-index: 1;
 }

 .testimonial-section {
     position: relative;
 }

 .testimonial-section::after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url(../images/testimonial_bg.png);
     z-index: -1;
     opacity: 0.3;
 }

 .testimonial-section .testimonial:before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     /* height: 100%; */
     background-color: #465987;
     border-radius: 30px;
     z-index: -1;
     box-shadow: 1px 1px 9px black;
     height: 100%;
 }

 .testimonial-section .testimonial:after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     /* height: 100%; */
     background-color: #8aabeb8f;
     border-radius: 30px;
     transform: rotate(-7deg);
     z-index: -2;
     /* box-shadow: 1px 1px 9px black; */
     height: 100%;
 }


 .testimonial-section .testimonial .pic {
     border: 5px solid #F2EFE8;
     display: inline-block;
     margin-bottom: 10px;
     width: 100px;
     height: 100px;
     border-radius: 50%;
 }

 .testimonial-section .testimonial .pic img {
     width: 100%;
     height: 100%;
     border-radius: 50%;
 }

 .testimonial-section .testimonial .testimonial-content {
     font-size: 15px;
     letter-spacing: 1px;
     line-height: 30px;
     margin-bottom: 20px;
 }

 .testimonial-by {
     display: flex;
     flex-direction: column;
 }

 .testimonial-section .testimonial .testimonial-by h5 {
     display: inline-block;
     color: #ffffff;
     font-size: 20px;
     font-weight: 700;
     letter-spacing: 1px;
     text-transform: uppercase;
     margin-bottom: 0px;
 }

 .testimonial-section .testimonial .testimonial-by small {
     color: #F2EFE8;
     font-size: 15px;
     font-weight: 700;
     letter-spacing: 1px;
     text-transform: capitalize;
     margin-bottom: 15px;
 }

 .testimonial-section .owl-theme .owl-controls {
     margin-top: 0px;
     margin-left: 10px;
     text-align: center;
 }

 .testimonial-section .owl-theme .owl-controls .owl-buttons div {
     display: inline-block;
     opacity: 1;
     background: #FB8C00;
     color: #F2EFE8;
     border-radius: 0;
     width: 40px;
     height: 40px;
     line-height: 40px;
     margin-right: 5px;
 }

 .testimonial-section .owl-nav {
     display: flex;
     justify-content: center;
     font-size: 35px;
     gap: 23px;
     color: #617aa8;
 }

 .testimonial-section .about-title {
     font-size: 4.5rem;
     font-weight: 900;
     text-transform: uppercase;
     letter-spacing: -0.02em;
     background: linear-gradient(to bottom, rgb(8 42 123 / 64%) 63%, rgb(255 255 255 / 0%) 76%);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     text-align: center;
     margin: 0px;
 }

 .testimonial .content-box {
     border: 1px solid white;
     padding-top: 18px;
     padding-left: 18px;
     padding-right: 18px;
     border-radius: 18px;
     position: relative;
     height: 273px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .testimonial-content p {
     line-height: 20px;
 }


 .testimonial .content-box::before {
     content: "";
     position: absolute;
     top: -7px;
     left: -10px;
     background-image: url(../images/double_quotes.png);
     background-size: cover;
     background-position: center;
     z-index: 4;
     height: 28px;
     width: 37px;
     background-color: #465987;
 }

 .testimonial .content-box::after {
     content: "";
     position: absolute;
     bottom: -7px;
     right: -10px;
     background-image: url(../images/double_quotes.png);
     background-size: cover;
     background-position: center;
     z-index: 4;
     height: 28px;
     width: 37px;
     background-color: #465987;
 }


 /*login-page login-page login-page login-page login-page login-page login-page login-page login-page login-page login-page login-page login-page login-page login-page login-page*/

 .login-page {
     background: white;
     background-position: center;
     background-size: cover;
     background-repeat: no-repeat;
     height: 100vh;
     font-family: 'Inter', sans-serif;
     position: relative;
     z-index: 1;
 }

 .login-page::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100vw;
     height: 100vh;
     background-image: url(../images/login_bg.png);
     background-size: 60% 100%;
     z-index: -1;
     background-repeat: no-repeat;
 }

 .login-page .row {
     height: 100%;
 }

 .illustration-section {
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .illustration-section .content {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     width: 60%;
 }

 .illustration-section img {
     height: 243px;
     border-radius: 69px;
 }

 .illustration-section .content h5 {
     text-align: center;
     color: white;
     font-size: 25px;
 }

 .illustration-section .content p {
     text-align: center;
     color: white;
     font-size: 15px;
 }






 .input-group-text {
     border: none;
 }



 .login-title {
     font-size: 75px;
     text-align: center;
     color: white;
     margin-bottom: 0px;
 }

 .login-page label {
     font-weight: 500;
     font-size: 14px;
     line-height: 17px;
     color: #292929;
     border: none;
 }

 .login-page input {
     background: #E0F0FF;
     border-radius: 4px;
     border: none;
 }

 .login-page input:focus {
     outline: none !important;
     box-shadow: none !important;
     background: #E0F0FF !important;
     border: none !important;
 }

 .login-page input::placeholder {
     font-weight: 400;
     font-size: 13px;
     line-height: 16px;
 }

 .login-page input::-moz-focus-outer {
     background: #E0F0FF;
     border: none;
     box-shadow: none;
 }

 .login-page input:-webkit-autofill,
 .login-page input:-webkit-autofill:hover,
 .login-page input:-webkit-autofill:focus,
 .login-page input:-webkit-autofill:active {
     -webkit-box-shadow: 0 0 0 1000px #E0F0FF inset !important;
     box-shadow: 0 0 0 1000px #E0F0FF inset !important;
     -webkit-text-fill-color: #000 !important;
     transition: background-color 5000s ease-in-out 0s;
     font-size: 13px;
     font-family: 'Inter', sans-serif;
 }




 .form-section {
     padding: 50px 75px 0px 75px;
     position: relative;
     z-index: 0;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;

 }






 .form-section .input-group-text {
     border: none;
     background: #E0F0FF;
     color: #595959;
 }

 .forgot-link {
     font-size: 14px;
     text-decoration: none;
     font-weight: 600;
     font-size: 13px;
     line-height: 16px;
     color: #292929;
 }





 .login-btn {
     width: 132px;
     background-color: #007bff;
 }
 .reset-btn {
     width: 132px;
     background-color: #007bff;
     color: white;
 }



 .listen-btns {
     border: none;
     background: #ffffff;
     color: #007bff;
     padding: 6px 12px;
     border-radius: 6px;
     font-size: 13px;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 6px;
     box-shadow: 0px 2px 6px rgb(0 0 0 / 30%);
     transition: 0.3s ease;
 }

 .listen-btns:hover {
     background: #007bff;
     color: white;
 }

 .listen-btns i {
     font-size: 14px;
 }

 #togglePassword {
     cursor: pointer;
 }

 .login-form {
     width: 411px;
     display: flex;
     flex-direction: column;
     box-shadow: 1px 1px 17px #818181;
     padding: 34px;
     border-radius: 26px;
     position: relative;
     background: white;
     padding-top: 18px;
 }

 .login-form .logo {
     width: 108px;
     height: auto;
     align-self: center;
     margin-bottom: 15px;
     padding: 0px;
     position: absolute;
     top: -50px;
     box-shadow: 0px -5px 9px #00000054;
     border-radius: 50%;
 }


 .aboutus-title {
     font-size: 30px;
 }
.copyright-two{
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 0px;
}

 .login-err-succ-msg {
     color: red;
     font-weight: bold;
     /* margin-bottom: 40px; */
     text-align: center;
     position: absolute;
     top: 62px;
 }

 .forgot-err-succ-msg {
     color: rgb(36, 35, 35);
     font-weight: bold;
     margin-bottom: 40px;
     text-align: center;
     background-color: #b5ffc6;
     border-radius: 10px;
     position: absolute;
     top: 150px
 }

 .login-err-succ-msg a {
     color: #000;
 }

 .login-err-succ-msg a:hover {
     color: green;
 }

 .error-footer {
     position: absolute;
     bottom: 0px;
     right: 0px;
     left: 0px;
 }

 .errboderorbody .background {
     height: 100vh;
 }

 .login-err-succ-msg .success-msg {
     width: 84%;
     margin-left: 8%;
 }


 .login-err-succ-msg .error-msg {
     color: red;
     font-weight: bold;
     margin-bottom: 10px;
     text-align: center;
 }

 .toggle-password {
     cursor: pointer;
 }

 .success-msg {
     padding: 16px !important;
 }

 .error-msg {
     padding: 16px !important;
 }


 /*.get-in-touch-part {
    display: flex;
    padding-left: 35px;
    padding-bottom: 20px;
    border-radius: 20px;
    padding-top: 14px;
}*/



 .contact-title {
     font-size: 37px;
 }




 /*for counter section for counter section for counter section for counter section for counter section for counter section for counter section for counter section for counter section*/
 .counter-box {
     border-radius: 20px;
     padding: 50px 20px;
     /* margin: 40px auto; */
 }

 .counter-box i {
     color: #8ec5ff !important;
 }

 .counter-number {
     font-size: 30px;
     font-weight: 700;
     color: #ffffff;
 }

 .counter-text {
     font-size: 14px;
     letter-spacing: 1px;
     color: #8ec5ff;
     margin-top: 8px;
 }


 .counter-section {
     position: relative;
     background-image: linear-gradient(rgba(15, 35, 80, 0.88),
             rgba(15, 35, 80, 0.88)), url(../images/couter_bg.jpg);
     background-position: bottom;
     background-size: cover;
 }

 .counters {
     background: linear-gradient(#273967, #485f7f 0%, #314465 50%, #1a294d 100%);
     border-radius: 22px;
     padding: 15px;
     min-height: 189px;
     transition: all 0.3s ease;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .counters:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
 }




/* .whatsapp-btn {
    position: fixed;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgb(189 208 244) 1%, rgb(70 89 135) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 6px 20px rgba(75, 62, 201, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    right: 11px;
    bottom: 150px;
    font-size: 25px;
}

.phone-btn {
    position: fixed;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgb(189 208 244) 1%, rgb(70 89 135) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 6px 20px rgba(75, 62, 201, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    right: 11px;
    bottom: 217px;
    font-size: 25px;
} */


/* Base */
.btn-floating:hover img {
  margin-bottom: -3px
}

.btn-floating {
    position: fixed;
    right: 25px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: .2s;
}

/* .btn-floating:hover {
    width: auto;
    padding: 0 20px;
    cursor: pointer;
} */

.btn-floating span {
    font-size: 16px;
    margin-left: 5px;
    transition: .2s;
    line-height: 0px;
    display: none;
}

/* .btn-floating:hover span {
    display: inline-block;
} */

/* Phone */
.btn-floating.phone {
    bottom: 146px;
    background: linear-gradient(90deg, rgb(132 162 219) 1%, rgb(70 89 135) 100%);
    right: 11px;
    font-size: 21px;
}
.btn-floating.mail {
    bottom: 85px;
    background: linear-gradient(90deg, rgb(132 162 219) 1%, rgb(70 89 135) 100%);
    right: 11px;
    font-size: 21px;
}


/* .btn-floating.phone:hover {
    background-color: #c03421;
} */

/* WhatsApp */
.btn-floating.whatsapp {
    background: linear-gradient(90deg, rgb(132 162 219) 1%, rgb(70 89 135) 100%);
    bottom: 208px;
    right: 10px;
    font-size: 21px;
}

.btn-floating.whatsapp:hover {
    background-color: #1f7a12
}


.phone_no{
    padding-left:33px;
}


.email_address{
    padding-left:25px;
}

.contact-details h3{
    font-size: 25px;
}


.recognition-zoom {
    max-height: 550px;
    border: 1px solid #fff;
    padding: 15px;
    background: #fff;
}
.level-box{
    display:flex;
    gap:27px;
}

.no-vacaancy-sec img{
    height: 400px;
    width: 100%;
    object-fit: contain;
}
.no-vacaancy-sec p {
    color: #fff;
    padding: 75px 75px 0 0;
}
.no-vacaancy-sec a{
   color: #ffd980;
    padding: 20px 75px 0 0;
    font-size: 21px;
}

.no-vacaancy-sec a:hover{
    color: #ffd980;
    padding: 20px 75px 0 0;
    font-size: 21px;
}


.job-details-block{
    display:flex;
}

