/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);

/*-- (Global Style For Full Website Start Here) --*/

:root {
    --main-color: #24caac;
    --color-1: #eaa023;
    --color-2: #e91e63;
    --color-3: #df543b;
    --color-4: #CC2EFA;
    --color-5: #E30B17; 
    --color-6: #000000; /*--Vishal--*/	
    --color-7: #4a4a4a; /*--Vishal--*/	
    --dark-800: #24292d;
    --dark-700: #2f363e;
    --white-900: #ffffff;
    --grey-700: rgb(128, 129, 131); /*Add Color By Vishal*/	
    --blue-800: rgb(44, 48, 147); /*Add Color By Vishal*/
    --white-800: rgba(255, 255, 255, 0.8);
    --shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    /* Helvetica, 'Helvetica Neue', Arial,*/
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
    overflow-x: hidden;
    /*background: var(--dark-800);*/
    background: var(--white-900);/*--Vishal--*/
    /*color: var(--white-900);*/
    color: var(--dark-700);/*--Vishal--*/

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
}

::before,
::after {
    box-sizing: border-box;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

p {
    font-size: 16px;
    /*color: var(--white-900);*/
    color: var(--color-6);
    text-align: justify;
}

p1 {
    font-size: 16px;
    color: var(--white-900);
    text-align: justify;
}/*--Vishal--*/

input[name=css-tabs] {
    display: none;
}

img {
    vertical-align: middle;
    max-width: 100%;
}


@keyframes spin01 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes zoomOutIn01 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }
}


.container1 {
    max-width: 1170px;
    margin: auto;
}

.row1 {
    display: flex;
    flex-wrap: wrap;
}

.justify-content-btween {
    justify-content: space-between;
}

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

.algin-content-center {
    align-content: center;
}

.h-100 {
    min-height: 100vh;
}

.sec-padding {
    padding: 80px 0;
}

.section-title {
    width: 100%;
    padding: 0 10px;
}

.section-title h2 {
    text-align: center;
    text-transform: capitalize;
    font-size: 35px;
    /*color: var(--white-900);*/
    color: var(--dark-700);/*--Vishal--*/
    font-weight: 600;
}

.section-title h2 span {
    position: relative;
}

.section-title h2 span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    /*background-color: var(--main-color);*/
    background-color: var(--color-5);/*--Vishal--*/
    transform: skewY(-3deg);
}

.section-title h3 {
    text-align: center;
    text-transform: capitalize;
    font-size: 35px;
    color: var(--white-900);
    font-weight: 600;
}/*--Vishal--*/

.section-title h3 span {
    position: relative;
}/*--Vishal--*/

.section-title h3 span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-5);/*--Vishal--*/
    transform: skewY(-3deg);
}/*--Vishal--*/

/*-- (Global Style For Full Website Ends Here) --*/


/*-- (Header Section Start Here ) --*/
/*.header {
    background-color: var(--dark-800);
    background: linear-gradient(to top right, var(--white-900) -4%, var(--dark-800) 40%);
    padding: 10px 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    border-bottom: 1px solid var(--dark-700);
}*/

.header {
    background-color: var(--white-900);
    background: linear-gradient(to top right, var(--white-900) -4%, var(--white-900) 40%);
    font-weight: 500;
    padding: 10px 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    border-bottom: 1px solid var(--dark-700);
    color: var(--dark-700);
}/*--Vishal--*/

.header .nav-link {
    color: var(--color-6) !important;
}/*--Vishal--*/

/*.header .logo {
    padding: 5px 30px;
}

.header .logo a {
    font-size: 24px;
}
*/

/* Top Navigation Bar / Menu Style */
.navbar {
    padding-top: 0.01em;
    /* 0px does not look good on small screens */
    padding-bottom: 0.01rem;
    /* Just because I am using big size font */
    line-height: 1em;
}

/* Top Navigation Bar overwrite default Bootstrap Navbar Properties*/
.navbar-custom {
    font-size: 15px;
    transition: all 0.5s ease;
}

/* change the brand and text color */
.navbar-custom .navbar-brand,
.navbar-custom .navbar-text {
    color: var(--white-900);
}

/* change the link color */
.navbar-custom .navbar-nav .nav-link {
    color: var(--white-900);
    text-transform: initial;

}

/* change the color of active or hovered links */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link {
    /*color: var(--main-color); Change By Vishal*/
    color: var(--grey-700);
    border-bottom-style: groove;
    /*border-color: var(--main-color); Change By Vishal*/
    border-color: var(--grey-700);
    transition: all 0.5s ease;
    color: #f9f9f9;
}
/*-- (Header Section Ends Here) --*/


/*-- (Sticky Side Nav Bar Start) --*/
.icon-bar {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9999;
    padding: 10px 5px 10px;
    /*background: #2f363e; Change By Vishal*/
    background: black;
    transition: opacity 0.5s ease;/*Add By Vishal*/
    opacity: 1;	/*Add By Vishal*/
}

