/********** Template CSS **********/
:root {
  --primary: #06A3DA;
  --secondary: #34AD54;
  --light: #EEF9FF;
  --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px)
  }

  50% {
    -webkit-transform: perspective(120px) rotateY(180deg)
  }

  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
  }

  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
  }

  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 600 !important;
}


/*** Button ***/
.btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  transition: .5s;
}

.btn-primary,
.btn-secondary {
  color: #FFFFFF;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  margin: 0.2rem;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  font-family: 'Nunito', sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
  color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
    background: #FFFFFF;
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark);
  }

  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, .1);
    z-index: 999;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: #FFFFFF;
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: .5s;
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}


/*** Carousel ***/

.owl-carousel .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.vendor-carousel img:hover {
  transform: scale(1.05);
}


.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 30, 62, .7);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 20px;
    font-weight: 600 !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}


/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #FFFFFF;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@keyframes section-title-run {
  0% {
    left: 0;
  }

  50% {
    left: 145px;
  }

  100% {
    left: 0;
  }
}

@keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }

  50% {
    left: 50%;
    margin-left: 45px;
  }

  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@keyframes section-title-run-sm {
  0% {
    left: 0;
  }

  50% {
    left: 85px;
  }

  100% {
    left: 0;
  }
}


/*** Service ***/
.service-item {
  position: relative;
  height: 400px;
  padding: 0 30px;
  transition: .5s;
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg);
}

.service-item .service-icon i {
  transform: rotate(45deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}


/* ** Testimonial **
.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #DDDDDD;
  border-radius: 2px;
  transition: .5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--primary);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #FFFFFF !important;
  box-shadow: 0 0 30px #DDDDDD;
} */


/* ** Team **
.team-item {
  transition: .5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
  background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
  transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
} */


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** ASSET***/
.bg-header-1 {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/Asset.jpg) center center no-repeat;
  background-size: cover;
}

/*** CRM***/
.bg-header-2 {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/customer.jpg) center center no-repeat;
  background-size: cover;
}

/*** DMS***/
.bg-header-3 {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/DMS.jpg) center center no-repeat;
  background-size: cover;
}

/***HRMS***/
.bg-header-4 {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/HRMS.jpg) center center no-repeat;
  background-size: cover;
}

/***EPROCURE***/
.bg-header-5 {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/procure.jpg) center center no-repeat;
  background-size: cover;
}

/***SERVICE DESK***/
.bg-header-6 {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/desk.jpg) center center no-repeat;
  background-size: cover;
}

/***PROPERTY***/
.bg-header-7 {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/PROPERTY.jpg) center center no-repeat;
  background-size: cover;
}

/***VISITORS***/
.bg-header-8 {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/visiter\ management.jpg) center center no-repeat;
  background-size: cover;
}

/***HERBIE***/
.bg-header-9 {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/view-robot-human-businessperson_23-2150911961.jpg) center center no-repeat;
  background-size: cover;
}

/***About us***/
.bg-header-aboutus {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/normal.jpg) center center no-repeat;
  background-size: cover;
}

/***Contact us***/
.bg-header-contactus {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/normal.jpg) center center no-repeat;
  background-size: cover;
}
/***sharepoint***/
.bg-header-sharepoint {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/sharepoint.jpg) center center no-repeat;
  background-size: cover;
}
/***migration***/
.bg-header-migration {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/Aws.jpeg) center center no-repeat;
  background-size: cover;
}
/***website app***/
.bg-header-web {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/webdevelop.jpeg) center center no-repeat;
  background-size: cover;
}
.bg-header-mobile {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(https://img.freepik.com/free-photo/application-programming-interface-software_587448-4827.jpg?t=st=1746799460~exp=1746803060~hmac=8b36426c359107496d06e960e0dcaa0942b39d0791b9bbd1c7685aa999a36d19&w=826) center center no-repeat;
  background-size: cover;
}
.bg-header-Offshore {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/off-shore.jpeg) center center no-repeat;
  background-size: cover;
}
/* DVOPS */
.bg-header-devops {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/devlops.jpeg) center center no-repeat;
  background-size: cover;
}
/* Web Application Development */
.bg-header-application {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/webdevelop.jpeg) center center no-repeat;
  background-size: cover;
}

