/* 





*/

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.title-with-logo {
  display: flex;
  align-items: center;
  /* Vertically align text & image */
  gap: 10px;
  /* Space between text and image */
  flex-wrap: wrap;
  /* Ensures responsiveness */
}

.title-with-logo h2 {
  margin: 0;

  font-size: 24px;
  /* Adjust heading size */
}

.title-with-logo .sap-logo {
  height: 40px;
  /* Resize logo */
  width: auto;
  /* Keep proportions */
}

/* Style for video titles */

/* Show dropdown menu on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.count-digit::after {
  content: "+";
}

.service-item img {
  transition: transform 0.3s ease;
  display: block;
  width: 100%;
  height: 250px;
}

.service-item img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.services .service-item1 {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07), 0 0.5px 2px rgba(0, 0, 0, 0.05);
  padding: 36px 20px 18px 20px;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 30px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, border 0.3s;
}

.services .service-item1:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
  border-color: #1a9c77;
}

.services .service-item1 img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  margin-top: 2px;
  object-fit: contain;
  display: block;
}

.services .service-title1 {
  text-align: center;
  font-size: 18px;
  color: #222;
  font-weight: 600;
  margin: 10px 0 0 0;
  line-height: 1.3;
  letter-spacing: 0.1px;
}

p {
  margin-bottom: 0px;
  font-size: 14px;
  color: #666666;
  line-height: 30px;
}

a {
  text-decoration: none !important;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

a.filled-button {
  background-color: #ee9e1e;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s;
}

a.filled-button:hover {
  background-color: #ffffff;
  color: #ee9e1e;
}

a.border-button {
  background-color: #ee9e1e;
  color: #fff;
  border: 2px solid #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s;
}

a.border-button:hover {
  background-color: #fff;
  color: #ee9e1e;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h3 {
  text-align: left !important;
  width: 100% !important;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  line-height: 1.4;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 1.25rem;
  /* adjust as needed */
  font-weight: 600;
  /* keeps heading bold but not too heavy */
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 600;
  color: #1e1e1e;
}

.section-heading em {
  font-style: normal;
  color: #ee9e1e;
}

.section-heading span {
  display: block;
  margin-top: 15px;
  text-transform: uppercase;
  font-size: 15px;
  color: #666;
  letter-spacing: 1px;
}

/* Default transparent navbar */
.logo-part1,
.logo-part2 {
  fill: #ffffff;
  /* all white by default */
}

/* When navbar has background-header (white background) */
.background-header .logo-part1 {
  fill: #13294b;
  /* blue for TRIJO */
}

.background-header .logo-part2 {
  fill: #ee9e1e;
  /* orange for TECH */
}

#preloader {
  overflow: hidden;
  background: #ee9e1e;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999999;
  color: #fff;
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper > div {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  -webkit-animation: jumper 1s 0s linear infinite;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
  animation-delay: 0.33333s;
}

#preloader .jumper > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
  animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  5% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  5% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* custom styles for bullets and whatsapp */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #25d366;
  color: white;
  transform: scale(1.1);
}

.whatsapp-float i {
  line-height: 60px;
}

.custom-bullet {
  font-size: 14px;
  color: #000;
  padding-left: 50px;
  /* space for bullet */
  text-align: justify;
  text-indent: -15px;
  /* pulls bullet out to the left */
}

.custom-bullet::before {
  content: "·";
  /* bullet */
  font-weight: bold;
  font-size: 25px;
  color: #000;
  display: inline-block;
  width: 1px;
  /* width of bullet space */
  vertical-align: middle;
  /* align bullet to top */
}

/* Sub Header Style */

.sub-header {
  background-color: #ee9e1e;
  height: 46px;
  line-height: 46px;
}

.sub-header ul li {
  display: inline-block;
}

.sub-header ul.left-info li {
  border-left: 1px solid rgba(250, 250, 250, 0.3);
  padding: 0px 20px;
}

.sub-header ul.left-info li:last-child {
  border-right: 1px solid rgba(250, 250, 250, 0.3);
}

.sub-header ul.left-info li i {
  margin-right: 10px;
  font-size: 18px;
}

.sub-header ul.left-info li a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.sub-header ul.right-icons {
  float: right;
}

