/********** 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 ***/
body {
	font-family: Open Sans;
}
.main-heading {
	color: #616161;
	font-size: 40px;
	font-weight: 800;
	padding: 0 5px 0 5px;
}

h2.heading {
    font-size: 25px !important;
	color: black !important;
}
h2.heading_blue {
    font-size: 25px !important;
}

/* Helpdesk Services Icons */
.icon-row {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 15px; /* Adds space between icon and text */
  padding: 15px 0;
  text-align: center;
}

/* Increase icon size */
.icon {
  font-size: 3rem; /* Larger icons */
  color: gray;
}

/* Adjust text size and alignment */
.icon-label {
  font-size: 24px; /* Slightly larger text */
  /* font-weight: bold; */
  color: #333;
  margin: 0;
}




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;
}

p {
	font-size: 18px;
	line-height: 30px;
}
.core_head {
	font-size: 30px;
	color: #0C5ADB;
	font-weight: bold;
}
.small_head {
	font-size: 20px;
}
.transform {
	font-size: 100px !important;
}
.footer {
	font-size: 15px;
	color: #96A1B6;
}
/*** Button ***/
.accordion-button:not(.collapsed) {
    color: #0C5ADB;
    background-color: #f6f6f6;
}
.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;
}

.carousel-caption {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 1 !important;
}
.serivce_btn {
	width: 75%;
}



