@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

/*  General Styles Optimization
   ============================= */
 * {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
  
html {
      scroll-behavior: smooth;
}
body {
    font-family: "Montserrat", serif;
    line-height: 1.6rem;
    overflow-x: hidden;
}
/*  Hero Section Optimization
   ============================= */
.hero-section {
  background: url('asset/images/brand/img-bg.jpg') center/cover no-repeat;
  position: relative;
}

.hero-content { 
  width: 100%;
  position: relative;
}

.hero-heading {
  font-size: 58px;
 
}
.hero-heading span {
  background: rgba(255, 102, 0, 0.7);
  padding: 0px 30px 2px;
  display: inline-block;
}

.hero-description span {
  background: rgba(255, 102, 0, 0.7);
  padding: 5px 15px;
  display: inline-block;
}

.hero-item {
  opacity: 0;
  position: absolute;
  width: 100%;
  top: 0; 
  left: 50%;
  transform: translateX(-50%); 
  transition: opacity 0.8s ease-in-out;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('asset/images/brand/matebg.png') center/cover no-repeat;
  opacity: 0.5;
}


.hero-item.active {
  opacity: 1;
  position: absolute; /* Keeps all items stacked */
}

.branding {
  height: 60px;
  border-radius: 8px;
}

@media (max-width: 768px) { 
  .hero-section-home {
    min-height: 90vh; /* Prevents overflow issues */
    padding: 20px; /* Adds spacing for smaller screens */
    text-align: center; /* Ensures alignment */
  }

  .hero-heading {
    font-size: 22px !important; /* Reduce heading size */
  }

  .hero-description {
    font-size: 14px !important; /* Reduce description size */
  }
}

/* Navbar Optimization
   ============================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.3s ease-in-out;
}
 .navbar-nav {
  gap: 15px; /* Adds space between nav items */
} 
.navbar-toggler {
  border: 2px solid #d7771d;
}

.navbar.scrolled {
  background-color: white !important;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  color: black;
}

.navbar.scrolled .nav-link {
  color: black;
}

.navbar.scrolled .nav-link:hover {
  color: #d7771d !important;
 
}

.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
  color: #fff;
  text-decoration: none;
}

.navbar-nav .nav-link:hover {
  color: #d7771d !important;
  text-decoration: underline;
  transition: color 0.3s;
}
.dropdown-item{
  font-size: 14px;
  font-weight: 500;
  padding: 9px 20px;
  color: #333;

}
.dropdown-item:hover {
  background: linear-gradient(to right, rgba(166, 208, 51, 0.68), rgba(47, 198, 254, 0.74));
}

.navbar-brand img {
  transition: opacity 0.3s ease-in-out;
  height: 60px;
}

.navbar-brand {
  position: relative;
  margin-left: auto;
}

.navbar-brand .scrolled-logo {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.navbar.scrolled .navbar-brand .default-logo {
  opacity: 0;
}

.navbar.scrolled .navbar-brand .scrolled-logo {
  opacity: 1;
}
/* Scrollbar Styling Optimization
   ============================= */
   ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ff9b20, #00F260);
    border-radius: 8px;
  }
/* Key Offerings
================= */

.offer-img {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
  transition: border 0.4s ease-in-out, transform 0.4s ease-in-out;
  border: 1px solid transparent;
}

.offer-item:hover .offer-img {
  border: 1px solid #ff9b20;
}
.offer-text {
  color: #333;
  padding: 12px;
  border-radius: 3px;
  margin: 0;
  transition: opacity 0.4s ease-in-out, color 0.4s ease-in-out;
}

.offer-item:hover .offer-text {
  color: #ff9b20;
}
/* Client Section CSS Start
=========================== */
#testimonial__video {
  position: absolute;
  top: 0;
  left: 0;
  height: max-content;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

.clientssec {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.8)center/cover no-repeat
}

/* Overlay Section CSS start
============================*/
.what-makes-us-different {
  background: url('/asset/images/brand/makeusdiifferenrt.png') no-repeat center center/cover;
  position: relative;
  background-attachment: fixed;
  padding: 80px 0;
}

.what-makes-us-different::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
}

.what-makes-us-different .container {
  position: relative;
  z-index: 2;
}

.content-box {
  padding: 20px;
  border-radius: 10px;

}
.content-box img {
  width: 50px;
  height: 50px;
}