.link-animated a {
  transition: .5s;
}

.link-animated a:hover {
  padding-left: 10px;
}

@media (min-width: 767.98px) {
  .footer-about {
    margin-bottom: -75px;
  }
}

.container-fluid-2 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 60px 20px;
  min-height: 100vh;
  background: #fff;
}

.product-img {
  flex: 1;
  text-align: center;
  animation: slideInLeft 1s ease forwards;
  opacity: 0;
}

.product-img img {
  max-width: 100%;
  width: 500px;
  transform: scale(1);
  transition: transform 0.3s;
}

.product-img img:hover {
  transform: scale(1.05);
}

.product-info {
  flex: 1;
  padding: 20px;
  animation: slideInRight 1s ease forwards;
  opacity: 0;
}

.tag {
  display: inline-block;
  background: #e7f0ff;
  color: #3061b9;
  font-size: 30px;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.product-info h2 {
  font-size: 26px;
  margin: 10px 0;
  color: #1a1a1a;
}

.product-info p {
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-info ul {
  list-style: none;
  padding: 0;
}

.product-info ul li::before {
  content: '✔️';
  margin-right: 8px;
  color: #007bff;
}

.product-info ul li {
  margin-bottom: 10px;
  color: #333;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .container-fluid-2 {
    flex-direction: column;
    text-align: center;
  }

  .product-info {
    padding: 0;
  }
}

 .container1 {
  padding: 1rem 1rem;
  background: linear-gradient(135deg, #0f1f2f, #1c2c3a);
  color: #ffffff;
  border-radius: 12px;
  gap: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.custom-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  background: #0d1b2a;
  border-radius: 12px;
  padding: 2rem;
  gap: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.left-panel {
  flex: 1 1 50%;
  min-width: 300px;
  color: #fff;
}

.right-panel {
  flex: 1 1 45%;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-panel img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  max-height: 450px;
}

.left-panel h2,
.left-panel h5 {
  color: #ffffff;
}

.features-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.5rem;
  line-height: 1.5;
}

.check-icon {
  color: #00e676;
  font-size: 1.2rem;
}

/* Responsive stack */
@media (max-width: 768px) {
  /* .custom-flex-wrapper {
    flex-direction: column;
    padding: 1.5rem;
  } */
  .container1{
    width: auto;
    display: flex;
    flex-direction: column;
  }

  .left-panel,
  .right-panel {
    text-align: left;
    width: 100%;
  }

  .right-panel img {
    max-height: unset;
  }
}




.features-section {
  background-color: #0d1b2a;
  padding: 3rem 1rem;
  color: #ffffff;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  max-width: 1300px;
  margin: auto;
}

.features-text {
  flex: 1 1 55%;
  min-width: 300px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.features-image {
  flex: 1 1 40%;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 500px;
}

/* Responsive stacking */
@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
    padding: 1rem;
  }

  .features-text,
  .features-image {
    width: 100%;
  }

  .section-title {
    text-align: center;
  }
}


.features-section1 {
  background-color: #ffffff;
  color: #ffffff;
  padding: 3rem 1rem;
}

.features-container1 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  max-width: 1300px;
  margin: auto;
}

.features-text1 {
  flex: 1 1 55%;
  min-width: 300px;
}

.features-heading {
  margin-bottom: 1.5rem;
}

.features-heading h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.feature-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.features-image1 {
  flex: 1 1 40%;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-image1 img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .features-container1 {
    flex-direction: column;
    padding: 1rem;
  }

  .features-text1,
  .features-image1 {
    width: 100%;
  }

  .features-heading h2 {
    text-align: center;
    font-size: 1.75rem;
  }

  .feature-item {
    align-items: center;
  }
}





.clients-section {
  text-align: center;
  padding: 2px 20px;
}

.clients-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.underline {
  width: 125px;
  height: 3px;
  background-color: #00c853;
  margin: auto;
}

.clients-section p {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}




/**************************************
 ** - 02 - Preloader Section CSS
 **************************************/
