/* 
.navbarContainer {
  height: auto;
} */

/* 
.section-index .col-md-6{
} */

h1,h2,h3,h4{
  color: #002551;
}
p, li{
  color: #141414;
  font-size: 17px;
}
.mainVideoContainer {
  height: auto;
  position: relative;
  top: 5px;
}

/* aboul embel */
.section-info .container {
  position: relative;
  z-index: 1;
}

.section-info .card {
  width: 87%;
  text-align: center;
  background: center/50% no-repeat;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: inset var(--cardWidthMinus) var(--cardWidthMinus) 0 #f8f9fa,
    inset var(--cardWidth) var(--cardWidthMinus) 0 rgb(42, 203, 248),
    inset var(--cardWidthMinus) var(--cardWidth) 0 blue,
    inset var(--cardWidth) var(--cardWidth) 0 orange,
    0 0 20px rgb(236, 236, 236);
  transition: box-shadow ease-in-out 0.6s, color ease-in-out 0.5s;
  border-radius: 10px;
  height: 80%;
  padding: 10px 0;

}

.section-info .card:hover {
  box-shadow: inset 0 0 0 transparent, inset 0 0 0 transparent,
    inset 0 0 0 transparent, inset 0 0 0 transparent, 0 0 20px rgb(90, 90, 90);
  color: transparent;
}

.section-info .card-body {
  width: 100%;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  text-align: center;
}

.section-info .card-title {
  font-size: 1.5rem;
  color: #00377a;
  margin: 10px 0 0 0;
}

.section-info .card-text {
  font-size: 15px;
  color: #3d3d3d;
}

:root {
  --cardWidth: min(300px, 30vw);
  --cardWidthMinus: calc(-1 * var(--cardWidth));
}
 
.section-info .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 200%;
  position: relative;
  left: 12.5em;
}

.section-info .col-lg-6,
.section-info .col-md-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


/* Media queries for responsive layout */
@media (max-width: 1200px) {
  .section-info .row {
    flex-direction: column;
    align-items: center;
    
  }

  .section-info .col-lg-6,
  .section-info .col-md-6 {
    width: 10em;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    right: 2.5em;
  }
}

@media (max-width: 992px) {
  .section-info .row {
    flex-direction: column;
    align-items: center;
  }

  .section-info .col-md-6,
  .section-info .col-sm-12 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .section-info .row {
    flex-direction: column;
    align-items: center;
    position: relative;
    right: 5em;
  }

  .section-info .col-md-6,
  .section-info .col-sm-12 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}  

/* about embel ends */



/* carousel */
.about-us-carousel .carousel-container {
  overflow: hidden;
  white-space: nowrap;
}

.about-us-carousel .owl-carousel {
  display: flex;
  animation: scrollRightToLeft 20s linear infinite;
}

.about-us-carousel .owl-carousel-item {
  flex: 0 0 auto;
  padding: 0 15px;
}

@keyframes scrollRightToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.about-us-carousel .owl-carousel .owl-carousel-item {
  margin-right: 20px;
  transition: all 0.1s ease;
}

.about-us-carousel .owl-carousel .owl-carousel-item:hover {
  transform: scale(1.1);
}

.about-us-carousel .owl-carousel .owl-carousel-item:last-child {
  margin-right: 0;
}

.about-us-carousel .owl-carousel .owl-carousel-item img {
  max-width: 100%;
  height: auto;
}



/* About embel Atmanirbhar start */
.about-section {
  position: relative;
  background: #f8f9fa;
  padding: 80px 0;
  /* animation: fadeIn 2s ease-in; */
  overflow: hidden;
}

.about-section .wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12em;
  z-index: -1;
}


.about-section .wave:nth-of-type(2) {
  bottom: -1.25em;
  /* animation: wave 18s linear reverse infinite; */
}