/* Add By Vishal*/
.icon-bar.hide {
    opacity: 0;
    pointer-events: none;
} 

.icon-bar a {
    display: block;
    border: 1px solid transparent;
    height: 35px;
    width: 35px;
    /*color: var(--main-color); Change By Vishal*/
    color: var(--grey-700);
    line-height: 35px;
    text-align: center;
    font-size: 16px;
    transition: all 0.5s ease;
    border-radius: 50%;
    margin-top: 2px;
}

.icon-bar a:hover {
    /*border-color: var(--main-color); Change By Vishal*/
    border-color: var(--grey-700);
}

.sticky-nav {

    border-radius: 50%;
    position: relative;
}
/*-- (Sticky Side Nav Bar End) --*/


/*-- (Index Page Image Slider Start Here) --*/
.carousel-inner img {
    width: 100%;
    margin-top: 56px;
}

.carousel-caption {
    position: absolute;
    max-width: 600px;
    bottom: 20px;
    z-index: 10;
    color: var(--color-5);
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    /*border-top: groove;*/
    border-top: groove var(--color-5);
    padding: 5px 20px;
    margin: 0 auto;
}

.carousel-item .carousel-caption h6 {
    color: var(--main-color);
    text-align: center;
    font-size: 19px;

}

.carousel-item .carousel-caption p {
    color: var(--white-900);
    text-align: center;

}
/*-- (Index Page Image Slider Ends Here) --*/


/*-- (About Us Section Start Here) --*/
.typing {
    font-size: 20px !important;
}

.typing h2 {
    position: relative;
    /*color: var(--color-2) !important;*/
    color: var(--blue-800) !important;
    font-size: 20px !important;
    font-weight: 600 !important;
}

.bg-image {
    /* The image used */
    background-image: url("../img/titlebackground.jpg");

    /* Add the blur effect */
    /*filter: blur(1px);
    -webkit-filter: blur(1px);
*/
    /* Full height */
    height: 250px;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 2px solid black;

}

/* Position text in the middle of the page/image */
.bg-text {
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/opacity/see-through */
    color: white;
    font-weight: bold;
    border: 3px solid #f1f1f1;
    position: absolute;
    width: 50%;
    top: 25%;
    left: 50%;
    padding: 5px;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
}

.about-section {
    /*background-color: var(--dark-800);*/
    background-color: var(--white-900);/*--Vishal--*/
    overflow: hidden;
    padding: 20px 0;
}

.about-text1 {
    width: 100%;
    padding: 0 15px;
}

.about-text1 h1 {
    font-size: 30px;
    /*color: var(--main-color);*/
    color: var(--dark-700);/*--Vishal--*/
    text-transform: capitalize;
    line-height: 1.2;
}

.about-text h1 {
    font-size: 30px;
    /*color: var(--main-color);*/
    color: var(--dark-700);/*--Vishal--*/
    text-transform: capitalize;
}

.about-text h2 {
    font-size: 18px;
    font-weight: 300;
    color: var(--white-900);
    margin: 5px 0 10px;
    text-align: justify;
}

.about-text,
.about-img {
    width: 50%;
    padding: 0 10px;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 30px;
    text-transform: capitalize;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-size: 16px;
    cursor: pointer;
    font-family: inherit;
}

.btn-1 {
    background-color: var(--grey-700);
    /*background-color: var(--main-color); Change By Vishal*/
    color: var(--white-900);
}

.btn-1:hover {
    background-color: transparent;
    /*border-color: var(--main-color);
    color: var(--main-color); Change By Vishal*/
    border-color: var(--grey-700);
    color: var(--grey-700);
}

.about-img-inner {
    max-width: 65%;
    margin: auto;
    position: relative;
}

.about-img-inner img {
    /*width: 100%; Change By Vishal*/
    width: 60%;
    animation: zoomOutIn01 7s linear infinite;
}

/* Add Code By Vishal For Image Slides */
.about-img1 {
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.about-img-inner1 {
  height: 255px;
  overflow: hidden;
  position: relative;
  max-width: 620px;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.slider-wrapper img.active {
  opacity: 1;
  z-index: 1;
}

/*Add Vishal For About Image On Prev/Next Button*/
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.dots-container {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--grey-700);
}
/* Add Code By Vishal For Image Slides */


/*Add Code By Vishal For Images Zoom In Out With Prev/Next Btn */
.zoom-overlay .dots-container {
  display: none !important;
}

.zoom-mode {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-slider-container {
  width: 90vw;
  height: 90vh;
  position: relative;
  overflow: hidden;
}

.zoom-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.zoom-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  cursor: zoom-out;
}

.zoom-wrapper img.active {
  opacity: 1;
  z-index: 1;
}

.zoom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: var(--blue-800);
  font-size: 24px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  z-index: 10;
  transition: background 0.3s ease;
}

.zoom-arrow:hover {
  background-color: var(--blue-800);
  color: #fff;  
}

.zoom-prev {
  left: 10px;
}

