@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Montserrat", sans-serif;
  font-size: 15px !important;
  color: #333333 !important;
  line-height: 20px !important;
}

p,
li {
  font-size: 15px !important;
  color: #333333 !important;
  line-height: 24px !important;
}

:root {
  --accent: #e6007e;
  --title: #1f3c88;
  --muted: #555;
  --card-gap: 24px;
}

.primaryBG {
  /* background: var(--title);
  background-image: url(../images/sliderBG.jpg); */
  background-position: center;
  background-size: cover;
}

.logo {
  height: 50px;
}

#ctmnavbar nav.navbar {
  background: #fff;
}

.pad-80 {
  padding: 80px 0;
}

.pad-100 {
  padding: 100px;
}

.pad-70 {
  padding: 70px;
}

h2 {
  font-weight: 500;
  font-size: 32px;
}

h2 .headingcolor {
  color: var(--title);
  font-weight: 700;
  font-size: 32px;
}

a.dropdown-item.dropdown-toggle {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: #0c4da2;
}

.dropdown-item.dropdown-toggle::after {
  float: right;
  margin-top: 0 !important;
  transform: rotate(-90deg);
}

.navbar-brand {
  width: 170px;
}

header#ctmnavbar li.nav-item.btn.btn-primary.primaryBtn a.nav-link.text-white {
  font-size: 13px;
  padding: 10px 15px;
}

header#ctmnavbar li.nav-item {
  margin: 0 10px;
}

header#ctmnavbar li.nav-item a.nav-link {
  font-weight: 500;
}

header#ctmnavbar li.nav-item.btn.btn-primary.primaryBtn {
  margin: 0;
  padding: 0;
}

.pinkBtn {
  background: #ed0281;
  border: transparent;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 0;
  color: #fff;
}

/*--------------Read More--------------------------*/
.read-more-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: #fff;
  border: none;
  height: 50px;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.4s ease;
  text-decoration: none;
}

.read-more-btn span {
  display: inline-block;
  transition: all 0.4s ease;
}

.read-more-btn::after {
  content: "→";
  opacity: 0;
  margin-left: 0;
  transition: all 0.4s ease;
  position: absolute;
  right: 0;
  font-size: 20px;
  top: 14px;
}

.read-more-btn:hover {
  padding-right: 45px;
  /* increase width smoothly */
}

.read-more-btn:hover::after {
  opacity: 1;
  margin-left: 0;
  right: 15px;
}

div#consultEngineerModal label.form-label {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 0;
}

div#navbarNav a.nav-link {
  font-weight: 500;
}

div#consultEngineerModal button.btn-close {
  color: #fff;
  filter: brightness(0) invert(1);
  fill: #fff;
  opacity: 1;
  font-size: 12px;
  right: 5px;
  position: relative;
}

.primaryBtn {
  background: #0c4da2 !important;
  border: transparent !important;
  color: #fff !important;
  border-radius: 0 !important;
}

.primaryBtn a.nav-link {
  color: #fff !important;
}

.navbar-expand-lg .navbar-nav {
  flex-direction: row;
  align-items: center;
}

/* Position nested dropdowns to open on the right */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

/* Multilevel dropdown positioning */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

ul.dropdown-menu.show {
  border-radius: 0;
}

/* optional caret arrow */
.dropdown-item.dropdown-toggle::after {
  float: right;
  margin-top: 10px;
  transform: rotate(-90deg);
}

div#navbarNav li.nav-item {
  margin: 0 5px;
}

header#ctmnavbar a.nav-link.active {
  color: #ed0281;
  font-weight: 600;
  border-bottom: 2px solid;
}

header#ctmnavbar a.nav-link:hover {
  color: #ed0281;
}

.SecondaryBtn {
  font-weight: 500 !important;
  padding: 15px 30px !important;
  background-color: #fff !important;
  color: #ed0281 !important;
  border-radius: 0 !important;
  display: inline-block !important;
  border: transparent !important;
  width: 30% !important;
}

/* ----- Carousel fixes ----- */
#heroSlider {
  position: relative;
  overflow: hidden;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 60vh;
  opacity: 0;
  transition: opacity 0s ease-in-out;
}

.carousel-item.active {
  position: relative;
  opacity: 1;
  transition: opacity 0s ease-in-out;
}

/* ----- Left Text Column ----- */
.hero-content {
  color: #fff;
  padding: 3rem 3rem;
  z-index: 3;
  opacity: 0;
  transition: all 1s ease-in-out;
  height: 600px;
  background-image: url(../images/sliderBG.jpg);
  background-position: left;
  align-content: center;
}