/* .preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background-color: transparent;
}

.preloader .loader {
	position: absolute;
	top: 43%;
	left: 0;
	right: 0;
	width: 50px;
	height: 50px;
	-webkit-transform: translateY(-43%);
	transform: translateY(-43%);
	text-align: center;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	margin: 0 auto;
}

.preloader .loader .box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #ffffff;
	-webkit-animation: animate .5s linear infinite;
	animation: animate .5s linear infinite;
}

.preloader .loader .shadow {
	position: absolute;
	top: 59px;
	left: 0;
	width: 100%;
	height: 5px;
	opacity: 0.1;
	border-radius: 50%;
	background-color: #000000;
	-webkit-animation: shadow .5s linear infinite;
	animation: shadow .5s linear infinite;
}

.preloader::before, .preloader::after {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 60%;
	height: 100%;
	background-color: #7b68ee;
	-webkit-transition: .9s;
	transition: .9s;
}

.preloader::after {
	left: auto;
	right: 0;
}

.preloader.preloader-deactivate {
	visibility: hidden;
}

.preloader.preloader-deactivate::after, .preloader.preloader-deactivate::before {
	width: 0;
}

.preloader.preloader-deactivate .loader {
	opacity: 0;
	visibility: hidden;
}

@-webkit-keyframes loader {
	0% {
		left: -100px;
	}

	100% {
		left: 110%;
	}
}

@keyframes loader {
	0% {
		left: -100px;
	}

	100% {
		left: 110%;
	}
}

@-webkit-keyframes animate {
	17% {
		border-bottom-right-radius: 3px;
	}

	25% {
		-webkit-transform: translateY(9px) rotate(22.5deg);
		transform: translateY(9px) rotate(22.5deg);
	}

	50% {
		-webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
		transform: translateY(18px) scale(1, 0.9) rotate(45deg);
		border-bottom-right-radius: 40px;
	}

	75% {
		-webkit-transform: translateY(9px) rotate(67.5deg);
		transform: translateY(9px) rotate(67.5deg);
	}

	100% {
		-webkit-transform: translateY(0) rotate(90deg);
		transform: translateY(0) rotate(90deg);
	}
}

@keyframes animate {
	17% {
		border-bottom-right-radius: 3px;
	}

	25% {
		-webkit-transform: translateY(9px) rotate(22.5deg);
		transform: translateY(9px) rotate(22.5deg);
	}

	50% {
		-webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
		transform: translateY(18px) scale(1, 0.9) rotate(45deg);
		border-bottom-right-radius: 40px;
	}

	75% {
		-webkit-transform: translateY(9px) rotate(67.5deg);
		transform: translateY(9px) rotate(67.5deg);
	}

	100% {
		-webkit-transform: translateY(0) rotate(90deg);
		transform: translateY(0) rotate(90deg);
	}
}

@-webkit-keyframes shadow {
	50% {
		-webkit-transform: scale(1.2, 1);
		transform: scale(1.2, 1);
	}
}

@keyframes shadow {
	50% {
		-webkit-transform: scale(1.2, 1);
		transform: scale(1.2, 1);
	}
} */

/* related search */