.zoom-next {
  right: 10px;
}

.zoom-close {
  position: absolute;
  top: 10px;
  right: 30px;
  width: 36px;
  height: 36px;
  background-color: #fff;
  color: var(--blue-800);          
  font-size: 20px;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  transition: background 0.3s ease;
}

.zoom-close:hover {
  background-color: var(--blue-800);
  color: #fff;     

}

@media (max-width: 768px) {
  .zoom-arrow {
    font-size: 28px;
  }
}
/*Add Code By Vishal For Images Zoom In Out With Prev/Next Btn */


/*.about-modules {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: spin01 30s linear infinite;
}

.about-modules-item {
    position: absolute;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--white-900);
}

.about-modules-item:nth-child(1) {
    left: 10px;
    top: calc(50% - 40px);
    background-color: var(--color-1);
}

.about-modules-item:nth-child(2) {
    right: 10px;
    top: calc(50% - 40px);
    background-color: var(--color-2);
}

.about-modules-item:nth-child(3) {
    top: -10px;
    left: calc(50% - 40px);
    background-color: var(--main-color);
}

.about-modules-item:nth-child(4) {
    bottom: -10px;
    right: calc(50% - 40px);
    background-color: var(--dark-700);
} Remove By Vishal*/


/*Add Code By Vishal For Child Item*/
.about-modules-static {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
  transform: translateX(-50px);
}

.about-modules-static .about-modules-item {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  color: white;
  background-color: var(--grey-700);
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
  user-select: none;
  cursor: default;
}

.about-modules-static .about-modules-item:nth-child(1) {
  background-color: var(--color-1);
}
.about-modules-static .about-modules-item:nth-child(2) {
  background-color: var(--color-2);
}
.about-modules-static .about-modules-item:nth-child(3) {
  background-color: var(--blue-800);
}
.about-modules-static .about-modules-item:nth-child(4) {
  background-color: var(--grey-700);
}

/* Responsive for small screens */
@media (max-width: 576px) {
  .about-modules-static {
    gap: 15px;
  }
  .about-modules-static .about-modules-item {
    width: 50px;
    height: 50px;
    font-size: 11px;
  }
}
/*-- (About Us Section Ends Here) --*/


/*-- (Mission / Vision / Value Section Start Here) --*/
.mission-section {
    /*background-color: var(--dark-800);*/
    background-color: var(--white-900);/*--Vishal--*/
    padding-bottom: 50px;
    padding-top: 10px;
}

.mission-item {
    width: calc((100% / 3) - 30px);
    margin: 0 15px 30px;
    padding: 20px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow);
    
}

.mission-item::before,
.mission-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*background-color: var(--dark-700);*/
    background-color: var(--white-900); /*17-06-2025*/
    z-index: -1;
    transition: all 0.5s ease;

}

.mission-item:hover::before {
    transform: scale(1, 0);

}

.mission-item:hover::after {
    transform: scale(0, 1);
}

/*.mission-item:nth-child(1) {
    background-color: var(--color-1);
}

.mission-item:nth-child(2) {
    background-color: var(--color-2);
}

.mission-item:nth-child(3) {
    background-color: var(--main-color);
}

.mission-item:nth-child(4) {
    background-color: var(--color-3);
}

.mission-item:nth-child(5) {
    background-color: var(--color-4);
}effect Remove By Vishal*/

.mission-item .icon {
    font-size: 30px;
    /*color: var(--main-color); Change By Vishal*/
    color: var(--grey-700);
    margin: 0 0 10px;
    /*transition: all 0.5s ease; effect Remove By Vishal*/
}

/*.mission-item:hover .icon {
    color: var(--white-900);
}effect Remove By Vishal*/

.mission-item h3 {
    /*color: var(--white-900);*/ 
    color: var(--dark-800); /*17-06-2025*/
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 10px;
}

/*-- (Mission / Vision / Value Section Ends Here) --*/


/*-- (Recent Activities Section Starts Here) --*/
.activity-section {
    /*background-color: var(--dark-800);*/
    background-color: var(--white-900);/*---Vishal---*/
    padding-bottom: 50px;
}

.activity-title {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 60px;

}

.activity-item {
    width: calc(45% - 20px);
    margin: 5px 20px 5px;
}

.activity-item h3 {
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    /*color: var(--color-1);*/
    color: var(--dark-700);/*--Vishal--*/
    margin: 10px 0 5px;
}

.activity-item li {
    /*color: white;*/
    color: black;/*--Vishal--*/
}