.carousel-item.active .hero-content {
  opacity: 1;
  transform: translateX(0);
}

.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.05;
}

@media (min-width: 992px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

section#aboutUsSecOne li img.img-fluid {
    display: none;
}


section#aboutUsSecOne li strong{
  display: block;
}

section#aboutUsSecOne .pad-100 {
    padding: 80px 80px 50px;
}

.hero-content p {
  font-size: 1rem;
  margin: 1rem 0 1.5rem;
  max-width: 30rem;
  color: #fff !important;
}

/* ----- Right Image Column ----- */
.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: all 1s ease-in-out;
}

.carousel-item.active .hero-image img {
  opacity: 1;
  transform: translateX(0);
}

/* Dark overlay for readability */
/* .hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
  pointer-events: none;
} */

/* Button style */
.btn-hero {
  padding: 14px 25px;
  border-radius: 0.35rem;
  font-weight: 600;
  background: #fff;
  border: transparent;
  border-radius: 0;
  color: #333;
}

.btn-hero:hover {
  background: var(--accent);
}

/* Indicators position */
.carousel-indicators {
  bottom: 10px;
}

/* Submenu Styling */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}
.dropdown-item.dropdown-toggle::after {
  float: right;
  margin-top: 5px;
  transform: rotate(-90deg);
}

/* Small screens alignment */
@media (max-width: 767.98px) {
  .hero-content {
    text-align: center;
    padding: 2rem 1rem;
  }
}

/* Background section below slider */
.bg-below-slider {
  background-color: #f5f5f5;
  padding: 5rem 2rem;
  text-align: center;
}

.bg-below-slider h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.bg-below-slider p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: #555;
}

section#industriesSec {
  background: #f2f2f2 !important;
}

    .industry-card {
transition: 0.3s;
    border-radius: 2px;
    padding: 25px 0px;
    text-align: center;
    border: 1px solid #ddd;
    background: #fff;
    min-width: 200px;
    }

    .industry-card.automotive{
       min-width: 260px;
    }

     .industry-card.chemical{
       min-width: 220px;
    }

    .industry-card i {
        font-size: 38px;
        margin-bottom: 10px;
        transition: 0.3s;
        color: #0c4da2;
    }

    .industry-card:hover {
        background: #0c4da2;
        color: #fff !important;
        border-color: #0c4da2;
    }

    .industry-card:hover i {
        color: #fff !important;
    }

.section-title {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.section-title small {
  display: inline-block;
  color: #8a8a8a;
  letter-spacing: 1px;
  position: relative;
}

.section-title h2 {
  font-weight: 500;
  margin: 6px 0;
}

.section-title p {
  color: var(--muted);
  margin: 0 0 6px;
}

.section-title small:before {
  position: absolute;
  content: "";
  width: 50px;
  background: #797979;
  height: 1px;
  right: 115%;
  top: 10px;
}

.section-title small:after {
  position: absolute;
  content: "";
  width: 50px;
  background: #797979;
  height: 1px;
  left: 115%;
  top: 10px;
}

/* Slider wrapper */
.slider-wrap {
  position: relative;
}

/* Viewport that masks overflow */
.slider-viewport {
  overflow: hidden;
  padding: 10px 0 0px;
  /* space for icons */
}

/* The track containing cards */
.slider-track {
  display: flex;
  gap: var(--card-gap);
  transition: transform 0.45s cubic-bezier(0.22, 0.9, 0.3, 1);
  will-change: transform;
  padding-bottom: 10px;
}

/* Card styling */
/* .industry-card {
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  min-width: 280px;
  flex: 0 0 auto;
  background: transparent;
}

.industry-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.icon-box img {
  width: 30px;
  height: 30px;
}

.industry-card:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.industry-card-body {
  top: -15%;
  padding: 22px;
  position: relative;
  min-height: 140px;
  width: 90%;
  background: #fff;
  right: 0;
  left: 10%;
} */

.icon-box {
  position: absolute;
  top: -22px;
  left: 18px;
  width: 56px;
  height: 56px;
  background: #f2f2f2;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
  color: #333;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.industry-card:hover .icon-box {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

/* .industry-card h5 {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 600;
  color: var(--title);
}

.industry-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 12px;
}

.read-more {
  color: var(--title);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.industry-card:hover .read-more {
  color: var(--accent);
} */

/* Arrows */
.slider-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: -30px;
  position: relative;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 0px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  cursor: pointer;
  box-shadow: none;
}

.nav-btn:active {
  transform: translateY(1px);
}

.nav-btn.next {
  background: var(--accent);
  color: #fff;
}

.nav-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

/*---------------Advantage Sec-------------------*/

#advantageSec .icon-circle {
  width: 60px;
  height: 60px;
  background-color: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 32px;
  color: #007bff;
  margin: 0 0 20px;
  transition: all 0.3s ease;
}