@media (max-width: 992px) {
  .navbar-toggler {
    border: 2px solid #d7771d !important;
    padding: 5px;
    /* Optional: Adjust padding for better spacing */
  }

  .navbar-toggler-icon {
    background-image: none !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
  }

  .navbar-toggler-icon span {
    display: block;
    width: 100%;
    height: 1.4px;
    background-color: #d7771d;
    /* Change line color */
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width: 768px) {  /* For Medium and Large Screens */
  .navbar .container-fluid {
    padding-left: 100px !important; /* Keeps navbar aligned with section content */
    padding-right: 100px !important; /* Optional: Keeps balance */
  }

  .navbar-brand {
    margin-left: 0 !important; /* Ensures logo is left-aligned */
  }
}

@media (max-width: 768px) {  /* Mobile View */
  .navbar .container-fluid {
    justify-content: flex-start !important; /* Moves navbar items to the left */
    padding-left: 15px !important; /* Standard mobile spacing */
  }

  .navbar-brand {
    margin-left: 0 !important; /* Ensures logo stays at the left */
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  .navbar-toggler {
    margin-left: auto !important; /* Keeps toggler on the right */
  }
}
/* Jion Team Section 
====================*/
.jionTeam-bg {
  background: url('asset/images/brand/joinhdr.jpg') no-repeat center center/cover;

}
/* Connect With Us Section 
===========================*/
.connect-with-us {
  background: linear-gradient(to right, #719C2C, #2EA8C4);
  color: white;
  min-height: 200px;
  padding: 50px 20px;
}
.btn-outline-light:hover {
  color:#ff9800 !important;
}
/* Footer Section
================== */
.about-us {
  background-image: linear-gradient(to bottom, rgba(66, 73, 91, 0.94), rgba(99, 99, 99, 0.94)), url("asset/images/brand/footerbg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  min-height: 400px;
  padding: 50px 0;
}

.iso-logo {
  max-width: 150px;
  margin-top: 20px;
}

.list-unstyled li {
  font-size: 15px;
  margin-bottom: 10px;
}
.flag {
  width: 25px;
  margin-right: 10px;
}

.contact-list li {
  margin-bottom: 15px;
}
.footer ul li a {
  color: #ffffff;
}

.footer ul li a:hover {
  color: #f4b400;
}
 /* Copy Right Section 
 =====================*/
.social-symbol a {
  transition: color 0.5s ease-in-out;
}
.social-symbol a:nth-child(1):hover i,
.social-symbol a:nth-child(2):hover i,
.social-symbol a:nth-child(3):hover i {
  color: #1358cf !important; /* Common hover color */
}
.social-symbol a:nth-child(4):hover i {
  color: red !important;
}

/* Common CSS Section Strat
===========================*/
.commonbg-alignment {
  background-size: cover;
  min-height: 320px;
  position: relative;

}
.overlay-alignment {
  padding: 60px 0;
  background-attachment: fixed;
  position: relative;
}

.dot-icon {
  color: #ff9800;
  font-size: 12px;
}

.icon {
  font-size: 30px;
  color: #ff9800;
  margin-bottom: 10px;
}

.dash {
  display: inline-block;
  border-bottom: 2px solid rgba(100, 100, 102, 0.41);
  padding: 0 50px;
  margin-top: 10px;
  margin-bottom: 10px;
  width: fit-content; 
}

.highlight {
  color: #42495b;
}

/* Ai section CSS Start
=========================*/
.intelligence-bg {
  background: url('asset/images/brand/aibg.jpg') no-repeat center center/cover;
}

.usecase-bg {
  background: url('asset/images/brand/aiusecase.png') no-repeat center center/cover;
}

.service-box1 img{
  width: 33px;
}
.service-box img {
  transform: rotate(-45deg);
  width: 33px;
  vertical-align: -4px;
}

/* Full Life-Cycle Development CSS Start 
========================================*/
.unique-bg-1 {
  background: url('asset/images/brand/lifecyc-bg.jpg') no-repeat center center/cover;
}

.bespoke-bg {
  background: url('asset/images/brand/Bespoke-bg.jpg') no-repeat center center/cover;
}

.approach-tab .rounded-circle {
  width: 70px;
  height: 70px;
  transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.approach-tab.active .rounded-circle {
  background-color: #fe9b00 !important;
  border: none;
}
.approach-tab:not(.active) .rounded-circle {
  background-color: transparent;
  border: 1px solid #6c757d;
}

/* Analytics Section CSS 
=========================*/
.analytic-bg {
  background: url('asset/images/brand/analyticslive.jpg') no-repeat center center/cover;

}

.advAnalytics-bg {
  background: url('asset/images/brand/anlyticsmiddle.jpg') no-repeat center center/cover;
  background-attachment: fixed;
}


.nav-pills .nav-link::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  opacity: 0;
  transition: opacity 0.3s;
}

/* Show and color the triangle when active */
.nav-pills .nav-link.active::after {
  border-left-color: #5A5A5A;
  opacity: 1;
}

.nav-pills .nav-link {
  background-color: #FFFFFF;
  color: black;
  border-radius: 0;
  margin-bottom: 1px;
}

.nav-pills .nav-link.active {
  background-color: #5A5A5A;
  color: #FFFFFF;
}

/* Robotic and Automation CSS Start 
===================================*/
.auto-bg {
  background: url('asset/images/brand/rpahdr1.jpg') no-repeat center center;
}

.robotic-bg {
  background: url('asset/images/brand/rpa.png') no-repeat center center/cover;
}

.text-justify {
  text-align: justify !important;
}

.image-top {
  margin-right: 40%;
}

.industries {
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  min-height: 350px;
}

/* List items */
.industries ul li {
  font-size: 0.85rem;
  margin-bottom: 10px;
  font-weight: 300;
  text-align: left;
  position: relative;
  padding: 4px;
  line-height: 1.4;
}

/* Cloud Computing CSS 
====================*/
.cloud-computing-bg {
  background: url('asset/images/brand/cloudcomputing.jpg') no-repeat center center/cover;
}

/* blockchain secttion CSS
===========================*/
.blockchain-bg {
  background-image: url('asset/images/brand/blk.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.smart-bg {
  background: url('asset/images/brand/blockchain.jpg') no-repeat center center/cover;
}

/* DigItal Section CSS 
======================*/
.digital-bg {
  background: url('asset/images/brand/dgl.jpg') no-repeat center center/cover;
}

.digitalstrategy-bg {
  background: url('/asset/images/brand/digitalstrategy.jpg') no-repeat center center/cover !important;
}

.mt-5 {
  margin-top: 50px !important;
}

.mb-4 {
  margin-bottom: 40px !important;
}

/* EnterpriseBoat Section CSS
============================== */
.enterpriseboat-bg {
  background: url('asset/images/brand/chatbts.jpg') no-repeat center/cover;
}

.benefits-bg {
  background: url('/asset/images/brand/customizedchatbots.jpg') no-repeat center center/cover !important;
  min-height: 600px;
}

.ls-2 {
  letter-spacing: 0.08rem;
}

.enterAppl-bg {
  background-image:url(asset/images/brand/entapp.jpg);
  min-height: 320px;
  background-position: center;
  background-attachment: fixed;
}

.custom-list li {
  font-size: 16px;
  font-weight: 500;
  padding: 15px;
  background: #eeee;
  margin-bottom: 10px;
  border-radius: 5px;
  text-align: left;
  width: 100%;
}

/* Contact CSS start 
====================*/
.contact-bg {
  background: url('asset/images/brand/contacthdr.jpg') no-repeat center center/cover;

}
.contact-form {
  background: #fff;
}
.contact-form button {
  background-color: #6dc36d;
  color: #fff;
}

.contact-form button:hover {
 background-color: #6dc36d !important;
  color: #ff9800;
}

/* Jion Team Section CSS
========================= */

.crtimeline {
  position: relative;
  background: url('asset/images/brand/teambg.jpg') no-repeat center center/cover;
  color: white;
}

.timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
}

.timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 3px;
  background-color: #eeeeee;
  left: 50%;
  margin-left: -1.5px;
}

.timeline > li {
  margin-bottom: 20px;
  position: relative;
}

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}

.timeline > li:after {
  clear: both;
}

.timeline > li > .timeline-panel {
  width: 46%;
  float: left;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  padding: 20px;
  position: relative;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}

.timeline > li > .timeline-panel:before {
  position: absolute;
  top: 26px;
  right: -15px;
  display: inline-block;
  border-top: 15px solid transparent;
  border-left: 15px solid #ccc;
  border-bottom: 15px solid transparent;
  content: " ";
}


.timeline > li > .timeline-panel:after {
  position: absolute;
  top: 27px;
  right: -14px;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid #fff;
  border-right: 0 solid #fff;
  border-bottom: 14px solid transparent;
  content: " ";
}

.timeline > li > .timeline-badge {
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  top: 16px;
  left: 50%;
  margin-left: -25px;
  background-color: #999999;
  z-index: 100;
  border-radius: 50%;
}

.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}

.timeline-badge.primary {
  background-color: #2e6da4 !important;
}

.timeline-badge.success {
  background-color: #3f903f !important;
}

.timeline-badge.warning {
  background-color: #f0ad4e !important;
}

.timeline-badge.danger {
  background-color: #d9534f !important;
}

.timeline-title {
  margin-top: 0;
  color: #f39c12;
}

.timeline-body > p,
.timeline-body > ul {
  margin-bottom: 0;
  text-align: justify;
}

.timeline-body > p + p {
  margin-top: 5px;
}

@media (max-width: 767px) {
  ul.timeline:before {
    left: 40px;
  }

  ul.timeline > li > .timeline-panel {
    width: calc(100% - 90px);
  }

  ul.timeline > li > .timeline-badge {
    left: 15px;
    margin-left: 0;
    top: 16px;
  }

  ul.timeline > li > .timeline-panel {
    float: right;
  }

  ul.timeline > li > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
  }

  ul.timeline > li > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
  }
}
/* About Section CSS
===================== */
.aboutUs-bg{
  background: url('asset/images/brand/abt.jpg') no-repeat center center/cover;
}

.abtsrtitle h1 {
  font-size: 55px;
  font-weight: 600;
  color: #c1c1c1;
}

.abtsrtitle span {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  padding: 0px 140px;
  border-bottom-color: #888;
}