.activity-img {
    border-radius: 7px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.activity-img img {
    width: 100%;
}

.activity-info {
    padding: 15px 0;
}

.activity-item:hover .activity-img {
    transform: scale(0.9);
    box-shadow: var(--shadow);
}

/*-- (Recent Acitivities Section Ends Here) --*/


/*-- (Clients Review - What Our Client Says Start) --*/
.reviews-section {
    background-color: var(--dark-800);
    padding-bottom: 50px;
}

.review-item {
    width: 50%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.review-item img {
    max-width: 100px;
    border: 5px solid var(--dark-700);
    border-radius: 50%;
    margin-bottom: 15px;
    transition: all 0.5s ease;
}

.review-item:hover img {
    transform: translate(30px) rotate(30deg);
    box-shadow: var(--shadow);
}

.review-item p {
    font-size: 16px;
    color: var(--white-900);
    margin: 0 0 12px;
}

.review-item p1 {
    font-size: 16px;
    color: var(--color-6);
    margin: 0 0 12px;
}/*--Vishal--*/

.review-item p i {
    font-size: 8px;
}

.review-item p .fa-quote-left {
    margin-right: 10px;
}

.review-item p .fa-quote-right {
    margin-left: 10px;
}

.review-item h3 {
    font-size: 18px;
    /*color: var(--main-color); Change By Vishal*/
    color: var(--blue-800);
    font-weight: 500;
    margin: 0 0 2px;
    text-transform: capitalize;
}

.review-item span {
    display: block;
    font-size: 16px;
    /*color: var(--color-1); Change By Vishal*/
    color: var(--grey-700);
    font-weight: 500;
}

/* Add By Vishal For Client logo Img Zoom Out Effect On Hover*/
.img-thumbnail {
  transition: transform 0.3s ease;
}

.img-thumbnail:hover {
  transform: scale(1.15);
}

/*-- (Clients Review - What Our Client Says Ends) --*/


/*-- (Services Section Start Here ) --*/
.services-section {
    /*background-color: var(--dark-800);*/
    background-color: var(--white-900);/*--Vishal--*/
    padding-bottom: 80px;
    /*padding: 0 20px 50px;*/
}

.services-main {
    width: 100%;
    min-height: 300px;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.services-main:hover .services {
    transform: translateY(-30px);
}

.services-main:hover img {
    transform: rotate(360deg);
}

.services-item {
    width: calc((100% / 3) - 30px);
    margin: 100px 10px 20px;
    padding: 0 10px 50px;

}

.services {
    /*background: var(--dark-700);*/
    background: var(--white-900);/*Deepak*/
    padding: 30px;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    z-index: 1;
    transition: transform .8s;
}

.services-logo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: -90px auto 0;
    background: #fff;
    /*border: 18px solid var(--dark-800); Change By Vishal*/
    border: 18px solid var(--grey-700);
}

.services-logo img {
    width: 50px;
    margin-top: 20px;
    transition: transform 1s;
}

.services h4 {
    height: 30px;
    width: 80%;
    /*background: var(--dark-700);*/
    background: var(--white-900); /*Deepak*/
    margin: 30px auto;
    position: relative;
    color: var(--color-6);
    font-size: 20px;
}

.services h4::after {
    content: '';
    width: 40px;
    height: 30px;
    /*background: linear-gradient(to right, var(--dark-700), var(--main-color)); Change By Vishal*/
    background: linear-gradient(to right, var(--dark-700), var(--blue-800)); 
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: -1;
}

.services h4::before {
    content: '';
    width: 40px;
    height: 30px;
    /*background: linear-gradient(to right, var(--main-color), var(--dark-700)); Change By Vishal*/
    background: linear-gradient(to right, var(--blue-800), var(--dark-700));
    position: absolute;
    left: -5px;
    bottom: -5px;
    z-index: -1;
}

/*-- (Services Section Ends Here) --*/


/*-- (Our Team section Start Here) --*/
.team-section {
    /*background-color: var(--dark-800);*/
    background-color: var(--white-900);/*--Vishal--*/

}

.team-section .owl-carousel .card {
    /*background: #222;*/
    background: #ffffff;
    border-radius: 6px;
    /*padding: 20px 25px;*/
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 25px 25px;
}

.team-section .owl-carousel .card:hover {
    /*background: crimson; effect Remove By Vishal*/
    /*background: var(--white-900);*/
} 

.team-section .owl-carousel .card .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-section .owl-carousel .card:hover .box {
    transform: scale(1.05);
}

.team-section .owl-carousel .card .text {
    font-size: 18px;
    font-weight: 500;
    margin: 15px 0 7px 0;
    /*color: var(--white-900); */
    color: var(--dark-800); /*Deepak*/ 
    
}

.team-section .owl-carousel .card .designation {
    font-size: 16px;
    font-weight: 500;
    color: var(--blue-800);
    /*color: var(--dark-800); /*Deepak*/ 
}

.team-section .owl-carousel .card h4 {
    font-size: 15px;
    font-weight: 300;
    margin: 10px 0 7px 0;
    /*color: var(--main-color);*/
    color: var(--dark-800); /*Deepak*/ 
    text-transform: capitalize;
    text-align: justify;

}

.team-section .owl-carousel .card img {
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
    /*border: 5px solid crimson;*/
    border: 5px solid var(--grey-700);
    transition: all 0.3s ease;
}

.team-section .owl-carousel .card:hover img {
    /*border-color: #fff; Change By Vishal*/
    border-color: var(--grey-700);
}

.team-section .owl-carousel .active span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    /*background: var(--color-2); !important; Change By Vishal*/
    background: var(--grey-700); !important;
    display: block;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

/*-- (Our Team Section End Here) --*/


/*-- (Products Section Start Here) --*/
/* change border radius for the tab , apply corners on top*/
.product-section {
    padding-top: 2px;
    padding-bottom: 80px;

}

main {
    /*max-width: 100%;
    
    padding: 10px;
    background: #3F3F3D;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);*/
    max-width: 100%;
    /*900px;*/
    margin: 2px auto;
    /*background: #3F3F3D;*/
    background: var(--white-900);/*--Vishal--*/
    padding: 30px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.prdtabpage {
    padding: 0 0 0 10px;
    width: calc(100% + 100px);
    margin-left: -50px;
    /*background: #2B2A28;*/    
    background: var(--white-800);/*--Vishal--*/
    height: 90px;
    /*border-bottom: 5px solid #EB4E01;*/
    border-bottom: 5px solid var(--grey-700);/*--Vishal*/
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.prdtabpage::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -100;
    width: 100%;
    left: 0;
    margin-top: 16px;
    height: 90px;
    /*background: #2B2A28;*/
    background: var(--white-800);/*--Vishal--*/
    /*border-bottom: 5px solid #EB4E01;*/
    border-bottom: 5px solid var(--grey-700);/*--Vishal*/
}

.prdtabpage::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    height: 90px;
    width: 108px;
    /*background: #EB4E01;*/
    /*background: var(--color-1);*/
    transition: transform 400ms;
}

.product2col {
    /*float: left;*/
    flex: 50%;
    padding-left: 25px;
    padding-bottom: 25px;
}

.product-heading {
    /*color: var(--main-color);*/
    color: var(--blue-800);/*--Vishal--*/
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 10px 0 10px;

}

.nav-item button {
    /*color: var(--white-900);*/
    color: var(--dark-700);/*--Vishal--*/
    font-size: 12px;
    padding: 11px 3px;
}

.nav-item button>img {
     margin-bottom: 3px;
}

.nav-item button:hover {
    transition: all 0.5s ease;
    /*color: var(--main-color);*/
    color: var(--color-6);/*--Vishal--*/
}

.prdtabpage .nav-item .nav-link.active {
    /*background-color: #EB4E01;*/
    background-color: var(--grey-700);/*--Vishal--*/
    height: 100%;
    transition: all 0.5s ease;


}

/*
.tab-content {
    padding: 10px;
}*/




/*css to add hamburger and create dropdown/*/
.nav-tabs.nav-tabs-dropdown,
.nav-tabs-dropdown {
    @media (max-width: @screen-xs-max) {
        border: 1px solid @nav-tabs-border-color;
        border-radius: @border-radius-base;
        overflow: hidden;
        position: relative;

        &::after {
            content: "☰";
            position: absolute;
            top: 8px;
            right: 15px;
            z-index: 2;
            pointer-events: none;
        }

        &.open {
            a {
                position: relative;
                display: block;
            }

            >li.active>a {
                background-color: @nav-link-hover-bg;
            }
        }


        li {
            display: block;
            padding: 0;
            vertical-align: bottom;
        }

        >li>a {
            position: absolute;
            top: 0;
            left: 0;
            margin: 0;
            width: 100%;
            height: 100%;
            display: inline-block;
            border-color: transparent;

            &:focus,
            &:hover,
            &:active {
                border-color: transparent;
            }
        }

        >li.active>a {
            display: block;
            border-color: transparent;
            position: relative;
            z-index: 1;
            /*background: #fff;*/
            background: var(--color-6);/*--Vishal--*/

            &:focus,
            &:hover,
            &:active {
                border-color: transparent;
            }

        }
    }
}

/*-- (Products Section Ends Here) --*/


/*-- (News & Media Section Starts Here) --*/
.newsmedia-section {
    /*background-color: var(--dark-800);*/
    background-color: var(--white-900);/*--Vishal--*/
    /*background: #B1A7A0;*/
    /*color: #FCF9F4;*/
    color: var(--color-6);/*--Vishal*/
    font-family: "Open Sans", "Arial";
    padding-bottom: 80px;
}

/* News & Media Section Start Here */
.newsmedia {
    width: 100%;
    margin: auto;
    overflow: hidden;
    border: 2px solid grey;
    padding: 0px;
    box-shadow: 4px 10px 8px #535353;
}

/* News & Media Style tabs  */
.tablink {
    /*background-color: var(--dark-800);*/
    background-color: var(--white-900);/*--Vishal--*/
    /*color: white;*/
    color: var(--color-6);/*--Vishal--*/
    font-weight :550;
    float: left;
    /*border-color: var(--white-800);*/
    /*border-color: var(--dark-800);/*--Vishal--*/
    border-color: var(--#4a4a4a);/*--Deepak--*/
    box-shadow: 10px 20px 20px -22px;
    outline: none;
    cursor: pointer;
    padding: 14px 5px;
    font-size: 17px;
    width: 25%;
}

.tablink:hover {
    /*background-color: var(--dark-700);*/
    background-color: var(--white-900);/*--Vishal--*/
}

/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
    color: while;
    /* rgb(17, 1, 1);*/
    display: none;
    padding: 100px 10px;

}

.audio-item {
    width: calc(25% - 20px);
    margin: 10px 20px 10px;


}

audio {
    max-height: 100%;
    max-width: 100%;
    margin: auto;
    object-fit: contain;
    border-radius: 22px;/*--Vishal--*/
		
}

video {
    max-height: 100%;
    max-width: 100%;
    margin: auto;
    object-fit: contain;
    padding: 5px;
}

#News,
#Audio,
#Video {
    /*background-color: var(--dark-800);*/
    background-color: var(--white-900);/*--Vishal--*/
}

/* Image In Press Release Zoom on Click (as Model Window) Start Here*/
/* The Image Box */
div.img1 {
    /*border: 1px solid #ccc;*/
    border: 1px solid #666;/*--Vishal--*/
    margin-top: 15px;
    max-height: 25%;
}

div.img1:hover {
    border: 1px solid var(--color-1)
}

/* The Image */
div.img1 img {
    width: 100%;
    cursor: pointer;
}

/* Description of Image */
div.desc {
    padding: 5px;
    text-align: justify;
}


/* Add Responsiveness */
.responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
    height: 24.99999%;
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 2;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 85%;
    max-width: 900px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--white-900);
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content,
#caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0.1)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    margin-top: 100px;
    top: 15px;
    right: 190px;
    color: var(--white-900);
    font-size: 30px;
    font-weight: bold;
    transition: 0.3s;
    border: 2px solid var(--main-color)
}