#advantageSec .icon-circle img {
  width: 35px;
}

#advantageSec .card {
  border: 1px solid #ddd;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  border-radius: 0px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#advantageSec .card:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); */
}

#advantageSec .card:hover .icon-circle {
  background-color: var(--accent);
  color: #fff;
}

#advantageSec .card:hover .icon-circle img {
  filter: brightness(0) invert(1);
}

#advantageSecTwo img.img-fluid {
  height: 200px;
  object-fit: cover;
  object-position: right;
  width: 100%;
}

#advantageSecTwo .icon-circle {
  margin: 0;
}

#advantageSec .card-title {
  font-weight: 600;
  margin-bottom: 10px;
}

#advantageSec .card-text {
  color: #666;
}

section#advantageSec .card-body {
  padding: 0;
}

/*---------------------Advantage Sec------------------*/

/*--------------------Stat Sec------------------------*/
#StatisticsSec {
  background-image: url(../images/gradiantBG.png);
  background-size: cover;
}

#StatisticsSec .iconBox {
  width: 60px;
  height: 60px;
  background: #fff;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
}

#StatisticsSec .card {
  background: transparent;
  border: transparent;
  color: #fff;
}

#StatisticsSec h5.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

#StatisticsSec p.card-text {
  font-size: 15px;
  color: #fff !important;
}

#StatisticsSec .card-body {
  padding-right: 0;
}

/*-------------------------------Advantage----------------------------*/

.info-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0px;
  padding: 25px 30px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  overflow: hidden;
  margin-bottom: 25px;
  min-height: 160px;
}

/* Hidden image (slides in on hover) */
.info-card img.infoImg {
  position: absolute;
  left: -250px;
  top: 0;
  width: 230px;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  opacity: 0;
  transition: all 0.6s ease;
}

.info-card:hover img {
  left: 0;
  opacity: 1;
}

/* Content area */
.info-card .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
  transition: all 0.6s ease;
}

/* Shift only text + button */
.info-card:hover .text-btn-wrap {
  transform: translateX(220px);
}

.info-card .icon {
  font-size: 38px;
  color: #333;
  margin-right: 20px;
  min-width: 45px;
  text-align: center;
  transition: color 0.3s ease;
}

.info-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.info-card p {
  margin-bottom: 0;
  color: #555;
  font-size: 15px;
  max-width: 550px;
}

.info-card .circle-btn {
  width: 45px;
  height: 45px;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

section#platformTwomob,
section#platformFourmob {
  display: none;
}

.info-card:hover .circle-btn {
  background-color: #e60073;
  color: #fff;
}

.info-card:hover {
  background-color: #fdeefc;
  transform: translateY(-5px);
}

.icon-circle {
  margin-right: 30px;
}

/*--------------------Success Story---------------*/
#successStorySec {
  background-image: url(../images/SuccessStoriesBG.png);
  background-size: cover;
  background: #eeeeee;

}

/* #successStorySec h2,
#successStorySec h2 .headingcolor {
  color: #fff !important;
}

#successStorySec .section-title small {
  color: #fff !important;
} */

/* .section-title small:before,
.section-title small::after {
  background: #dedcdc !important;
} */

.section-title.text-start small::before {
  display: none;
}

.success-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.success-carousel .card-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
}

.success-carousel .success-card {
  position: relative;
  flex: 0 0 calc(33.333% - 20px);
  border-radius: 0px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.success-carousel .success-card img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.success-carousel .card-title {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  transition: transform 0.4s ease;
  z-index: 2;
  width: 80%;
  bottom: 10%;
}

.success-carousel .read-more-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(50px);
  opacity: 0;
  padding: 6px 15px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.4s ease;
  z-index: 2;
}

.success-carousel .success-controls button#successNext {
  color: #fff;
  background: #e6007e;
}

.success-carousel .read-more-btn::after {
  display: none;
}