.sub-header ul.right-icons li {
  margin-right: -4px;
  width: 46px;
  display: inline-block;
  text-align: center;
  border-right: 1px solid rgba(250, 250, 250, 0.3);
}

.sub-header ul.right-icons li:first-child {
  border-left: 1px solid rgba(250, 250, 250, 0.3);
}

.sub-header ul.right-icons li a {
  color: #fff;
  transition: all 0.3s;
}

.sub-header ul.right-icons li a:hover {
  opacity: 0.75;
}

/* Header Style */
header {
  position: absolute;
  z-index: 99999;
  width: 100%;
  background-color: transparent !important;
  height: 80px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

header .navbar {
  padding: 20px 0px;
}

.background-header .navbar {
  padding: 10px 0px;
}

.background-header {
  top: 0;
  position: fixed;
  background-color: #fff !important;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
}

.background-header .navbar-brand h2 {
  color: #ee9e1e !important;
  background-color: #fff;
}

.background-header .navbar-nav a.nav-link {
  color: #1e1e1e !important;
}

.background-header .navbar-nav .nav-link:hover,
.background-header .navbar-nav .active > .nav-link,
.background-header .navbar-nav .nav-link.current,
.background-header .navbar-nav .nav-link.show,
.background-header .navbar-nav .show > .nav-link {
  color: #ee9e1e !important;
}

.navbar .navbar-brand {
  float: left;
  margin-top: 12px;
  outline: none;
}

.navbar .navbar-brand img {
  height: 90px;
  /* control exact height */

  width: auto;
  /* keep aspect ratio */
  filter: none;
  /* remove any blur filter */
  image-rendering: -webkit-optimize-contrast;
  /* better for Chrome */
  image-rendering: crisp-edges;
  /* sharper edges */
  -ms-interpolation-mode: nearest-neighbor;
  /* for IE */
}

.navbar .navbar-brand h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.navbar .navbar-brand h2 em {
  font-style: normal;
  font-size: 16px;
}

#navbarResponsive {
  z-index: 999;
}

.navbar-collapse {
  text-align: center;
}

.navbar .navbar-nav .nav-item {
  margin: 0px 15px;
}