.close:hover,
.close:focus {
    color: var(--main-color);
    text-decoration: none;
    cursor: pointer;
}

/* Responsive Columns */
@media only screen and (max-width: 700px) {
    .responsive {
        width: 49.99999%;
        margin: 6px 0;
    }

    .modal-content {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .responsive {
        width: 100%;
    }
}

/* Clear Floats */
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* Image In Press Release Zoom Ends here*/
/*-- (News & Media Section Ends Here) --*/


/*-- (Contact Section Start Here) --*/
.contact-section {
    /*background-color: var(--dark-800);*/
    background-color: var(--white-900);/*--Vishal*/
}

.contact-map,
.contact-form1 {
    width: 50%;
    padding: 0 15px;
}

.contact-form1 form {
    width: 100%;
    max-width: 400px;
    /*background-color: var(--dark-700);*/
    background-color: var(--white-900);
    padding: 30px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    margin: auto;
}

.contact-form1 textarea.form-control1 {
    height: 120px;
    resize: none;
    padding-top: 15px;
}

.contact-form1 .btn {
    height: 45px;
    width: 100%;
}

.contact-icon {
    font-size: 15px;
    /*color: var(--main-color); Change By Vishal*/
    color: var(--grey-700);
    margin: 5px 5px 10px;
    /*transition: all 0.5s ease;*/
}

.form-control1 {
    height: 45px;
    width: 100%;
    display: block;
    margin-bottom: 30px;
    padding: 0 15px;
    border-radius: 30px;
    /*background-color: var(--dark-800) !important;*/
    background-color: var(--white-900) !important; /*Deepak*/
    /*border: 1px solid transparent !important;*/ 
    border: 1px solid var(--dark-800); /*Item Border*/
    font-size: 16px;
    font-family: inherit;
    /*color: var(--white-900);*/
    color: var(--color-6);/*Vishal*/
    font-weight: 300;
    transition: all 0.5s ease;
    font-size: 16px;
    cursor: pointer;
}

.form-control1::placeholder {
    /*color: var(--white-800);*/
    color: var(--dark-800);
}

/*form-control:focus is just like got_focus or pre-text*/
.form-control1:focus {
    /*border-color: var(--main-color) !important; Change By Vishal*/
    border-color: var(--grey-700) !important;

}

.address-section {
    /*background-color: var(--dark-800);*/
    background-color: var(--white-800);/*--Vishal--*/
    padding-top: 50px;
    padding-bottom: 50px;
}

.address-item {
    width: calc((100% / 3) - 30px);
    margin: 0 15px 30px;
    padding: 30px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow);
}