.success-carousel .success-card:hover img {
  transform: scale(1.1);
}

.success-carousel .success-card:hover .card-title {
  transform: translateX(-50%) translateY(-50px);
}

.success-carousel .success-card:hover .read-more-btn {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.success-carousel .success-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  z-index: 1;
  transition: background 0.4s ease;
}

.success-carousel .success-card:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}

/* ✅ Buttons at bottom (centered) */
.success-carousel .success-controls {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.success-carousel .success-btn {
  background: rgb(255 255 255);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.success-carousel .success-btn:hover {
  background: rgb(237 2 129);
  color: #fff;
}

/*------------------------testimonial-------------------*/

.testimonial-section {
  padding: 80px 0;
  overflow: hidden;
}

.testimonial-heading span {
  color: #777;
  letter-spacing: 1px;
  position: relative;
}

.testimonial-heading h2 {
  font-weight: 500;
  margin-top: 10px;
}

.testimonial-heading h2 span {
  color: #0056b3;
  font-weight: 700;
}

.testimonial-card {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 30px;
  background: #fff;
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.testimonial-card i {
  font-size: 50px;
  color: #004aad;
  margin-bottom: 0;
  font-weight: bold;
}

.testimonial-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.testimonial-author {
  border-top: 1px solid #ddd;
  margin-top: 20px;
  padding-top: 15px;
}

.testimonial-author h6 {
  font-weight: 700;
  margin-bottom: 3px;
}

.testimonial-author small {
  color: #666;
  font-size: 13px;
}

.testimonial-nav {
  margin-top: 25px;
}

.testimonial-nav button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 0px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.testimonial-nav .btn-prev {
  background-color: #ddd;
  color: #333;
}

.testimonial-nav .btn-next {
  background-color: #e5007d;
  color: #fff;
}

.testimonial-nav button:hover {
  opacity: 0.8;
}

/* Slider wrapper */
.testimonial-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
}

.testimonial-item {
  flex: 0 0 calc(50% - 10px);
  /* show 2 cards per view */
}

.client-logo {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0;
  padding: 0;
  margin: 0 auto;
  height: 100px;
  line-height: 100px;
  text-align: center;
}

.client-logo:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.client-logo img {
  max-width: 100%;
  height: 70px;
  object-fit: contain;
  transition: all 0.3s ease;
}

section#homePara {
    margin-bottom: 60px;
}

.Homecard.middleCard {
    border-right: transparent;
    border-left: transparent;
}
.Homecard {
    padding: 20px;
    border: 1px solid #ddd;
}

.Homecard p{
  margin-bottom: 0;
}

#homePara p.mt-3.mb-3 {
    margin: 20px 20px 20px 23px;
    border-left: 5px solid #ed0281;
    padding: 5px 15px;
    width: 70%;
    display: none;
}

.buildSec{
  background-color: #eee;
}

.client-logo img:hover {
  filter: grayscale(0%);
}

section#aboutUsSecOne {
  background: #f2f2f2 !important;
}

.successStorytestimonail .testimonial-card {
  margin: 20px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  border: 2px solid #e91e63;
}

.successStorytestimonail .quote-icon {
  font-size: 32px;
  color: #0d6efd;
  margin-bottom: 15px;
}

.successStorytestimonail .testimonial-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.successStorytestimonail .testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.successStorytestimonail .testimonial-author h5 {
  margin: 0;
  font-weight: 600;
  color: #222;
}

.successStorytestimonail .testimonial-author p {
  margin: 0;
  color: #777;
  font-size: 0.9rem;
}

.details a {
  color: #fff;
}

.list-check li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.list-check .icon {
  background-color: var(--title);
  /* Bootstrap primary */
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

/*---------------Footer---------*/

.ctaBG {
  background-image: url(../images/FooterBG.png);
  background-size: contain;
  height: 430px;
  width: 100%;
  position: relative;
  align-content: center;
  background-repeat: no-repeat;
}

section#FooterSection {
  color: #fff !important;
  background-image: url(../images/FooterBG.png);
}

img.footerLogo {
  height: 60px;
  filter: brightness(0) invert(1);
}

section#FooterSection .container.pad-80 {
  padding: 80px 0 0 30px !important;
}

.ctafooterCnt {
  width: 50%;
  margin-top: -5%;
  padding-right: 5%;
  margin-left: -5%;
}

a.btn.btn-dark.dakBtn {
  padding: 10px 00px 10px 20px;
  border-radius: 2px;
  margin-top: 10px;
  font-size: 14px;
  transition: all 0.3s;
}