.navbar .navbar-nav a.nav-link {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #ffffff;
  transition: all 0.5s;
  margin-top: 2px;
  margin-bottom: 1px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .active > .nav-link,
.navbar .navbar-nav .nav-link.current,
.navbar .navbar-nav .nav-link.show,
.navbar .navbar-nav .show > .nav-link {
  color: #ee9e1e;
  border-bottom: 3px solid #ee9e1e;
}

.navbar .navbar-toggler-icon {
  background-image: none;
}

.navbar .navbar-toggler {
  border-color: #fff;
  background-color: #fff;
  height: 36px;
  outline: none;
  border-radius: 0px;
  position: absolute;
  right: 30px;
  top: 20px;
}

.navbar .navbar-toggler-icon:after {
  content: "\f0c9";
  color: #ee9e1e;
  font-size: 18px;
  line-height: 26px;
  font-family: "FontAwesome";
}

/* Banner Style */

.img-fill {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.img-fill img {
  min-height: 100%;
  min-width: 100%;
  position: relative;
  display: inline-block;
  max-width: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.Grid1k {
  padding: 0 15px;
  max-width: 1200px;
  margin: auto;
}

.blocks-box,
.slick-slider {
  margin: 0;
  padding: 0 !important;
}

.slick-slide {
  float: left;
  padding: 0;
}

.Modern-Slider .item .img-fill {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100vh;
}

.Modern-Slider .item-1 .img-fill {
  background-image: url(../image/home2.png);
}

.Modern-Slider .item-2 .img-fill {
  background-image: url(../image/L0104.png);
}

/*.Modern-Slider .item-3 .img-fill {
	background-image: url(../images/slide_03.jpg);
}*/

.Modern-Slider .NextArrow {
  position: absolute;
  top: 50%;
  right: 30px;
  border: 0 none;
  background-color: transparent;
  text-align: center;
  font-size: 36px;
  font-family: "FontAwesome";
  color: #fff;
  z-index: 5;
  outline: none;
  cursor: pointer;
}

.Modern-Slider .NextArrow:before {
  content: "\f105";
}

.Modern-Slider .PrevArrow {
  position: absolute;
  top: 50%;
  left: 30px;
  border: 0 none;
  background-color: transparent;
  text-align: center;
  font-size: 36px;
  font-family: "FontAwesome";
  color: #fff;
  z-index: 5;
  outline: none;
  cursor: pointer;
}

.Modern-Slider .PrevArrow:before {
  content: "\f104";
}

ul.slick-dots {
  display: none !important;
}

.Modern-Slider .text-content {
  text-align: left;
  width: 75%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.Modern-Slider .item h6 {
  margin-bottom: 15px;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ee9e1e;
  animation: fadeOutRight 1s both;
}

.Modern-Slider .item h4 {
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #fff;
  overflow: hidden;
  animation: fadeOutLeft 1s both;
}

.Modern-Slider .item p {
  max-width: 570px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 40px;
}

.Modern-Slider .item a {
  margin: 0 5px;
}

.Modern-Slider .item.slick-active h6 {
  animation: fadeInDown 1s both 1s;
}

.Modern-Slider .item.slick-active h4 {
  animation: fadeInLeft 1s both 1.5s;
}

.Modern-Slider .item.slick-active {
  animation: Slick-FastSwipeIn 1s both;
}

.Modern-Slider .buttons {
  position: relative;
}

.Modern-Slider {
  background: #000;
}

/* ==== Slick Slider Css Ruls === */
.slick-slider {
  position: relative;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left /* If RTL Make This Right */;
  height: 100%;
  min-height: 1px;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Nav Bar Fixed */
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.custom-navbar .navbar-nav li {
  color: black !important; /* ensures text color is black */
}

.custom-navbar .navbar-nav li a {
  color: black !important; /* make sure the links themselves are black */
}

/* Keep hover and active for orange underline */
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: #ee9e1e !important;
}

/* Ensure navbar items are vertically centered */
.custom-navbar .navbar-nav .nav-item {
  display: flex;
  align-items: center; /* vertically centers text with logo */
  padding-bottom: 0.5rem; /* adds bottom space */
}


/* Links color and hover */
.custom-navbar .nav-link {
  color: black !important;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: #ee9e1e !important;
}

.custom-navbar-bg {
  background-color: #ffffff !important; /* static white background */
  /* padding: 0px 0 !important; */
}

/* --------- Dropdown positioning fixes --------- */


/* Ensure dropdown opens directly under its parent menu item */
.custom-navbar .dropdown-menu {
  position: absolute !important;
  top: 100% !important; /* below the parent */
  transform: none !important; /* remove any stray transforms */
  min-width: 200px;
  z-index: 1060 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: #ffffff; /* keep white background */
}

.custom-navbar .dropdown-menu.center {
  left: 50% !important;
  transform: translateX(-50%) !important;
}

/* Dropdown items styling */
.custom-navbar .dropdown-item {
  color: #000 !important;
}
.custom-navbar .dropdown-item:hover {
  color: #ee9e1e !important;
  background-color: transparent;
}

@media (max-width: 991px) {
  .small-screen-nav {
    padding: 4vh 0 2vh 0 !important;
  }

  /* Center nav links */
  .custom-items-center {
    width: 100% !important;
    text-align: center !important;
  }

 .custom-items-center a {
    display: block;         /* make <a> span full width */
    text-align: center;     /* center text inside */
    width: 100%;            /* fill the row */
  }

  /* dropdown menu items too */
  .custom-navbar .dropdown-menu a {
    display: block;
    text-align: center;
  }

  .custom-navbar .dropdown-menu {
    top: auto !important;
    left: auto !important;
    right: auto !important;
    margin: 0 !important;
    width: 100% !important;         /* full width under parent */
    text-align: center;             /* center items */
  }
}


/* Custom Nav end */

/* Request Form */

.request-form {
  background-color: #ee9e1e;
  padding: 40px 0px;
  color: #fff;
}

.request-form h4 {
  font-size: 22px;
  font-weight: 600;
}

.request-form span {
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  margin-top: 10px;
}

.request-form a.border-button {
  margin-top: 12px;
  float: right;
}

/* Services */

.services {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 40px 0;
  color: white;
}

.service1 {
  background-image: url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80");
}

.service2 {
  background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1200&q=80");
}

.service3 {
  background-image: url("https://images.unsplash.com/photo-1486308510493-cd2e6bdc3f2b?auto=format&fit=crop&w=1200&q=80");
}

/* Overlay for all services */
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.service > .container {
  position: relative;
  z-index: 1;
}

.service-item img {
  width: 100%;
  overflow: hidden;
  padding-top: 15px;
  margin-top: 10px;
}

.service-item .down-content {
  background-color: white;
  padding: 30px;
}

.service-item .down-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.25px;
  margin-bottom: 15px;
}

.service-item .down-content p {
  margin-bottom: 20px;
}

/* Fun Facts */

.fun-facts {
  margin-top: 0px;
  background-image: url(../images/fun-facts-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 140px 0px;
  color: #fff;
}

.fun-facts span {
  text-transform: uppercase;
  font-size: 15px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.fun-facts h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 35px;
}

.fun-facts em {
  font-style: normal;
  color: #ee9e1e;
}

.fun-facts p {
  color: #fff;
  margin-bottom: 40px;
}

.fun-facts .left-content {
  margin-right: 45px;
}

.count-area-content {
  width: 180px;
  /* Fixed width, adjust as needed */
  height: 140px;
  /* Fixed height, adjust as needed */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(250, 250, 250, 0.1);
  padding: 25px 30px 35px 30px;
  margin: 10px;
  border-radius: 12px;
  /* Optional: soft corners */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  /* Optional: subtle elevation */
}

.count-digit {
  margin: 5px 0px;
  color: #ee9e1e;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
}

.count-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* More Info */

.more-info {
  margin-top: 0px;
  background-color: #f5f5f5;
}

.more-info .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.more-info .left-image img {
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
  margin-left: 5px;
}

.more-info .more-info-content {
  background-color: #ffffff;
}

.about-info .more-info-content {
  background-color: transparent;
}

.about-info .right-content {
  padding: 0px !important;
  margin-right: 30px;
}

.more-info .right-content {
  padding: 45px 45px 45px 30px;
}

.more-info .right-content span {
  text-transform: uppercase;
  font-size: 15px;
  color: #666;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.more-info .right-content h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 35px;
}

.more-info .right-content em {
  font-style: normal;
  color: #ee9e1e;
}

.more-info .right-content p {
  margin-bottom: 30px;
}

/* Testimonials Style */

.about-testimonials {
  margin-top: 0px !important;
}

.testimonials {
  margin-top: 0px;
  background-color: #f7f7f7;
  padding: 40px 0px;
}

.testimonial-item .inner-content {
  text-align: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
}

.testimonial-item p {
  font-size: 14px;
  font-weight: 400;
}

.testimonial-item h4 {
  font-size: 19px;
  font-weight: 700;
  color: #1e1e1e;
  letter-spacing: 0.5px;
  margin-bottom: 0px;
}

.testimonial-item span {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #ee9e1e;
}

.testimonial-item img {
  max-width: 60px;
  border-radius: 50%;
  margin: 25px auto 0px auto;
}

/* Call Back Style */

.callback-services {
  border-top: 1px solid #eee;
  padding-top: 140px;
}

.contact-us {
  background-color: #ffffff;
  padding: 140px 0px;
}

.contact-us .contact-form {
  background-color: transparent !important;
  padding: 0 !important;
}

.callback-form {
  margin-top: 0px;
  margin-bottom: 0px;
  background-color: #ffffff;
}

.callback-form .contact-form {
  background-color: #ffffff;
  padding: 60px;
  border-radius: 5px;
  text-align: center;
}

.callback-form .contact-form input {
  border-radius: 20px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  padding: 0px 15px;
  color: #6a6a6a;
  font-size: 13px;
  text-transform: none;
  box-shadow: none;
  border: none;
  margin-bottom: 35px;
}

.callback-form .contact-form input:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.callback-form .contact-form textarea {
  border-radius: 20px;
  height: 20px;
  max-height: 30px;
  min-height: 20px;
  display: inline-block;
  padding: 15px;
  color: #6a6a6a;
  font-size: 13px;
  text-transform: none;
  box-shadow: none;
  border: none;
  margin-bottom: 35px;
}

.callback-form .contact-form textarea:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.callback-form .contact-form ::-webkit-input-placeholder {
  /* Edge */
  color: #aaa;
}

.callback-form .contact-form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #aaa;
}

.callback-form .contact-form ::placeholder {
  color: #aaa;
}

.callback-form .contact-form button.border-button {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s;
  outline: none;
  box-shadow: none;
  text-shadow: none;
  cursor: pointer;
}

.callback-form .contact-form button.border-button:hover {
  background-color: #fff;
  color: #ee9e1e;
}

.contact-us .contact-form button.filled-button {
  background-color: #ee9e1e;
  color: #fff;
  border: none;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s;
  outline: none;
  box-shadow: none;
  text-shadow: none;
  cursor: pointer;
}

.contact-us .contact-form button.filled-button:hover {
  background-color: #fff;
  color: #ee9e1e;
}

/* Partners Style */

.contact-partners {
  margin-top: -8px !important;
}

.partners {
  margin-top: 140px;
  background-color: #f7f7f7;
  padding: 60px 0px;
}

.partners .owl-item {
  text-align: center;
  cursor: pointer;
}

.partners .partner-item img {
  max-width: 156px;
  margin: auto;
}

/* Footer Style */

footer {
  background-color: #232454;
  padding: 40px 0 0 0;
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

footer h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.25px;
}

footer .menu-list {
  padding: 0;
  list-style: none;
}

footer .menu-list li {
  margin-bottom: 13px;
  font-size: 15px;
}

footer .menu-list li a {
  color: #fff;
  transition: color 0.3s;
}

footer .menu-list li a:hover {
  color: #ee9e1e;
}

footer .footer-item {
  margin-bottom: 32px;
}

footer .icon-text {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 15px;
  color: white;
}

footer .icon-text i {
  color: #12e012;
  margin-right: 9px;
  font-size: 18px;
  margin-top: 3px;
}

.footer-bar {
  border-top: 2px solid #d6a253;
  border-bottom: 2px solid #d6a253;
  margin: 36px 0 0 0;
  padding: 10px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 38px;
}

.footer-certifications {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cert-heading {
  font-size: 21px;
  font-weight: 600;
  margin-right: 12px;
}

.footer-cert {
  height: 44px;
}

.sub-footer {
  background-color: #232454;
  text-align: center;
  padding: 16px 0;
}

.sub-footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.copyright {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}

.social-icons {
  display: flex;
  gap: 13px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icons li a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #232323;
  border-radius: 50%;
  font-size: 20px;
  transition: background-color 0.3s, color 0.3s;
}

.social-icons li a:hover {
  background-color: #ee9e1e;
  color: #fff;
}

@media (max-width: 900px) {
  .footer-bar,
  .sub-footer-content {
    flex-direction: column;
    gap: 14px;
  }

  .footer-logos,
  .footer-certifications {
    justify-content: center;
  }
}

.page-heading {
  text-align: center;
  /*background-image: url(../images/page-heading-bg.jpg);*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 230px 0px 150px 0px;
  color: #fff;
}

.p-h-img {
  background-image: url(../image/L0401.jpg);
  height: 70vh;
}

.p-h-img-blogs {
  background-image: url(../image/Home3.png);
  height: 70vh;
}

.p-h-img-blogs1 {
  background-image: url(../image/Blogs1.png);
  height: 70vh;
}

.p-h-img-industry {
  background-image: url(../image/industry1.png);
  height: 70vh;
}

.p-h-img-service {
  background-image: url(../image/Implimentationimg.png);
  height: 70vh;
}

.p-h-img-carrer {
  background-image: url(../image/ca1.png);
  height: 70vh;
}

.p-h-img-Implementation {
  background-image: url(../image/implimentation1.png);
  height: 70vh;
}

.p-h-img-contact {
  background-image: url(../image/contact1.png);
  height: 70vh;
}

.p-h-img-product {
  background-image: url(../image/product1.png);
  height: 70vh;
}

/*BLOG HERO IMG*/
.p-h-img-01 {
  background-image: url(../image/B1.png);
  height: 70vh;
}

.p-h-img-02 {
  background-image: url(../image/B2.png);
  height: 70vh;
}

.p-h-img-03 {
  background-image: url(../image/B3.png);
  height: 70vh;
}

.p-h-img-04 {
  background-image: url(../image/B4.png);
  height: 70vh;
}

.p-h-img-05 {
  background-image: url(../image/B5.png);
  height: 70vh;
}

.p-h-img-06 {
  background-image: url(../image/B6.png);
  height: 70vh;
}

.p-h-img-07 {
  background-image: url(../image/B7.png);
  height: 70vh;
}

.p-h-img-08 {
  background-image: url(../image/B8.png);
  height: 70vh;
}

.p-h-img-09 {
  background-image: url(../image/B9.png);
  height: 70vh;
}

.p-h-img-10 {
  background-image: url(../image/B10.png);
  height: 70vh;
}

.p-h-img-11 {
  background-image: url(../image/B11.png);
  height: 70vh;
}

.p-h-img-12 {
  background-image: url(../image/B12.png);
  height: 70vh;
}

.p-h-img-13 {
  background-image: url(../image/B13.png);
  height: 70vh;
}

.p-h-img-14 {
  background-image: url(../image/B14.png);
  height: 70vh;
}

.p-h-img-15 {
  background-image: url(../image/B15.png);
  height: 70vh;
}

.p-h-img-16 {
  background-image: url(../image/B16.png);
  height: 70vh;
}

.p-h-img-17 {
  background-image: url(../image/B17.png);
  height: 70vh;
}

.p-h-img-18 {
  background-image: url(../image/B18.png);
  height: 70vh;
}

.p-h-img-19 {
  background-image: url(../image/B19.png);
  height: 70vh;
}

.p-h-img-20 {
  background-image: url(../image/B20.png);
  height: 70vh;
}

.p-h-img-21 {
  background-image: url(../image/B21.png);
  height: 70vh;
}

.p-h-img-22 {
  background-image: url(../image/B22.png);
  height: 70vh;
}

.p-h-img-23 {
  background-image: url(../image/B23.png);
  height: 70vh;
}

.p-h-img-24 {
  background-image: url(../image/B24.png);
  height: 70vh;
}

.p-h-img-25 {
  background-image: url(../image/B25.png);
  height: 70vh;
}

.p-h-img-26 {
  background-image: url(../image/B26.png);
  height: 70vh;
}

.p-h-img-27 {
  background-image: url(../image/B27.png);
  height: 70vh;
}

.p-h-img-28 {
  background-image: url(../image/B28.png);
  height: 70vh;
}

.p-h-img-29 {
  background-image: url(../image/B29.png);
  height: 70vh;
}

.p-h-img-30 {
  background-image: url(../image/B30.png);
  height: 70vh;
}

.p-h-img-31 {
  background-image: url(../image/B31.png);
  height: 70vh;
}

.p-h-img-32 {
  background-image: url(../image/B32.png);
  height: 70vh;
}

.p-h-img-33 {
  background-image: url(../image/B33.png);
  height: 70vh;
}

.p-h-img-34 {
  background-image: url(../image/B34.png);
  height: 70vh;
}

.p-h-img-35 {
  background-image: url(../image/B35.png);
  height: 70vh;
}

/*.p-h-img-blogs1{*/
/*   background-image: url(../image/Blog 1.png);*/
/*height: 70vh;*/
/*}*/

.page-heading h1 {
  text-transform: capitalize;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.page-heading span {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  display: block;
}

/* team */

.team {
  background-color: #f7f7f7;
  margin-top: 140px;
  margin-bottom: -140px;
  padding: 120px 0px;
}

.team-item img {
  width: 100%;
  overflow: hidden;
}

.team-item .down-content {
  background-color: #fff;
  padding: 30px;
}

.team-item .down-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.25px;
  margin-bottom: 10px;
}

.team-item .down-content span {
  color: #ee9e1e;
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
}

.team-item .down-content p {
  margin-bottom: 20px;
}

/* Single Service */

.single-services {
  margin-top: 140px;
}

#tabs ul {
  margin: 0;
  padding: 0;
}

#tabs ul li {
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
}

#tabs ul li:last-child {
  margin-bottom: 0px;
}

#tabs ul li a {
  text-transform: capitalize;
  width: 100%;
  padding: 30px 30px;
  display: inline-block;
  background-color: #ee9e1e;
  font-size: 20px;
  color: #121212;
  letter-spacing: 0.5px;
  font-weight: 700;
  transition: all 0.3s;
}

#tabs ul li a i {
  float: right;
  margin-top: 5px;
}