/*Add By Vishal*/

.map-embed {
    width: 100%;
    max-width: 880px;
    height: 170px;
    /*border-radius: 5px;*/
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-left: 120px;
    margin-right: auto;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .address-wrapper {
        flex-direction: column;
    }

    .address-item, .map-embed {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

/*-- (Contact Section End Here) --*/


/*-- (Career Section Start Here) --*/ 
/*Add Page By Vishal For Career Section*/
.career-section {
    /*background-color: var(--dark-800);*/
    background-color: var(--white-900);/*--Vishal*/
}

.career-map,
.career-form1 {
    width: 50%;
    padding: 0 15px;
}

.career-form1 form {
    width: 100%;
    max-width: 400px;
    /*background-color: var(--dark-700);*/
    background-color: var(--white-900); /*Deepak*/
    padding: 30px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    margin: auto;
}

.career-form1 textarea.form-control1 {
    height: 120px;
    resize: none;
    padding-top: 15px;
}

.career-form1 .btn {
    height: 45px;
    width: 100%;
}

.career-icon {
    font-size: 15px;
    /*color: var(--main-color); Change By Vishal*/
    color: var(--grey-700);
    margin: 5px 5px 10px;
    /*transition: all 0.5s ease;*/
}

.form-control2 {
    height: 45px;
    width: 100%;
    display: block;
    margin-bottom: 30px;
    padding: 0 15px;
    border-radius: 30px;
    /*background-color: var(--dark-800) !important;
    border: 1px solid transparent !important;*/
    background-color: var(--white-900) !important; /*Deepak*/
    border: 1px solid var(--dark-800); /*Item Border*/
    font-size: 16px;
    font-family: inherit;
    /*color: var(--white-900); Change By Vishal*/
    color: var(--color-6);
    font-weight: 300;
    transition: all 0.5s ease;
    font-size: 16px;
    cursor: pointer;
}

.form-control2::placeholder {
    /*color: var(--white-800);*/ 
    color: var(--dark-800); /*Deepak*/
}

/*form-sontrol:focus is just like got_focus or pre-text*/
.form-control2:focus {
    /*border-color: var(--main-color) !important; Change By Vishal*/
    border-color: var(--grey-700) !important;

}

.address-section {
    /*background-color: var(--dark-800);*/
    background-color: var(--white-900);/*--Vishal--*/
    padding-top: 50px;
    padding-bottom: 50px;
}

.address-item {
    width: calc((100% / 3) - 30px);
    margin: 0 15px 30px;
    padding: 30px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow);
}

/*-- (Career Section Ends Here) --*/ 


/*-- (Whatsapp Functionality Start) --*/ 
/*#whatsapp {
    position: fixed;
    bottom: 5%;
    right: 3%;
    padding: 12px;
    font-size: 25px;
    color: white;
    background: #25d366;
    border-radius: 50%;
    box-shadow: var(--main-color);
    z-index: 9999;
}Remove By Vishal*/


/*Add Code By Vishal For Whatsapp Icon*/
#whatsapp-wrapper {
  position: fixed;
  bottom: 35px;
  right: 5%;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}