.contact-desf {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 20px;
  background-color: #f8f8f8;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

.left-box {
  background-color: #030d54;
  color: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  flex: 1 1 350px;
  transition: transform 0.3s ease;
}

.left-box:hover {
  transform: translateX(-10px);
}

.icon-feature {
  width: 34px;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background-color: #1bd4d4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.facts {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  border-top: 1px solid #fff;
}

.facts li {
  border-bottom: 1px solid #fff;
  padding: 10px 0;
  font-size: 14px;
  word-break: break-word;
}

.read-more {
  margin-top: 20px;
  background-color: #1bd4d4;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #0cbdbd;
}

.right-box {
  flex: 1 1 500px;
 
  padding: 20px;
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.right-box h2 {
  color: #030d54;
  font-size: 24px;
  margin-bottom: 20px;
}

.cert-list {
  list-style: none;
  padding: 0;
}

.cert-list li {
  margin-bottom: 10px;
  font-size: 14px;
}

.cert-list .orange {
  color: orange;
}

.cert-list .blue {
  color: #1bd4d4;
}

@media (max-width: 768px) {
  .contact-desf {
    flex-direction: column;
    padding: 20px;
  }

  .left-box,
  .right-box {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .right-box{
    margin: 2rem 0rem;
  }

  .left-box:hover {
    transform: none;
  }
}

/* related search */


.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: transparent;
}

.preloader .loader {
  position: absolute;
  top: 43%;
  left: 0;
  right: 0;
  width: 50px;
  height: 50px;
  -webkit-transform: translateY(-43%);
  transform: translateY(-43%);
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: 0 auto;
}

.preloader .loader .box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: #ffffff;
  -webkit-animation: animate .5s linear infinite;
  animation: animate .5s linear infinite;
}

.preloader .loader .shadow {
  position: absolute;
  top: 59px;
  left: 0;
  width: 100%;
  height: 5px;
  opacity: 0.1;
  border-radius: 50%;
  background-color: #000000;
  -webkit-animation: shadow .5s linear infinite;
  animation: shadow .5s linear infinite;
}

.preloader::before,
.preloader::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background-color: #7b68ee;
  -webkit-transition: .9s;
  transition: .9s;
}

.preloader::after {
  left: auto;
  right: 0;
}

.preloader.preloader-deactivate {
  visibility: hidden;
}

.preloader.preloader-deactivate::after,
.preloader.preloader-deactivate::before {
  width: 0;
}

.preloader.preloader-deactivate .loader {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes loader {
  0% {
    left: -100px;
  }

  100% {
    left: 110%;
  }
}

@keyframes loader {
  0% {
    left: -100px;
  }

  100% {
    left: 110%;
  }
}

@-webkit-keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }

  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
    transform: translateY(9px) rotate(22.5deg);
  }

  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }

  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
    transform: translateY(9px) rotate(67.5deg);
  }

  100% {
    -webkit-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}

@keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }

  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
    transform: translateY(9px) rotate(22.5deg);
  }

  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }

  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
    transform: translateY(9px) rotate(67.5deg);
  }

  100% {
    -webkit-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}

@-webkit-keyframes shadow {
  50% {
    -webkit-transform: scale(1.2, 1);
    transform: scale(1.2, 1);
  }
}

@keyframes shadow {
  50% {
    -webkit-transform: scale(1.2, 1);
    transform: scale(1.2, 1);
  }
}


/* Section Heading Style */
.section-heading {
  text-align: center;
  color: #4f46e5;
  font-size: 32px;
  font-weight: 700;
  margin: 40px 0 20px 0;
}

/* Card Layout */
.section-card,
.card-box {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 0 20px;
}

/* Card Style */
.card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: background 0.3s, color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

/* Hover Effects */
.card:hover {
  background: #4f46e5;
  color: #ffffff;
  transform: translateY(-6px);
}

.card:hover .title,
.card:hover .description,
.card:hover .card-title,
.card:hover .card-description,
.card:hover .option-title,
.card:hover .option-icon {
  color: #ffffff;
}