/*** Hero CSS ***/
.hero-section {
	background: url('../img/5.jpg') center center/cover no-repeat;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-section h3 {
	color: #fefefe;
	font-size: 30px;
}

.hero-section h1 {
	color: #ffffff;
	font-size: 45px;
}

.callback_btn {
	background: linear-gradient(90deg, #0c1bae, #3486fe);
	border: none;
	padding: 10px 30px;
	font-size: 15px;
	border-radius: 5px;
}
.industries_page_section {
	background: url('../img/industries-img/Digital_Brand_img.jpg') center center/cover no-repeat;
}
.consulting {
	background: url('../img/service-img/integrio_services_layers_3_2-scaled.jpg') center center/cover no-repeat;
}

/*** Navbar ***/
.logo_img {
	height: 70px;
}

.free_consultancy {
	color: white;
	background-color: transparent;
	border: 1px solid #ffffff;
}
.free_consultancy:hover {
	color: #ffffff;
    border-color: rgba(12, 90, 219, 1);
    background-color: rgba(12, 90, 219, 1);
}

.text-primary {
    color: #ffffff !important;
}

.sticky-top.navbar-dark .navbar-nav .text-primary {
    color: var(--dark);
}

.custom_nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}

.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 ***/
.learn {
	background-color: #1028B2;
	border: 1px solid #1028B2;
} 

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        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 ***/
.sub-section-title h2 {
	font-size: 16px;
	color: #0C5ADB;
	font-weight: 700;
}
.section-title h2 {
	font-size: 16px;
	color: #0C5ADB;
	font-weight: 700;
}

.fa-check {
	color: #0C5ADB;
}

/*** 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;
	background-color: #0c5adb;
	border: 1px solid #0c5adb;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) 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;
    }
}


nav.navbar.navbar-expand-lg.navbar-dark.sticky-top .free_consultancy {
    color: #000;
    border: 1px solid #000;
}
nav.navbar.navbar-expand-lg.navbar-dark.sticky-top .free_consultancy:hover {
    color: #ffffff;
    border-color: rgba(12, 90, 219, 1);
    background-color: rgba(12, 90, 219, 1);
}

nav.navbar.navbar-expand-lg.navbar-dark.sticky-top .fa-search{
    color: #000;
}

.image-container {
  position: relative; 
  width: 100%; 
  height: 500px; 
  overflow: hidden; 
}
.background-image {
  position: absolute; 
  top: 0;
  left: 20%;
  width: 100%;
  object-fit: cover; 
  z-index: 1; 
}

.foreground-image {
  border-radius: 10px; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
}
.flipbox {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 80px auto;
  perspective: 1000px;
}

.card {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  box-shadow: 1px 5px 13px 2px rgba(0,0,0,0.3);
  color: #fff;
  text-align: center;
  backface-visibility: hidden;
  transition: transform .5s ease-in-out;
  transform-style: preserve-3d;
}

.flipbox-front-1 {
  transform: rotateY(0deg);
  background: url("../img/our-culture.jpg") no-repeat center;
  background-size: cover;
}
.flipbox-front-2 {
  transform: rotateY(0deg);
  background: url("../img/skill-development.jpg") no-repeat center;
  background-size: cover;
}
.flipbox-front-3 {
  transform: rotateY(0deg);
  background: url("../img/our-growth.jpg") no-repeat center;
  background-size: cover;
}

.flipbox-back {
  transform: rotateY(180deg);
  padding: 10px;
  font-size: 17px;
  line-height: 1.5;
  background: #9e8ed9;
}

.flipbox:hover .flipbox-front-1 {
  transform: rotateY(-180deg);
}
.flipbox:hover .flipbox-front-2 {
  transform: rotateY(-180deg);
}
.flipbox:hover .flipbox-front-3 {
  transform: rotateY(-180deg);
}

.flipbox:hover .flipbox-back {
  transform: rotateY(0deg);
  background: linear-gradient(90deg, #0c1bae, #3486fe);
}

.flip_heading {
  color: #ffffff !important;
  font-size: 30px;
  text-shadow: 2px 2px rgba(0,0,0,0.2);
}
.check-list {
	list-style: none;
}



.custom_img {
	z-index: 1;
}

.industries-p {
	font-size: 26px;
	color: #616161;
}
/* General styles */									
.services_div {	
	background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 300px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease-in-out;											
}											
.services_div img {											
position: absolute;											
top: 0;											
left: 0;											
width: 100%;											
height: 100%;											
object-fit: cover;											
opacity: 0;											
transition: all 0.9s ease-in-out;											
}											
.services_div:hover img {											
opacity: 1;											
}											
.services_div img.from-left {											
transform: translateX(-100%);											
}											
.services_div:hover img.from-left {											
transform: translateX(0);											
}											
.services_div img.from-right {											
transform: translateX(100%);											
}											
.services_div:hover img.from-right {											
transform: translateX(0);											
}											
.services_div img.from-top {											
transform: translateY(-100%);											
}											
.services_div:hover img.from-top {											
transform: translateY(0);											
}											
.services_div img.from-bottom {											
transform: translateY(100%);											
}											
.services_div:hover img.from-bottom {											
transform: translateY(0);											
}											
.services_div .card-body {											
position: relative;											
z-index: 2;											
}											
.services_div .card-body h5 {
	font-size: 22px;
color: #232323;	
margin: 0;											
opacity: 1;											
transition: all 0.3s ease-in-out;											
}	
.services_div .card-body p	{
	font-size: 16px;
	line-height: 30px;
	color: #616161;
}									
.services_div:hover .card-body h5, .services_div:hover .card-body p, .services_div:hover .icon-placeholder {											
opacity: 0;											
}											
.services_div .card-body .btn {										
position: absolute;											
top: 50%;											
left: 50%;											
transform: translate(-50%, -50%);											
opacity: 0;											
transition: all 0.3s ease-in-out;											
}											
.services_div:hover .card-body .btn {											
opacity: 1;											
}											
.icon-placeholder {	
color: #1128b8;										
font-size: 30px;											
margin-bottom: 10px;											
}		

.skills {
    flex: 1;
    margin-right: 10px;
}

.skill {
    margin-bottom: 20px;
}
.skill p {
	font-size: 16px;
	color: #636363;
}
.progress-bar {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    background-color: blue;
    height: 5px;
    line-height: 24px;
    color: white;
    text-align: center;
    border-radius: 4px;
}

.input {
	background-color: #F3F3F3;
}
.our_skills {
	background-color: #F3F3F3;
	padding: 30px;
}

.contact-container {
      display: flex;
      gap: 20px;
	  justify-content: center;
    }

    .contact-card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      width: 280px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .contact-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .contact-card .img {
      width: 50px;
      margin-bottom: 15px;
      transition: opacity 0.3s ease;
    }

    .contact-card:hover .img {
      opacity: 0;
    }

    .contact-card h3 {
      margin: 10px 0;
      font-size: 18px;
      color: #333;
    }

    .contact-card p {
	  line-height: 20px;
      margin: 0;
      font-size: 14px;
      color: #555;
    }

    .contact-card a {
      display: none;
      margin-top: 10px;
      color: #0c5adb;
      text-decoration: none;
      transition: opacity 0.3s ease, margin-left 0.3s ease;
      position: relative;
    }

    .contact-card a::after {
      content: '\2192'; /* Unicode for right arrow */
      font-size: 14px;
      color: #0c5adb;
      position: absolute;
      margin-left: 5px;
      opacity: 0;
      transition: opacity 0.3s ease, margin-left 0.3s ease;
    }

    .contact-card:hover a {
      display: block;
    }

    .contact-card a:hover::after {
      opacity: 1;
      margin-left: 10px;
    }
	@media (max-width: 768px) {
      .contact-container {
        flex-direction: column;
      }

      .contact-card {
        width: 100%;
        max-width: 300px;
      }
	  