#whatsapp {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  color: white;
  background: #25d366;
  border-radius: 50%;
  animation: glow 2s infinite;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.6);
}

#whatsapp:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.9);
}

#whatsapp-label {
  background: white;
  color: #075e54;
  padding: 4px 8px;
  font-family: sans-serif;
  font-weight: bold;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

#whatsapp-label span {
  animation: blinkText 1s infinite;
  font-size: 12px;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 8px rgba(37, 211, 102, 0.6);
  }
  50% {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.9);
  }
}

@keyframes blinkText {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@media (max-width: 600px) {
  #whatsapp-label {
    display: none;
  }
}
/*Add Code By Vishal For Whatsapp Icon*/

/*-- (Whatsapp Functionality End) --*/ 


/*-- (Footer Section Starts Here) --*/ 
.footer {
    background-color: var(--color-6);
    /*background-color: var(--dark-700); Change By Vishal*/
    padding: 60px 0;
    color: var(--white-800);
}

.footer-item {
    width: 25%;
    padding: 0 15px;
}

.footer-item h2 {
    color: var(--white-900);
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    margin: 0 0 30px;
}

.footer-about .social-links {
    margin-top: 20px;
}

.footer-about .social-links a {
    display: inline-block;
    border: 1px solid transparent;
    height: 35px;
    width: 35px;
    /*color: var(--main-color); Change By Vishal*/
    color: var(--grey-700);
    line-height: 35px;
    text-align: center;
    font-size: 16px;
    transition: all 0.5s ease;
    border-radius: 50%;
}

.footer-about .social-links a:hover {
    /*border-color: var(--main-color); Change By Vishal*/
    border-color: var(--grey-700);
}

.footer-quick-links ul li a {
    display: block;
    margin: 0 0 10px;
    text-transform: capitalize;
    font-size: 16px;
    color: inherit;
}

.footer-contact p {
    margin: 0 0 15px;
    position: relative;
    padding-left: 30px;
}

.footer-contact p i {
    position: absolute;
    left: 0;
    top: 5px;
}

.footer-newsletter .form-control {
    margin-bottom: 15px;
    text-align: center;
}

.footer-newsletter .btn {
    height: 45px;
    width: 100%;
}