a.btn.btn-dark.dakBtn span {
  opacity: 0;
  transition: all 0.3s;
  padding-left: 5px;
}

a.btn.btn-dark.dakBtn:hover {
  padding: 10px 20px 10px 20px;
  background: #212529;
}

a.btn.btn-dark.dakBtn:hover span {
  opacity: 1;
}

#FooterSection h3,
#FooterSection p,
#FooterSection li {
  color: #fff !important;
  margin-bottom: 0;
}

.footerLogo {
  margin-bottom: 30px;
}

.abtCompany img.SocialIcon {
  width: 30px;
  margin: 10px 5px;
}

#FooterSection li a {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  margin-bottom: 5px;
  display: inline-block;
}

.footerThree .contactDetails.d-flex img.SocialIcon {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
  margin-right: 20px;
}

.footerThree .contactDetails.d-flex {
  margin-bottom: 25px;
  align-items: center;
}

/*--------End Footer-----------------*/

/*-------------About Us Page----------------*/

#AboutpageBanner {
  background-image: url(../images/AboutUsBanner.png);
  background-size: cover;
  height: 350px;
}

#contactBanner {
  background-image: url("../images/contactPageBanner.png");
  background-size: cover;
  height: 350px;
}

#successStoryBanner {
  background-image: url(../images/successStoryBanner.png);
  background-size: cover;
  height: 350px;
}

.aboutBGImg {
  background-image: url("../images/about-Parallax.jpg");
  background-size: cover;
  background-position: right;
  background-attachment: fixed;
}

.ctabgimg {
  background-image: url("../images/CTAImg1.jpg");
  background-size: cover;
  background-position: center;
}

#ctaSec,
#homeAboutSec,
#offeringFirstSec {
  background-image: url(../images/networkingBG.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  bottom: 0;
  position: relative;
  padding-bottom: 80px;
}

#homeAboutSec .container.pad-80 {
  padding-bottom: 0;
}

#ctaSec .container {
  width: 70%;
  margin: 0 auto 0px;
  background: #fafafa;
  border: 1px solid #ddd;
  position: relative;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#FooterSection h5 {
  margin-bottom: 20px;
}

hr.ctmline {
  position: relative;
  opacity: 1;
}

#ctaSec img {
  position: absolute;
  right: 40px;
  width: 50px;
}

.ctacontent {
  padding: 40px;
}

.mb-80 {
  margin-bottom: 80px;
}

#bottomImg {
  background-image: url("../images/networkingBG.png");
  position: relative;
  right: 0;
}

#offeringsBanner {
  background-image: url("../images/offeringsBanner.png");
  background-size: cover;
  height: 350px;
}

#platformBanner {
  background-image: url("../images/PlatformBanner.png");
  background-size: cover;
  height: 350px;
}

#blogBanner {
  background-image: url("../images/BlogBanner.png");
  background-size: cover;
  height: 350px;
}

#platformOne .bgImg,
#platformThree .bgImg {
  background-image: url("../images/AI-Digital-Twin.jpg");
  background-size: cover;
  height: 450px;
}

#platformThree .bgImg {
  background-image: url("../images/IntelligentApplications.jpg");
  background-position: right;
}

#platformTwo .bgImg,
#platformTwomob .bgImg,
#platformFour .bgImg,
#platformFourmob .bgImg {
  background-image: url("../images/InteliSim.jpg");
  background-size: cover;
  height: 450px;
}

#platformFour .bgImg {
  background-image: url("../images/AI-Vision.jpg");
}

section#platformOne .row,
section#platformTwo .row,
section#platformThree .row,
section#platformFour .row {
  align-items: center;
}

section#platformOne .bgColor,
section#platformTwo .bgColor,
section#platformThree .bgColor,
section#platformFour .bgColor {
  padding: 60px;
}

/* section#platformOne .bgColor,
section#platformThree .bgColor {
  color: #fff;
} */

/* section#platformOne p,
section#platformThree p,
section#platformOne li,
section#platformThree li {
  color: #fff !important;
} */

section#platformOne,
section#platformThree {
  padding: 80px 0 80px 80px;
  background: #f5f5f5;
}

ul {
  list-style: none;
  padding: 10px 0;
}

ul li {
  margin-bottom: 10px;
}

li img {
  width: 20px;
  margin-right: 10px;
}