/* Icon Style */
.icon {
  background: #eef2f7;
  width: 60px;
  height: 60px;
  font-size: 28px;
  color: #4f46e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* Text Inside Card */
.title,
.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.description,
.card-description {
  font-size: 16px;
  line-height: 1.6;
}

/* Deployment Option Section */
/* .deployment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.option {
  background: #eef2f7;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.option-icon {
  font-size: 28px;
  margin-bottom: 8px;
  color: #4f46e5;
}
.option-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}

/* Responsive Grid */
@media (min-width: 768px) {
  .section-card {
    grid-template-columns: 1fr 1fr;
  }

  .card-box {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

*/

/* Section Main Cards - 3 Columns */
.section-card {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .section-card {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Deployment Options Horizontal Boxes */
.deployment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 equal columns */
  gap: 20px;
  margin-top: 20px;
}

/* Deployment Option Box (NO CHANGE needed inside box) */
.option {
  background: #eef2f7;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .card-three {
    grid-template-columns: repeat(12fr);
  }
}

/* .card-three {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 0 20px;
} */
.card-three {
  display: grid;
  /* grid-template-columns:; */
  gap: 20px;
  margin-top: 20px;
}


.container123 {
  display: flex;
  flex-direction: row;
  padding: 60px;
  gap: 40px;
  background-color: #06A3DA;
  flex-wrap: wrap;
}

.content {
  flex: 1 1 45%;
  margin-top: 4.5rem;
}

.content h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 20px 0;
}

.content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #d1cbff;
  margin-bottom: 10px;
}

.content p {
  font-size: 20px;
  line-height: 1.7;
  margin: 10px 0;
  color: #d8d7ff;
}

.features {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 20px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  background-color: #f8f8ff;
  color: #2a23d7;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon {
  font-size: 20px;
  margin-right: 15px;
  color: #2a23d7;
}

.text h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.text p {
  margin: 0;
  font-size: 15px;
  color: #333399;
}

/* new container-1 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.insurance-section {
  padding: 50px 20px;
  background-color: #fefefe;
  text-align: justify;
}
/* Responsive layout */
@media (max-width: 991px) {
  .insurance-section .row {
      display: flex;
      flex-wrap: wrap;
  }

  .insurance-section .col-6 {
      width: 100%;
      margin-bottom: 30px;
  }

  .insurance-section .text-content h1 {
      font-size: 2rem;
  }

  .insurance-section .text-content h4 {
      font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .insurance-section {
      padding: 40px 15px;
  }

  .insurance-section .text-content h1 {
      font-size: 1.75rem;
  }

  .insurance-section .text-content h4 {
      font-size: 1rem;
  }

  .insurance-section .text-content p {
      font-size: 0.95rem;
  }
}


.image-content {
  flex: 1;
  text-align: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
}

.text-content {
  flex: 1;
}

.text-content h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1e1e1e;
}

.text-content h1 span {
  color: #000;
}

.text-content p {
  font-size: 1rem;
  color: #555;
}

/* 🔽 Responsive Media Query */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .text-content h1 {
    font-size: 1.5rem;
  }

  .text-content p {
    font-size: 0.95rem;
  }
}

/* mobile responsive code */

/* Base styles (desktop-first) */

 .container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
} 

/* Example Responsive Section */
.navbar-dark .navbar-nav .nav-link {
  padding: 15px 10px;
  font-size: 16px;
}

/* Spinner animation retained */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

/* new container-2 */


.section-title {
  color: #2f50ff;
  font-weight: 600;
  font-size: 16px;
}

.section-blue {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0px 10px;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0 30px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 900px;
}

.card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 260px;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid orange;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  position: relative;
}

.card:nth-child(even) {
  border-left: 4px solid #2f50ff;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #00c9a7;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border-color 0.4s ease;
}

.card:hover::after {
  border-color: #00c9a7;
}

@media (max-width: 768px) {
  .card {
    flex: 1 1 100%;
  }
}

/* New container-3 */

.empower-section-all {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #06A3DA;
  padding: 60px 20px;
  width: 100%;
}

.empower-section {
  max-width: 1240px;
  padding: 20px;
  width: 100%;
  margin: 0 auto;
}

.subheading {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}

.main-heading {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0 30px;
}

.empower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.empower-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #ffffff;
  padding: 18px 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.empower-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.checkmark {
  color: #2f50ff;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 4px;
}

.empower-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

/* ✅ Tablet responsiveness */
@media (max-width: 768px) {
  .empower-grid {
    grid-template-columns: 1fr;
  }

  .main-heading {
    font-size: 1.6rem;
  }
}