.form-control {
    height: 45px;
    width: 100%;
    display: block;
    margin-bottom: 30px;
    padding: 0 15px;
    border-radius: 30px;
    background-color: var(--dark-800);
    border: 1px solid transparent;
    font-size: 16px;
    font-family: inherit;
    color: var(--white-900);
    font-weight: 500;
    transition: all 0.5s ease;
    font-size: 16px;
    cursor: pointer;
}

.form-control::placeholder {
    color: var(--white-800);
}

/*form-sontrol:focus is just like got_focus or pre-text*/
.form-control:focus {
    border-color: var(--main-color);
}

/*Add code By Vishal For Scroll Top Btn*/
@keyframes bounceUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.scrollToTop {
  position: fixed;
  bottom: 35px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 2px solid var(--grey-700, #333);
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}

/* Show class: Button becomes visible and animated */
.scrollToTop.show {
  opacity: 1;
  pointer-events: auto;
  animation: bounceUpDown 1s infinite ease-in-out;
}

.scrollToTop:hover {
  background-color: rgb(44, 48, 147);
  border-color: rgb(44, 48, 147);
}

.scrollToTop svg {
  width: 20px;
  height: 20px;
  fill: rgb(44, 48, 147);
  transition: fill 0.3s ease;
}

.scrollToTop:hover svg {
  fill: white;
}
/*Add code By Vishal For Scroll Top Btn*/

/*-- (Footer Section Ends Here) --*/ 


/* Responsive Start */

@media(max-width:991px) {
    .about-text h1 {
        font-size: 25px;
    }

    .about-text1 h1 {
        font-size: 25px;
    }

    .about-text h2 {
        font-size: 20px;
    }

    .about-text1 h2 {
        font-size: 20px;
    }

    .typing h2 {
        font-size: 15px !important;
    }

    .about-img {
        margin-top: 60px;
        margin-bottom: 40px;
    }

    .mission-item,
    .activity-item {
        width: calc(50% - 30px);
    }


    .footer-item {
        width: 50%;
    }

    .services-item {
        width: 45%;
    }

    .footer-item {
        margin-bottom: 30px;
    }
}

@media(max-width:767px) {

    .about-text,
    .about-img,
    .about-img1,
    .contact-form1 {
        width: 100%;
    }

    .about-text1 {
        width: 100%;
    }

    .about-text h1 {
        font-size: 20px;
    }

    .about-text1 h1 {
        font-size: 20px;
    }

    .typing h2 {
        font-size: 15px !important;
    }

    .about-text h2 {
        font-size: 15px;
    }

    .about-text1 h2 {
        font-size: 15px;
    }

    .footer-item {
        width: 60%;
    }

    .services-item {
        width: 100%;
        padding: 0 10px 60px;
    }

    .bg-text {
        width: 40%;
    }

    .product2col {
        width: 100%;
        flex: 100%;
    }

    .prdtabpage {
        height: 350px;
        width: 100%;
        margin-left: -1px;
    }

    .bg-image {
        background-size: contain;
        /* background-size: 500px 500px; */
        background-size: 100% 100%;
    }

    .bg-text {
        width: 50%;
        top: 25%;
        left: 50%;
        padding: 2px;
        font-size: 15px;
        transform: translate(-50%, -25%);
    }

    .section-title h2 {
        font-size: 15px;
        font-weight: 600;

    }
}

@media(max-width:575px) {

    .icon-bar {
        top: 5%;
        left: 50%;
        background-color: transparent;
    }

    .icon-bar a {
        display: inline-block;
        height: 14px;
        width: 14px;
        font-size: 14px;
        color: white;
        margin-right: 6px;
    }

    #contact_stikyico,
    #download_stikyico,
    #erp_stikyico,
    #review_stickyico {
        display: none;
    }

    .mission-item,
    .activity-item {
        width: calc(100% - 30px);
    }

    .review-item {
        text-align: center;
    }

    .review-item,
    .services-item,
    .product2col,
    .footer-item,
    .contact-form1 {
        width: 100%;
    }

    .bg-text {
        width: 80%;
        top: 25%;
    }

    .prdtabpage {
        height: 350px;
        width: 100%;
        margin-left: -1px;
    }

    .audio-item {
        width: 100%;
    }

    .bg-image {
        background-size: contain;
        /* background-size: 500px 500px; */
        background-size: 100% 100%;
    }

    .bg-text {
        width: 50%;
        top: 25%;
        left: 50%;
        padding: 2px;
        font-size: 15px;
        transform: translate(-50%, -25%);
    }

    .section-title h2 {
        font-size: 15px;
        font-weight: 600;
    }
}

/*Add By Vishal For Whatsapp Icon Bold*/

/*Header Section*/
.icon-bar a i.fab.fa-whatsapp, 
.icon-bar a i.fab.fa-instagram {
  font-size: 18px;
  font-weight: bold;
}


/*Footer Section*/
.social-links a i.fab.fa-whatsapp,
.social-links a i.fab.fa-instagram{
  font-size: 18px;
  font-weight: bold;
}

/* Responsive End Here */