/* section#platformOne li img,
section#platformThree li img {
  width: 20px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
} */

section#platformTwo,
section#platformFour {
  padding: 80px 80px 80px 0px;
}

/*-------------Blog Page-----------*/

.blog-card {
  border-radius: 0px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  position: relative;
}

section.blogsSec h5.card-title {
  font-size: 15px;
  margin: 0;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.blog-meta {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 8px;
}

.blog-category {
  color: #555;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  margin-right: 8px;
  background: #ececec;
  padding: 5px 10px;
  display: inline-block;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  min-height: 48px;
}

.blog-desc {
  font-size: 0.95rem;
  color: #555;
  min-height: 120px;
}

span.blogDate {
  position: absolute;
  top: 15px;
  left: 0;
  padding: 10px;
  background: #ed0281;
  color: #fff;
}

section.md-py-5.py-3.pad-80.BlogOuter {
  padding: 80px 0 !important;
}

.btn-read {
  margin-top: 15px;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 0px;
  transition: all 0.3s ease;
}

.btn-read:hover {
  background-color: #0d6efd;
  color: #fff;
}

#digitalparallax {
  background-image: url("../images/digital-parallax.jpg");
  background-size: cover;
  background-position: center;
  height: 400px;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}

.feature-box {
  background-color: #ffffff;
  border-radius: 0px;
  text-align: center;
  padding: 30px 20px;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #ddd;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  background: #ed0281;
  width: 80px;
  height: 80px;
  margin: -30px auto 25px;
  border-radius: 0 0 50px 50px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-text {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 0 !important;
}

.coreValues img.img-fluid {
  width: 40px;
  position: relative;
  top: 15%;
  filter: brightness(0) invert(1);
}

/* #challengesSec {
  background-image: url("../images/challengesBG.png");
  background-size: cover;
  background-position: center;
} */

#challengesSec .card h4 {
  margin: 0 0 0 15px;
}

#challengesSec .card img.img-fluid {
  filter: brightness(0) invert(1);
  width: 40px;
}

#challengesSec .card .card-header {
  padding: 15px 20px;
}

#challengesSec .card .card-body {
  padding: 10px 25px;
}

ul.text-start.list-check strong {
  padding-right: 5px;
}

.aboutBGImg.whyIntelimek {
  background-image: url("../images/why-intelimek-bg.webp");
  background-size: cover;
  background-position: center;
}

.simulationBG {
  background-image: url(../images/simulationBG.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 500px;
  padding: 0;
}

.quickInsights {
  background-image: url("../images/quickInsights.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* #aboutUsSecTwo .col-md-6.pad-100 {
  background: #0c4da2;
  color: #ffff;
} */

/* #aboutUsSecThree .col-md-6.pad-100 {
  background: var(--accent);
  color: #ffff;
} */

#aboutUsSecTwo h2 .headingcolor,
#aboutUsSecTwo strong,
*/ #aboutUsSecTwo p,
#aboutUsSecThree h2 .headingcolor #aboutUsSecThree strong,
#aboutUsSecThree p {
  color: #fff !important;
}

section#aboutUsSecThree {
  border-bottom: 1px solid #ddd;
}

.challengpart.solutionSec .card-header {
  background: #0c4da2;
}

.challengpart .card-header {
  background: #333;
}

#advantageSecOne .icon-circle img {
  width: 50px;
  position: relative;
  left: 15px;
  margin-bottom: 10px;
}

section#aboutUsSecTwo {
  border: 1px solid #ddd;
}

#challengesSec th {
  padding: 18px;
  font-size: 18px;
  background: #0c4da2;
  color: #ffff;
  font-weight: 600;
}

#challengesSec td {
  padding: 20px;
}

#challengesSec td h5 {
  font-size: 16px;
  margin: 0 0 5px;
  font-weight: 600;
}

#challengesSec p {
  margin: 0;
}

/*-------------------Blog Details---------------------*/
.blog-banner {
  height: 350px;
  width: 100%;
  object-fit: cover;
  border-radius: 0px;
}

.sidebar-card h6 {
  margin: 0;
  padding: 8px 4px;
  /* background: red; */
}