.about-section .wave:nth-of-type(3) {
  bottom: -2.5em;
  /* animation: wave 20s -1s reverse infinite; */
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.about-section .section-title {
  color: #00377a;
}

.about-section .section-description {
  color: rgb(55, 55, 55);
  max-width: 80%;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-section .card {
  width: 100%;
  text-align: center;
  background: center/50% no-repeat;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: inset var(--cardWidthMinus) var(--cardWidthMinus) 0 #f8f9fa,
    inset var(--cardWidth) var(--cardWidthMinus) 0 rgb(42, 203, 248),
    inset var(--cardWidthMinus) var(--cardWidth) 0 blue,
    inset var(--cardWidth) var(--cardWidth) 0 orange,
    0 0 20px rgb(197, 55, 55);
  transition: box-shadow ease-in-out 0.6s, color ease-in-out 0.5s;
  border-radius: 10px;
  height: 100%;
}

.about-section .card:hover {
  box-shadow: inset 0 0 0 transparent, inset 0 0 0 transparent,
    inset 0 0 0 transparent, inset 0 0 0 transparent, 0 0 20px rgb(90, 90, 90);
  color: transparent;
}

.about-section .card-body {
  width: 80%;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  text-align: center;
}

.about-section .card-title {
  font-size: 1.5rem;
  color: #00377a;
  margin-bottom: 10px;
}

.about-section .card-text {
  font-size: 1rem;
  color: #3d3d3d;
}

:root {
  --cardWidth: min(300px, 30vw);
  --cardWidthMinus: calc(-1 * var(--cardWidth));
}

.about-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.about-section .col-lg-6,
.about-section .col-md-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-section .card-container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
}

.about-section h2,
.about-section p {
  text-align: center;
}

.about-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    315deg,
   orangered 3%,
    rgb(39, 116, 193) 38%,
    rgb(255, 146, 30) 68%,
    rgb(240, 229, 229) 98%
  );
  /* animation: gradient 15s ease infinite; */
  background-size: 400% 400%;
  background-attachment: fixed;
  border-radius: 10px;
}

@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.about-section .wave {
  background: rgb(255 255 255 / 25%);
  border-radius: 1000% 1000% 0 0;
  position: absolute;
  width: 200%;
  height: 12em;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
  bottom: -2em;
  left: 0;
  z-index: -1;
}

.about-section .wave:nth-of-type(2) {
  bottom: -2.5em;
  /* animation: wave 18s linear reverse infinite; */
  opacity: 0.8;
}

.about-section .wave:nth-of-type(3) {
  bottom: -3em;
  /* animation: wave 20s -1s reverse infinite; */
  opacity: 0.9;
}

@keyframes wave {
  0% {
    transform: translateX(1);
  }
  25% {
    transform: translateX(-25%);
  }
  50% {
    transform: translateX(-50%);
  }
  75% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(1);
  }
}

/* about embel Atmanirbhar start */

/* Responsive */

