@charset "utf-8";
/* CSS Document */ 

:root {
  --body-bg: #ffffff;
  --theme-color: #228B22;
  --body-color: #555555;
  --title-color: #15126D;
  --secondary-color: #D53D27;
  --smoke-color: #EFF1F5;
  --light-color: #f8f9fa;
  --black-color: #000000;
  --white-color: #ffffff;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #e7e5e5;
  --body-font: "Poppins", sans-serif;
  --icon-font: "Font Awesome 5 Pro";
  --main-container: 1270px;
  --container-gutters: 30px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}
/*------------------- 1.4. Typography -------------------*/
html, body {
  scroll-behavior: auto !important;
}
body {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--body-color);
  background-color: var(--body-bg);
  line-height: 28px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
section {
  padding-top: 90px;
  padding-bottom: 90px;
}
h1 {
  color: var(--title-color) ;
}
h6 {
  color: var(--secondary-color) ;
}

.br-20 {
	border-radius:20px;
}
.pr-60px {
	padding-right: 60px;
}
/* ------------------------------
       FULL WIDTH DROPDOWN
    ------------------------------ */
.dropdown-menu.full-width {
  width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  border-radius: 0;
  padding: 30px 40px;
  margin-top: 15px;
}
/* ------------------------------
       HOVER DROPDOWN + ANIMATION
    ------------------------------ */
@media (min-width: 992px) { /* only for desktop */
  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease-in-out;
  }
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }
}
.nav-link {
  padding: .5rem 1.2rem !important;
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 1);
}
.carousel-caption {
  top: 10rem;
  left: 10%;
  right: 45%;
  text-align: left;
}
.caption-first-para {
  font-size: 22px;
  font-weight: 300;
}
.carousel-caption h5 {
  font-size: 50px;
	font-weight: 700;
	margin-bottom: 15px;
}
.carousel-caption .caption-para {
	margin-bottom: 25px;
	
}
.carousel-caption p {
	font-weight: 300;
	font-size: 18px;
	
}
.carousel-caption .btn {
	padding: 12px 25px;
}

.carousel-control-next, .carousel-control-prev {
  width: 10%;
}
.about-ionetechlabs-intro h6 {
	
}
.about-ionetechlabs-intro h1 {
	color: #0B1B73;

}
.about-ionetechlabs-intro h1 span {
	color: #17A2ED;
	font-weight: 300;
	font-size: 24px;
	
}
.about-ionetechlabs-intro p {

}
.about-ionetechlabs-intro .btn {
	padding: 12px 25px;
	background: #0B1B73;
	border: 0;

}
.our-services {

	background: -webkit-linear-gradient(146deg,#499dfd 3.03%,#2678f5 27.62%,#6628c5 76.39%,#5b0bb1 112.44%) !important;
	background: -o-linear-gradient(146deg,#499dfd 3.03%,#2678f5 27.62%,#6628c5 76.39%,#5b0bb1 112.44%) !important;
	background: linear-gradient(304deg,#499dfd 3.03%,#2678f5 27.62%,#6628c5 76.39%,#5b0bb1 112.44%) !important;

}
.our-services h1{ 
	color: #ffffff;
}
.pdlr-150 {
  padding-left: 150px;
  padding-right: 150px;
}
.card {
  width: 100%;
  height: 320px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  padding: 40px 20px;
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  /* Default Background Image */
  background-image: url("../images/Innovan_Technologies_card_bg.jpg");
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;

  transition: background-size 0.6s ease, background-image 0.6s ease, background 0.6s ease;
}

/* Heading always visible */
.title {
	font-size: 20px;
	/* font-weight: bold; */
	margin: 0;
	line-height: 32px;
}

/* Paragraph is hidden initially */
.desc {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.6s ease;
  margin-top: 8px;
}

/* Hover effects */
.card:hover {
  background-size: 120%; /* Zoom in */ 
  background-image: url("../images/Innovan_Technologies_card_bg.jpg");
  background: -webkit-linear-gradient(146deg,#499dfd 3.03%,#2678f5 27.62%,#6628c5 76.39%,#5b0bb1 112.44%) !important;
  background: -o-linear-gradient(146deg,#499dfd 3.03%,#2678f5 27.62%,#6628c5 76.39%,#5b0bb1 112.44%) !important;
  background: linear-gradient(304deg,#499dfd 3.03%,#2678f5 27.62%,#6628c5 76.39%,#5b0bb1 112.44%) !important;

	
}

/* Show only paragraph on hover */
.card:hover .desc {
  opacity: 1;
  transform: translateX(0);
}

.about_ione {
	background: url("../images/about_ione-bg.jpg");
	background-size: cover;
}

.about_ione h4 { 
	line-height: 46px;
	font-weight: 300;
	font-size: 22px;
}

.about-card {
	background: #ffffff;
	border-radius:10px;
	padding: 15px;
}
.about-card h3 {
	font-size: 15px;
	font-weight: 400;
	line-height: 24px;
}

.tab-image-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      height: 350px;
    }

    .tab-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: slideFade 0.8s ease-in-out;
    }

    .image-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
      color: #fff;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    }

    @keyframes slideFade {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .nav-pills .nav-link {
      text-align: left;
      font-weight: 500;
		line-height: 46px;
		color: #ffffff;
    }

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
	color: #0B1B73;
	background-color: #ffffff;
}
.client-card {
  background: #f5f6fb;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: transform .3s ease;
}

.client-card:hover {
  transform: translateY(-5px);
}

.client-img {
  height: 220px;
  overflow: hidden;
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-body {
  padding: 20px;
}

.client-body h6 {
  font-weight: 600;
  margin-bottom: 6px;
	color: #333;
}

.mt-50 {
	margin-top: 100px;
}





/* Controls */
.why .carousel-control-prev,
.why .carousel-control-next {
  width: 42px;
  height: 42px;
  background: #f1f1f1;
  border-radius: 8px;
  top: auto;
  bottom: -70px;
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .client-img {
    height: 180px;
  }
}

.footer-bg {
  background: radial-gradient(circle at top, #1b1f3b, #050617);
  font-size: 14px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 16px;
	color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfd2ff;
  text-decoration: none;
  font-weight: 400;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.15);
}

.social-icons a {
  color: #fff;
  font-size: 18px;
  margin-right: 15px;
  display: inline-block;
}

.language-select {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 12px;
  border-radius: 6px;
}

.footer-bottom a {
  color: #cfd2ff;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}