.blog-meta {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.blog-content p {
  color: #555;
  line-height: 1.8;
}

.card-header {
  background: #0c4da2;
  color: #fff;
  border-radius: 0 !important;
}

.sidebar-card {
  background-color: #fff;
  border-radius: 0px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.category-card {
  background: #f8f9fa;
  border-radius: 0px;
  padding: 12px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #fff;
}

.category-card:hover,
.category-card.active {
  background-color: #f8f9fa;
  border: 1px solid #fff;
  border-bottom: 1px solid #e91e63 !important;
}

.blogHeighlghtSec {
  padding: 20px;
  background: #f2f2f2;
  border-left: 5px solid #e91e63;
}

.blogHeighlghtSec p {
  padding: 0;
  margin: 0;
}

.search-box input {
  border-radius: 50px 0 0 50px;
  border: 1px solid #dee2e6;
}

.search-box button {
  border-radius: 0 50px 50px 0;
}

.related-blog {
  display: none;
}

.related-blog.active {
  display: block;
}

.related-card {
  background: #fff;
  border: none;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
}

.related-card:hover {
  transform: translateY(-5px);
  text-decoration: none;
}

.related-card img {
  height: 100px;
  object-fit: cover;
  width: 100px;
  border-radius: 0;
}

.related-card .card-body {
  padding: 0 15px;
}

.related-card .card-body h6 {
  padding: 0;
}

.bloginsideImg img {
  border: 1px solid #ddd;
  margin: 0 0px;
}

.related-card h6 {
  font-size: 1rem;
}

.share-btn {
  display: inline-block;
  background-color: #fff;
  color: #0077b5;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.share-btn:hover {
  background-color: #005f86;
  color: #fff;
}

.blogContent {
  border: 1px solid #ddd;
  padding: 30px;
  position: relative;
}

.blogContent span.blogDate {
  left: 30px;
  top: 60px;
}

.blog-content {
  padding: 20px;
}

span.fw-semibold.category {
  padding: 10px;
  background: #f2f2f2;
  margin-bottom: 5px;
  display: inline-block;
}

/*----------------Success Stories-----------------*/
.nav-tabs .nav-link.active {
  background-color: var(--accent);
  color: #fff;
  border: none;
}

.nav-tabs .nav-link {
  border: none;
  color: #333;
}

#cardTabs button {
  border-radius: 0;
}

.blogsSec .card {
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  transition: transform 0.2s;
  border: 1px solid #ddd;
  border-radius: 0;
}

div#cardTabsContent a {
  text-decoration: none;
}

.blogsSec .card:hover {
  transform: translateY(-5px);
}

.blogsSec .card img {
  border-radius: 0px;
  height: 300px;
  object-fit: cover;
}

ul#cardTabs {
  border-bottom: none;
}

/*------------------Contact Us-------------------*/

section#mapSection {
  margin: 80px 0 0;
}

.contactForm {
  padding: 60px;
  background: #f2f2f2;
}

.contactForm .form-control {
  height: 45px;
  border-radius: 0;
}

.contactBG {
  background-image: url(../images/CTAImg1.jpg);
  background-size: cover;
  height: 500px;
  background-position: top;
}

.mapdetails {
  border: 1px solid #ddd;
}

.mapdetails .addDetails {
  padding: 20px;
}

.form-sec .form-control,
.form-sec .form-select {
  height: 45px;
  border-bottom: 1px solid #ddd;
  font-size: 13px;
  margin-bottom: 20px;
  border-radius: 2px;
}

.form-select {
  height: 45px;
  border-radius: 0;
}

.form-select:focus,
.form-control:focus {
  border-color: transparent;
  outline: 1px solid #ddd;
  box-shadow: none;
  border-radius: 0;
  height: 45px;
}

form#contactForm .mb-3 {
  position: relative;
}

textarea#message {
  height: auto;
}

form#contactForm .mb-3 .error {
  position: absolute;
  bottom: -16px;
  font-size: 10px;
  color: #ba0101;
}

.container.pad-80.contactpage {
  padding-bottom: 0;
}

.container.pad-80.contactpage .ctadetails {
  margin-top: 100px;
  background: #ffcb03;
  padding: 50px 30px 50px 50px;
  width: 80%;
}

.contactbasicinfo ul.list-unstyled li {
  margin: 15px 15px 0 0;
}

form#contactForm button#submitBtn {
  width: 100%;
  border-radius: 2px;
  height: 45px;
  background: #0c4da2;
  border: transparent;
}

div#consultEngineerModal .modal-header {
  background: #0c4da2;
  color: #ffff;
}

div#consultEngineerModal .modal-body {
  padding: 30px;
}

div#consultEngineerModal .modal-body .form-control {
  border-radius: 0;
  height: 45px;
  font-size: 14px;
}