/* ✅ Mobile responsiveness */
@media (max-width: 480px) {
  .main-heading {
    font-size: 1.4rem;
  }

  .subheading {
    font-size: 14px;
  }

  .empower-item {
    width: 350px;
  }

  .empower-item p {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .empower-item {
    width: 600px;
  }
}


@media (max-width: 768px) {
  .empower-grid {
    grid-template-columns: 1fr;
  }
}

/* New container-4 */

.support-section {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.support-subheading {
  color: #2f50ff;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}

.support-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.support-description {
  max-width: 720px;
  margin: auto;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.support-card {
  background: #f9f9ff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(47, 80, 255, 0.15);
}

.support-icon {
  font-size: 30px;
  margin-bottom: 15px;
}

.support-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.support-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* New container-5 */

.certificates-section {
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
  gap: 40px;
  flex-wrap: wrap;
}

.cert-left {
  flex: 1;
  min-width: 300px;
}

.cert-left h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cert-list li {
  background: #fff;
  margin-bottom: 12px;
  padding: 12px 18px;
  border-left: 4px solid #f60;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  animation: slideIn 0.6s ease forwards;
  opacity: 0;
}

.cert-list li:nth-child(even) {
  border-left-color: #2f50ff;
}

.cert-list li.orange {
  border-left-color: #f60;
}

.cert-list li.blue {
  border-left-color: #2f50ff;
}

.cert-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

@keyframes slideIn {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.cert-right {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.cert-right img {
  max-width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* New container-6 */

.api-section {
  background-color: #352efc;
  color: white;
  display: flex;
  flex-wrap: wrap;
  padding: 60px 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.api-left {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  list-style: none;
}

.api-left h5 {
  font-size: 20px;
  color: aqua;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.api-left h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.api-left p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.api-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.api-box {
  display: flex;
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.api-box:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.api-box .icon {
  font-size: 24px;
  color: #352efc;
  margin-right: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.api-box:hover .icon {
  animation: bounce 0.6s;
  color: #ff6f00;
}

.api-box .text h3 {
  color: #352efc;
  font-size: 18px;
  margin: 0 0 5px;
}

.api-box .text p {
  color: #333;
  margin: 0;
  font-size: 14px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* New container-7 */


.security-section {
  padding: 60px 40px;
  max-width: 1200px;
  margin: auto;
}

.security-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.tab {
  background: #f1f1f1;
  color: #333;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tab.active {
  background: #ff7300;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.security-grid-2 {
  display: grid;
  gap: 25px;
}

.security-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 28px;
  color: #352efc;
  transition: transform 0.4s ease-in-out;
}

.security-box:hover .icon {
  transform: rotate(15deg) scale(1.2);
}

.security-box h3 {
  margin: 0 0 6px;
  font-size: 17px;
  color: #352efc;
}

.security-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}


/* ✅ Responsive tweaks */
@media (max-width: 768px) {
  .security-section h1 {
    font-size: 2rem;
  }

  .security-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .icon {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .security-section {
    padding: 40px 16px;
  }

  .security-section h1 {
    font-size: 1.75rem;
  }

  .security-box h3 {
    font-size: 1.1rem;
  }

  .security-box ul {
    font-size: 15px;
  }
}

/* New container-8 */


.helpdesk-section {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 40px 20px;
}

.helpdesk-section h2 {
  font-size: 26px;
  margin-bottom: 40px;
  font-weight: bold;
}

 /* Media Query: Tablet and below */
  @media screen and (max-width: 768px) {
    .helpdesk-section {
      flex-direction: column;
      align-items: center;
    }
  }

  /* Media Query: Mobile phones */
  @media screen and (max-width: 480px) {
    .helpdesk-section {
      padding: 20px 10px;
    }
  }

.usecase-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.usecase-grid ul {
  list-style: none;
  padding: 0;
  max-width: 500px;
  text-align: left;
}

.usecase-grid li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
  
}

.icon-help {
 
  display: inline-block;
  min-width: 24px;
  min-height: 24px;
  margin-right: 10px;
  font-size: 16px;
  color: white;
  background-color: #1f1ad0;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.icon-help:hover {
  transform: rotate(360deg) scale(1.2);
  box-shadow: 0 0 8px 3px rgba(255, 255, 255, 0.4);
  background-color: #fff;
  color: #352efc;
}

/* our clients */
.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 100%;
  margin: auto;
  padding: 0 10px;
}

.client-slider-wrapper {
  max-width: 1600px;
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  background-color: #ffffff;
  border-radius: 10px;
  scroll-behavior: smooth;
  width: 100%;
}

.client-slider {
  display: flex;
  gap: 30px;
  align-items: center;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.client-img {
  flex: 0 0 auto;
  width: 180px;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.client-img:hover {
  transform: scale(1.1);
}

.client-slider::-webkit-scrollbar {
  display: none;
}

/* Scroll Buttons */
.scroll-btn {
  position: relative;
  top: 25px;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  z-index: 10;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.scroll-btn:hover {
  background-color: #005599;
}

.scroll-btn.left {
  margin-right: 10px;
}

.scroll-btn.right {
  margin-left: 10px;
}

/* Medium Screens: Tablets */
@media (max-width: 768px) {
  .client-img {
    width: 200px;
  }

  .client-slider {
    gap: 20px;
  }

  .scroll-btn {
    font-size: 16px;
    padding: 8px 10px;
  }
}

/* Small Screens: Phones */
@media (max-width: 480px) {
  .client-slider-wrapper {
    padding: 15px 5px;
    border-radius: 6px;
  }

  .client-slider {
    gap: 15px;
  }

  .client-img {
    width: 200px;
  }

  .scroll-btn {
    font-size: 14px;
    padding: 6px 8px;
  }
}



/* slider */



.section{
  gap: 60px;
  padding-right: 4rem;

  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ff7300;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.intro-text h2,
.industries-section h2 {
  font-size: 1.8rem;
  color: #020086;
  margin-bottom: 1.5rem;
  text-align: center;
}

.testimonial {
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.testimonial p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.testimonial span {
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
}

.industries-section {
  margin-top: 2.5rem;
}

.industry-list {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-items: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.industry-list li {
  background-color: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  font-weight: 500;
  color: #444;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 17px;
}

.industry-list li:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

@media (max-width: 600px) {
  .testimonials-section {
    padding: 2rem 1rem;
  }

  .intro-text h2,
  .industries-section h2 {
    font-size: 1.4rem;
  }

  .testimonial p,
  .testimonial span {
    font-size: 0.95rem;
  }

  .industry-list {
    grid-template-columns: 1fr;
  }
} 
.benefits-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.benefits-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  color: #111;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.benefits-list li {
  display: flex;
  align-items: start;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #333;
}

.check-icon {
  background-color: #0057d9;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.know-more-btn {
  display: inline-block;
  background-color: #ff6600;
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.know-more-btn:hover {
  background-color: #e65500;
}

@media (max-width: 600px) {
  .benefits-section {
    padding: 1.5rem;
  }

  .benefits-section h2 {
    font-size: 1.5rem;
  }

  .benefits-list li {
    font-size: 0.95rem;
  }

  .check-icon {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 0.9rem;
  }
}




/* General adjustments */
.section-title h5 {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #06A3DA;
}

.section-title h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.why-box {
  padding: 20px 0;
}

.why-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.why-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Image column responsiveness */
.feature-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Media queries */
@media (max-width: 992px) {
  .row.g-5 {
    row-gap: 40px !important;
  }

  .feature-image {
    min-height: 250px;
    margin: 20px 0;
  }
}

@media (max-width: 768px) {
  .section-title h1 {
    font-size: 1.6rem;
  }

  .why-box h4 {
    font-size: 1.1rem;
  }

  .why-box p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .section-title h1 {
    font-size: 1.4rem;
  }

  .section-title h5 {
    font-size: 13px;
  }

  .why-box {
    text-align: center;
  }

  .bg-primary {
    margin: auto !important;
  }
}



#form-status.white-text {
  color: white;
}

#form-status {
  font-size: 14px;
  color: #28a745;
}

#form-status.error {
  color: red;
}

/* cookies New*/

/* === Overlay === */
.cookie-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 9998;
}

/* === Modal === */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 650px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
  z-index: 9999;
  animation: fadeIn 0.3s ease;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  padding: 20px;
  box-sizing: border-box;
}

/* Optional: Smooth animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Responsive tweaks for smaller screens */
@media (max-width: 480px) {
  .cookie-modal {
    width: 95%;
    max-width: 95%;
    padding: 16px;
    border-radius: 16px;
  }
}


/* === Animation === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* === Header === */
.cookie-header {
  background: transparent; /* removed background color */
  border-bottom: 2px solid #06a3da; /* added bottom border instead */
  color: #06a3da; /* changed text color to #06a3da for consistency */
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-header h2 {
  font-size: 18px;
  margin: 0;
}
.close-btn {
  background: none;
  border: none;
  color: #06a3da; /* changed close button color */
  font-size: 22px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.close-btn:hover {
  opacity: 0.8;
}

/* === Content === */
.cookie-content {
  padding: 20px 24px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* === Section Accordion === */
.cookie-section {
  margin-bottom: 14px;
}
.section-toggle {
  background: #f1f5ff;
  border: 1px solid #dbe4ff;
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 600;
  color: #06a3da; /* changed to new blue */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-toggle:hover {
  background: #e3edff;
}
.cookie-details {
  display: none;
  background: #f9fbff;
  padding: 12px 18px;
  border-left: 4px solid #06a3da; /* changed border color */
  border-radius: 0 0 10px 10px;
  font-size: 14px;
  margin-top: 6px;
  color: #555;
}
.arrow {
  transition: transform 0.3s;
}

/* === Status Label === */
.status {
  font-size: 13px;
  font-weight: 500;
  color: #27ae60;
}

/* === Footer Buttons (Base Styles) === */
.cookie-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background-color: white;
  /* border-top: 1px solid #e0e0e0; */
  position: relative; /* 🔧 Required for fixed placement */
  bottom: -20px;
  width: 100%;
  /* box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.1); */
  z-index: 999;
}


.cookie-btn {
  font-size: 14px;
  font-weight: bold;
  padding: 10px 22px;
  border-radius: 20px;
  cursor: pointer;
  border: 2px solid #1a73e8;
  background-color: white;
  color: #1a73e8;
  transition: all 0.3s ease;
  flex: 1 1 160px;
  max-width: 200px;
}

@media (max-width: 480px) {
  

  
}


.cookie-btn:hover {
  background-color: #e8f0fe;
}

.cookie-btn.accept {
  background-color: #1a73e8;
  color: white;
}

.cookie-btn.accept:hover {
  background-color: #1669c1;
}

.cookie-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive stacking for small screens */
@media (max-width: 480px) {
  .cookie-footer {
    flex-direction: column;
    align-items: stretch;
     gap: 10px;
    padding: 12px 16px;
  }

  .cookie-btn {
    width: 100%;
    max-width: none;       /* 🔧 remove 200px limit */
    flex: none;            /* 🔧 prevent flex shrink/grow issues */
    font-size: 16px;
    right: 10px;
    text-align: center;
    width: 100%;
    max-width: none;
  }
}




/* cookies New end */

/* captcha */
.recaptcha-container {
  transform: scale(0.9);
  transform-origin: 0 0;
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 480px) {
  .recaptcha-container {
      transform: scale(0.90);
  }
}
/* captcha end */

#suggestions {
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
}


/* under header  */
    
.oxycloud-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.oxycloud-heading {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.oxycloud-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Tablet screens */
@media (max-width: 768px) {
  .oxycloud-heading {
    font-size: 1.3rem;
  }

  .oxycloud-description {
    font-size: 0.95rem;
  }
}

/* Mobile screens */
@media (max-width: 480px) {
  .oxycloud-heading {
    font-size: 1.2rem;
  }

  .oxycloud-description {
    font-size: 0.9rem;
  }

  .oxycloud-container{
    text-align: center;
  }

  .oxycloud-container {
    padding: 15px;
  }
}
/* under header  */

/* related search  */

/* footer */
/* .offset-container {
  margin-right: 3rem;
}

.offset1-container {
  margin-right: 3rem;
}

.offset2-container {
  margin-right: 3rem;
} */

.popular-links1 {
  position: relative;
  left: 35px; /* Adjust value as needed */
  }
/* Responsive spacing only for large screens and up */
@media (max-width: 500px) {

  .popular-links1 {
    position: relative;
    left: 0px; /* Adjust value as needed */
    }
  
}