@media (max-width: 1200px) {
  .carousel-container {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .owl-carousel {
    animation: scrollRightToLeft 20s linear infinite;
  }

  .owl-carousel .owl-carousel-item {
    margin-right: 15px;
  }

  .owl-carousel .owl-carousel-item img {
    max-width: 100%;
    height: 5em;
  }

  .technologies-icon img {
    height: auto;
  }
}

@media (max-width: 768px) {
  .img-container {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
  }

  .img-container .card-container {
    flex-direction: column;
    text-align: center;
  }

  .img-container .card-container .imgBx {
    width: 100%;
    height: auto;
  }

  .img-container .card-container .content-sec {
    width: 100%;
    padding: 15px;
  }

  .img-container .card-container .content-sec h2 {
    text-align: center;
  }

  .owl-carousel {
    animation: scrollRightToLeft 30s linear infinite;
  }

  .about-us-carousel .owl-carousel .owl-carousel-item {
    margin-right: 10px;
  }

  .about-us-carousel .technologies-icon span {
    width: 3.2pc;
    height: 3pc;
  }
  
}

@media (max-width: 576px) {
  
 

  .mainVideo{
    position: relative;
    object-fit: cover;
    top: 2em;
  }
  .fact{
    position: relative;
    top: 3em;
  }
  
  .about-us-carousel .owl-carousel {
    animation: scrollRightToLeft 20s linear infinite;
  }

  .about-us-carousel .owl-carousel .owl-carousel-item {
    margin-right: 5px;
  }
  .img-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  /* service container-card1 */

 
  /* end */
  
  /* .service-card2 {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(100% - 20px);
    max-width: 400px;
    margin-bottom: 20px;
  }

  .service-card2 a {
    color: inherit;
  }

  .service-logo2 {
    margin-bottom: 20px;
  }

  .service-logo2 i {
    display: block;
    margin: 0 auto;
  } */

  .container-fluid {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .media {
    min-height: 200Spx;
    padding: 15px;
  }

  .media .icon {
    margin-bottom: 10px;
  }

  .media-body h3 {
    font-size: 18px; /* Adjust heading size */
    margin-bottom: 10px;
  }

  .media-body p {
    font-size: 14px; /* Adjust paragraph size */
    margin-bottom: 10px;
  }

  .media img {
    width: 50px; /* Adjust image size */
    height: 50px;
  }

  .technologies-icon img {
    width: auto;
  }
}

body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  /* .main-service2 {
    position: relative;
    right: 3rem;
  }

  .service-card2 {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(100% - 20px);
    max-width: 400px;
    margin-bottom: 20px;
  }

  .service-card2 a {
    color: inherit;
  }

  .service-logo2 {
    margin-bottom: 20px;
  }

  .service-logo2 i {
    display: block;
    margin: 0 auto;
  } */

  .container-fluid {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .media {
    min-height: 200px;
    /* Decrease height on smaller screens */
    padding: 15px;
  }

  .media .icon {
    margin-bottom: 10px;
  }

  .media-body h3 {
    font-size: 18px;
    /* Adjust heading size */
    margin-bottom: 10px;
  }

  .media-body p {
    font-size: 14px;
    /* Adjust paragraph size */
    margin-bottom: 10px;
  }

  .media img {
    width: 50px;
    /* Adjust image size */
    height: 50px;
  }
}
 
.small-business-img img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  /* index video */
  .mainVideoContainer {
    object-fit: cover;
    position: relative;
    top: 3em;
  }
  /* index video ends */

  /* aboutus */

  .about-section {
    width: fit-content;
  }
  .section-title {
    font-size: 30px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
  }

  .section-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
  }

  /* index service */
  .hero-content h2 {
    font-size: 30px;
  }

  .hero-content {
    flex: 1;
    margin: 0px 25px;
    animation: fadeInup 2s ease;
  }

  .hero-content p {
    font-size: 16px;
  }
  .small-business-img {
    text-align: center; /* Center align image */
  }

  #brand-name .container-brand {
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    /* Center align items horizontally */
  }

  #vertical-line {
    display: none;
  }
}

@media (max-width: 768px) {
 
}

@media (max-width: 576px) {
  .service-logo1 i {
    font-size: 4.5rem;
  }
}






/* IOT PRODUCTS */
.wow .col-lg-4{
  margin-bottom: 2em;
  transition: all .3s ease;
}
.wow .col-lg-4:hover{
  transform: translateY(-2em);
}




/* Software products 3cards */
.card-section {
    position: relative;
}

.container-3card {
    display: flex;
    overflow: hidden;
    width: 90%;
    margin: 0 10px;
}

.box-card {
    display: none;
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.5s ease-in-out;
    height: 10em;
}

.box-card.active {
    display: block;
}

.nav-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: flex;
    width: 15px;
    height: 15px;
    margin: 10px 0;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.6s ease;
}

.dot:hover, .dot.active {
    background-color: #5c5c5c;
}


@media (max-width: 767px) {
  .container-3card {
      flex-direction: column;
      height: auto; 
  }

  .box-card {
      width: 80%;
      height: auto;
  }

  .dot {
      width: 20px; 
      height: 20px; 
      margin: 15px 10px;
  }
}

/* Software products 3cards ends*/