div#consultEngineerModal .modal-body textarea#description {
  height: auto;
}

section#platformTwoMob,
section#platformFourMob {
  display: none;
}

#VisionSystemBanner {
  background-image: url("../images/VisionSystemBanner.jpg");
  background-size: cover;
  height: 400px;
}

#DigitalTwinBanner {
  background-image: url("../images/DigitalTwinsBanner.jpg");
  background-size: cover;
  height: 400px;
}

section#advantageSecTwo .card-body {
  padding: 20px 0 0;
}

@media (max-width: 991px) {
  .success-carousel .success-card {
    flex: 0 0 calc(50% - 20px);
  }
}

/* Responsive visible counts (we compute visible dynamically but this helps card width) */
@media (min-width: 992px) {
  /* desktop: show 3 */
  /* .industry-card {
    width: calc((100% - (var(--card-gap) * 2)) / 3);
  } */
}

@media (min-width: 768px) and (max-width: 991px) {
  /* tablet: show 2 */
  /* .industry-card {
    width: calc((100% - (var(--card-gap))) / 2);
  } */
}

@media (max-width: 767px) {
  /* mobile: show 1 */
  .industry-card {
    width: 100%;
  }

  .icon-box {
    left: 16px;
  }

  .blog-img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .testimonial-item {
    flex: 0 0 100%; /* mobile: 1 card per view */
  }
}

@media (max-width: 575px) {
  .pad-80,
  section.testimonial-section,
  .pad-100 {
    padding: 30px;
  }

  .hero-content {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .testimonial-item {
    width: 100%; /* 1 card per view on mobile */
  }

  br {
    display: none;
  }

  section#advantageSec {
    padding: 20px;
  }

  #ctaSec .container {
    width: 85%;
  }

  .success-carousel .success-card {
    flex: 0 0 100%;
  }

  .ctacontent {
    padding: 25px;
  }

  .hero-image img {
    width: 100%;
    height: 250px;
  }

  .primaryBG {
    background: var(--title) !important;
  }

  h2,
  h2 .headingcolor {
    font-size: 24px;
  }

  section#StatisticsSec .row.g-0.align-items-center {
    flex-wrap: nowrap;
  }

  #ctaSec,
  #homeAboutSec,
  #offeringFirstSec {
    padding-bottom: 30px;
  }

  .info-card,
  .info-card .content,
  .text-btn-wrap {
    position: relative;
    display: grid !important;
    gap: 10px;
  }

  section#FooterSection .container.pad-80 {
    padding: 30px !important;
  }

  #AboutpageBanner,
  #platformBanner,
  #blogBanner {
    height: 200px;
    background-position: center;
  }

  section#platformOne,
  section#platformThree {
    padding: 0;
  }

  section#platformTwo,
  section#platformFour {
    padding: 0;
  }

  section#platformTwo,
  section#platformFour {
    display: none;
  }

  section#platformTwoMob,
  section#platformFourMob {
    display: block;
  }

  section#platformOne .bgColor,
  section#platformTwo .bgColor,
  section#platformThree .bgColor,
  section#platformFour .bgColor,
  section#platformFourmob .bgColor,
  section#platformTwomob .bgColor {
    padding: 30px;
  }

  #platformOne .bgImg,
  #platformThree .bgImg,
  #platformTwo .bgImg,
  #platformTwomob .bgImg,
  #platformFour .bgImg,
  #platformFourmob .bgImg,
  #contactBanner,
  .contactBG {
    height: 250px;
  }

  section#mapSection {
    margin: 30px 20px;
  }

  .contactForm {
    padding: 25px;
    background: #f2f2f2;
  }

  div#consultEngineerModal .modal-body {
    padding: 20px;
  }

  section#mapSection .col-md-4 {
    margin-bottom: 30px;
    padding: 0;
  }

  #contactBanner {
    background-position: right;
  }

  section#platformFourmob {
    margin-bottom: 30px;
  }

  .blogsSec p.text-muted.w-75 {
    width: 100% !important;
  }

  section.blogsSec.pad-80 .container {
    padding: 0;
  }

  section.blogsSec.py-5.bg-light {
    padding: 30px 15px !important;
  }

  div#cardTabsContent h5.card-title {
    font-size: 16px;
  }

  .buildSec img{
    margin-bottom: 30px;
  }

  .Homecard.middleCard {
     border: 1px solid #ddd;
}

section#homePara {
    margin-bottom: 30px;
}
}