#tabs ul .ui-tabs-active span {
  background: #faf5b2;
  border: #faf5b2;
  line-height: 90px;
  border-bottom: none;
}

#tabs ul .ui-tabs-active a {
  color: #fff;
}

#tabs ul .ui-tabs-active span {
  color: #1e1e1e;
}

.tabs-content {
  margin-left: 30px;
  text-align: left;
  display: inline-block;
  transition: all 0.3s;
}

.tabs-content img {
  max-width: 100%;
  overflow: hidden;
}

.tabs-content h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.25px;
  margin-bottom: 15px;
  margin-top: 30px;
}

.tabs-content p {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 0px;
}

/* Contact Information */

.contact-information {
  margin-top: 140px;
}

.contact-information .contact-item {
  padding: 60px 30px;
  background-color: #ffffff;
  text-align: center;
  height: 300px;
}

.contact-information .contact-item i {
  color: #ee9e1e;
  font-size: 48px;
  margin-bottom: 40px;
}

.contact-information .contact-item h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.25px;
  margin-bottom: 15px;
}

.contact-information .contact-item p {
  margin-bottom: 20px;
}

.contact-information .contact-item a {
  font-weight: 600;
  color: #ee9e1e;
  font-size: 15px;
}

/* Responsive Style */
@media (max-width: 768px) {
  .sub-header {
    display: none;
  }

  .Modern-Slider .item h6 {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .Modern-Slider .item h4 {
    margin-bottom: 25px;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 1px;
  }

  .Modern-Slider .item p {
    max-width: 570px;
    line-height: 25px;
    margin-bottom: 30px;
  }

  .Modern-Slider .NextArrow {
    right: 5px;
  }

  .Modern-Slider .PrevArrow {
    left: 5px;
  }

  .request-form {
    text-align: center;
  }

  .request-form a.border-button {
    float: none;
    margin-top: 30px;
  }

  .services .service-item {
    margin-bottom: 30px;
  }

  .fun-facts .left-content {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .more-info .right-content {
    padding: 30px;
  }

  footer {
    padding: 80px 0px 20px 0px;
  }

  footer .footer-item {
    border-bottom: 1px solid #343434;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  footer .last-item {
    border-bottom: none;
  }

  .about-info .right-content {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .team .team-item {
    margin-bottom: 30px;
  }

  .tabs-content {
    margin-left: 0px;
    margin-top: 30px;
  }

  .contact-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 992px) {
  .navbar .navbar-brand {
    position: absolute;
    left: 30px;
    top: 10px;
  }

  .navbar .navbar-brand {
    width: auto;
  }

  .navbar:after {
    display: none;
  }

  #navbarResponsive {
    z-index: 99999;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar .navbar-nav .nav-item {
    border-bottom: 1px solid #eee;
  }

  .navbar .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }

  .navbar .navbar-nav a.nav-link {
    padding: 15px 0px;
    color: #1e1e1e !important;
  }

  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .active > .nav-link,
  .navbar .navbar-nav .nav-link.current,
  .navbar .navbar-nav .nav-link.show,
  .navbar .navbar-nav .show > .nav-link {
    color: #ee9e1e !important;
    border-bottom: none !important;
  }

  .blog-search-bar {
    float: right;
    margin-bottom: 20px;
    width: 200px;
    /* Reduced width */
    max-width: 100%;
    font-size: 0.95rem;
    /* Slightly smaller text */
    padding: 0.3rem 0.75rem;
    /* Slightly less padding */
    height: 34px;
    /* Smaller height */
  }

  @media (max-width: 576px) {
    .blog-search-bar {
      float: none;
      width: 100%;
      margin-bottom: 15px;
      font-size: 1rem;
      height: 38px;
    }
  }
}
