

@font-face {
    font-family: 'aramebold';
    src: url('../fonts/fonnts.com-arame_bold.woff2') format('woff2'),
         url('../fonts/fonnts.com-arame_bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'aramethin';
    src: url('../fonts/fonnts.com-arame_thin.woff2') format('woff2'),
         url('../fonts/fonnts.com-arame_thin.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: '0arameregular';
    src: url('../fonts/fonnts.com-arame-regular.woff2') format('woff2'),
         url('../fonts/fonnts.com-arame-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


*, .btn-default, a, h1, h2, h3, h4, h5, h6, li, p, span, textarea, ul {
    margin: 0;
    padding: 0
}
a, a:focus, a:hover {
    text-decoration: none
}
li {
    list-style-type: none
}
body {
    overflow-x: hidden;
    font-family: "Satoshi", sans-serif;
    position: relative;
    scroll-behavior: smooth;
}
.container {
    max-width: 1450px;
}
.sub-btn {
    background: #EB2848;
    padding: 15px 35px;
    border-radius: 30px;
    color: #fff;
    box-shadow: inset 0px 5px 3px #0000004f;
    font-size: 18px;
    font-weight: 500;
}
.sub-btn:hover {
    color: #fff;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eb2848+0,f58645+100 */
background: linear-gradient(135deg,  #eb2848 0%,#f58645 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
box-shadow:none;
}

a.contact-button:hover {
    color: #fff;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eb2848+0,f58645+100 */
background: linear-gradient(135deg,  #eb2848 0%,#f58645 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
box-shadow:none;
}
.sub-heading {
    font-family: "aramebold";
    letter-spacing: -0.1px;
}
button#menu-toggle {
    display: none;
}
.mb-logo {
    z-index: 999;
    width: 120px;
    position: absolute;
    left: 19px;
}
.cp_wrapper {
  will-change: transform;
}
.cp_wrapper {
    width: 100%;
    margin-inline: auto;
    padding: 12px 0;
    background-color: #fff;
    border-radius: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}
.cp_wrapper.active {
    transform: translateX(0);
}
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.menu-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}
.logo-box img {
    max-width: 200px;
}
/* navbar  */
    /* Global Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDelay {
  0%,
  30% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes radialExpand {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideInStagger {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-fade-in-delay {
  animation: fadeInDelay 1.5s ease-out forwards;
}

/* Navbar Glassmorphism */
.navbar {
  padding: 1.5rem 0;
  backdrop-filter: blur(0px);
  background: transparent;
}

.navbar.scrolled {
  padding: 0.75rem 0;
}

.navbar-container {
  transition: all 0.3s ease;
}

/* Logo */
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.8),
    rgba(59, 130, 246, 0.8)
  );
  transition: all 0.3s ease;
}

.navbar.scrolled .logo-icon {
  width: 2rem;
  height: 2rem;
}

.navbar.scrolled .logo-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.logo-text {
  transition: all 0.3s ease;
}

.navbar.scrolled .logo-text {
  font-size: 1.125rem;
}

/* Navigation Links */
.nav-link {
    position: relative;
    color: black;
    font-weight: 500;
    font-size: 18px;
    padding: 0.5rem 20px;
    transition: color 0.3s ease;
    display: inline-block;
}

/* sub dropdown menu css  */
.nav-item{
    position: relative;
}
/* .dropinDropdown{
    display: none;
} */
.SubMenuDropdown {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  /* padding: 10px 0; */
  min-width: 200px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  z-index: 999;
}

.SubMenuDropdown li {
  padding: 10px 20px;
  white-space: nowrap;
  /* display: none; */
}

.SubMenuDropdown li:hover {
  background: #f2f2f2;
}

.nav-item:hover > .SubMenuDropdown {
  display: block !important;
}

/* end of subDropdown */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, black, #f63b3b);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 1);
}

.nav-link:hover::after {
  width: 100%;
}

/* Liquid Ink Bar Effect */
.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  /* background: rgba(168, 85, 247, 0.3); */
  transform: translateX(-50%);
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: blur(2px);
  border-radius: 2px;
}

.nav-link:hover::before {
  width: 120%;
}

/* CTA Button */
.cta-button {
  position: relative;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  color: white;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.navbar.scrolled .cta-button {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.cta-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-button:hover .cta-shine {
  left: 100%;
}
/* hero section canva */
.case-studies-index-1.industries-index-1 {
    overflow: hidden;
}
.industries-index-1 {
    background-image: url(../images/home-contact-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 60px 0 !important;
}
.align-items-center {
    align-items: center !important;
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}
.industries-index-1 .top-heading-sec h1 {
    width: 100% 580.156px;
    max-width: 550px;
    color: #191919;
}

.top-heading-sec h1 {
    font-size: 50px;
    font-weight: 400;
    color: #fff;
}
.industries-index-1 .top-heading-sec h1 span {
    background: linear-gradient(to right, #ea2848 0, #ba000f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.industries-index-1 .top-heading-sec h1 {
    width: 100%;
    max-width: 550px;
    color: #191919;
}

.top-heading-sec h1 {
    font-size: 50px;
    font-weight: 400;
    color: #fff;
}
.top-heading-sec h1 {
    font-size: 55px;
    font-weight: 800;
}
.industries-index-1 .top-heading-sec p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 60px 30px 0;
}
.top-heading-sec p{
    width: 100%;
    max-width: 760px;
}
.top-img-sec {
    display: flex;
    justify-content: end;
}
.top-img-sec img {
    width: 100%;
    border-radius: 50%;
    border: 20px solid #eb2848;
    max-width: 500px;
}
.top-img-sec img:hover{
    border: 20px solid #000000;
    transition: 1s;
}

section{
    padding: 60px 0 !important;
} 
/* end of canva hero section  */

/* about above footer  */
.about-index-7.industries-index-9.inner-index-9 {
    background: #161819;
    position: relative;
}
.inner-index-9 {
    padding: 40px 0;
    text-align: center;
}
.inner-index-9 p {
    color: whitesmoke;
    font-size: 20px;
    width: 60%;
    margin: 0 auto 40px;
}
.ready-build-sec h3 span {
    color: #eb2848;
}
.ready-build-sec h3 {
    color: white;
    font-size: 50px;
    padding-bottom: 1%;
}
.about-section .inner-column .buttons {
    justify-content: flex-start;
}


.about-index-6 {
    background-image: url(../images/aboutus-testimonial-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0 !important;
}
.industries-index-6 .our-choose-inner {
    text-align: center;
}
.our-choose-inner h3 {
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    background: linear-gradient(to right, #ea2848 50%, #ffffff 90%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.our-choose-inner p {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    padding: 20px 0;
    text-align: center;
}
.our-choose-inner-boxes {
    padding: 50px 0 0;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}
.choose-inner-box {
    display: -webkit-box;
    gap: 10px;
    cursor: pointer;
}
.need-our-icon {
    height: 50px;
    width: 50px;
    background: #ffffff url(../images/our-choose-icon-01.png) no-repeat;
    background-position: center;
    transition: all .5s ease-in-out;
    border-radius: 50px;
    display: flex;
}
.need-our-icon.our-icon-02 {
    background: #ffffff url(../images/our-choose-icon-02.png) no-repeat;
    background-position: center;
}
.need-our-icon.our-icon-03 {
    background: #ffffff url(../images/our-choose-icon-03.png) no-repeat;
    background-position: center;
}
.need-our-icon.our-icon-04 {
    background: #ffffff url(../images/our-choose-icon-04.png) no-repeat;
    background-position: center;
}
.choose-inner-box h4.sub-heading {
    color: #eb2848;
}
.choose-inner-box p
 {
    color: #ffffffa8;
}
.our-choose-inner-boxes .row {
--bs-gutter-x: 4.5rem;
}
i.fa-solid.fa-vest-patches {
    margin: auto;
    font-size: 35px;
}
i.fa-solid.fa-hat-cowboy{
    margin: auto;
    font-size: 30px;
}
i.fa-solid.fa-hat-cowboy-side {
    margin: auto;
    font-size: 30px;
}
i.fa-solid.fa-mitten {
    margin: auto;
    font-size: 30px;
}



/* end  */


/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}
.index-3 span{
    color: #EB2848;
}

button#mobileMenuBtn {
    display: none;
}

.mobile-menu-btn:hover .hamburger-line {
  background: linear-gradient(90deg, #000000, #3b82f6);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(0.5rem);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-0.5rem);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: relative;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 50%;
}

.mobile-menu.active .mobile-menu-content {
  transform: scale(1);
  border-radius: 0;
}

.close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease 0.3s, transform 0.3s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
}

.mobile-menu.active .close-btn {
  opacity: 1;
}

/* Mobile Navigation List */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-nav-item {
  opacity: 0;
  transform: translateX(-50px);
  margin: 1.5rem 0;
}

.mobile-menu.active .mobile-nav-item {
  animation: slideInStagger 0.5s ease forwards;
}

.mobile-menu.active .mobile-nav-item:nth-child(1) {
  animation-delay: 0.1s;
}

.mobile-menu.active .mobile-nav-item:nth-child(2) {
  animation-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-item:nth-child(3) {
  animation-delay: 0.3s;
}

.mobile-menu.active .mobile-nav-item:nth-child(4) {
  animation-delay: 0.4s;
}

.mobile-menu.active .mobile-nav-item:nth-child(5) {
  animation-delay: 0.5s;
}

.mobile-menu.active .mobile-nav-item:nth-child(6) {
  animation-delay: 0.6s;
}

.mobile-nav-link {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}

.mobile-nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #a855f7, #3b82f6);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.mobile-nav-link:hover {
  color: #a855f7;
  transform: translateX(10px);
}

.mobile-nav-link:hover::after {
  width: 100%;
}

.mobile-cta-button {
  padding: 1rem 3rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  color: rgb(12, 12, 12);
  font-weight: 700;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(168, 85, 247, 0.3);
}

.mobile-cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(168, 85, 247, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 0;
  }

  .navbar.scrolled {
    padding: 0.75rem 0;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff0000, #000000);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff0000, #000000);
}


/* nav bar end  */




aside#mega-menu--mobile{dispaly:none}
aside#mega-menu--mobile .mega__container{width: 100%;height: 100vh;height: 100svh;max-height: 100vh;max-height: 100svh;padding-top: 0;display: flex;flex-direction: column;overflow: hidden;}

aside#mega-menu--mobile .mega__container[data-active-depth="1"] button{transform: translateX(100%);opacity: 0;pointer-events: none;}

aside#mega-menu--mobile .mega__header{height: 60px;padding-inline: var(--padding-container-inline, 20px);background-color: #fff;}
aside#mega-menu--mobile .mega__header .mega__controls{width: 100%;height: 100%;display: flex;justify-content: flex-end;align-items: center;}
aside#mega-menu--mobile .mega__header .mega__controls button{font-family: var(--ff-sans);font-size: var(--fs-btn);text-transform: uppercase;letter-spacing: var(--ls-200);display: flex;align-items: center;gap: var(--gap-100, 4px);transition: var(--trans);}
aside#mega-menu--mobile .mega__header .mega__controls button .btn__icon,
aside#mega-menu--mobile .mega__header .mega__controls button .btn__label{display: flex;pointer-events: none;}

aside#mega-menu--mobile .mega__body{width: 100%;height: 100%;position: relative;}

aside#mega-menu--mobile .mega__screen{padding-inline: var(--padding-container-inline, 20px);width: 100%;height: 100%;overflow: auto;position: absolute;inset: 0;background-color: #fff;transition: var(--trans-500); top:20px;}
aside#mega-menu--mobile .mega__screen[data-active-menu="false"]{transform: translateX(100%);}
aside#mega-menu--mobile .mega__screen[data-active-menu="false"].stacked,
aside#mega-menu--mobile .mega__screen[data-active-menu="true"]{transform: translateX(0%);}

aside#mega-menu--mobile nav.navigation {
    display: flex;
    flex-direction: column;
    gap: var(--gap-300, 12px);
    height: 100%;
    overflow-x: scroll;
}
aside#mega-menu--mobile nav.navigation a.btn{--item-height: 24px;--icon-size: 12px;width: 100%;height: var(--item-height);padding:0;background-color: transparent;border: 0;color: #191919;justify-content: space-between;gap: var(--gap);text-align: left;font-size:16px;font-weight: 500;outline: none;margin: 10px 0;}
aside#mega-menu--mobile nav.navigation a.btn .btn__label{width: auto;height: 100%;display: flex;align-items: center;flex-shrink: 0; color:#191919;}
aside#mega-menu--mobile nav.navigation a.btn .btn__icon:empty{display: none;pointer-events: none; color:#fff; position: relative; top: -24px;}
aside#mega-menu--mobile nav.navigation a.btn .btn__icon{width:100%;height: 100%;display: inline-flex;align-items: center;justify-content: flex-end;pointer-events: all; position: relative; top: -24px;}
aside#mega-menu--mobile nav.navigation a.btn .btn__icon svg{width: var(--icon-size);height: var(--icon-size);pointer-events: none; color:#191919;}

/* Default nav style (white for inner pages) */
#mainHeader .nav a {
  color: #fff;
  transition: 0.3s;
}


/* Home page default â†’ black text */
.home-page #mainHeader .nav a {
  color: #000;
}

/* Sticky navbar background */
#mainHeader.sticky {
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Sticky navbar text color */
#mainHeader.sticky .nav a {
  color: #000 !important;
}

/* For dark inner page: sticky color should remain white */
.inner-page #mainHeader.sticky {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(5px);
}

.inner-page #mainHeader.sticky .nav a {
  color: #fff !important;
}

.top-header-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.navbar {
    padding: 15px 40px;
    position: relative;
}
.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    align-items: center;
}
.menu li a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}
/*maga menu*/
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
}
.menu-left a.tablinks:hover, .menu-left a.tablinks.active {
    color: #ee2737;
}
.menu-left a.tablinks::before {
    content: "";
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #ee2737;
    opacity: 0;
    transition: opacity .3s ease;
}

.menu-left a.tablinks:hover::before,
.menu-left a.tablinks.active::before {
    opacity: 1;
}
.top-header-sec {
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:80px;
}
.navbar ul {
    list-style:none;
    display:flex;
    gap:25px;
    align-items:center;
}
.navbar ul li {
    position:relative;
}
.navbar ul li a {
    text-decoration: none;
    color: black;
}
.navbar ul li a:hover {
    color:#ee2737;
}
li.nav-item a:visited {
    color: black;
}
.dropdown:hover .services-menu {
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.inner-menu-box {
    display:flex;
    gap:30px;
    width:100%;
}
.menu-left a {
    padding:8px 12px;
    border-radius:4px;
    color:#374151;
    text-decoration:none;
    display:block;
    transition:.2s;
}
.menu-left a:hover,.menu-left a.active {
    color:#2563eb;
    font-weight:600;
}
.tabcontent {
    display:none;
    opacity:0;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    transition:opacity .3s ease;
}
.tabcontent.show {
    display:block;
    opacity:1;
    position:relative;
}
nav ul li.dropdown {
    position: static;
} 
.menu-toggle2 {
    display:none;
    font-size:1.5rem;
    cursor:pointer;
    z-index:1101;
    color: #fff;
}  
.tabs-menu-links {
    display: flex;
    justify-content: space-between;
    width: 420px;
    padding: 50px 0 0;
}
.tabs-menu-links ul {
    display: block !important;
}
.tabs-menu-links ul li {
    padding: 8px 0;
}
.tabs-menu-links ul li a {
    padding: 5px 0;
}
.tabs-menu-links ul li a {
    color: #191919;
    font-size: 16px;
}
.tabcontent h3 {
    margin-bottom: 10px;
    color: #191919;
    font-size: 30px;
}
.tabcontent p {
    color: #191919;
    font-size: 16px;
    width: 100%;
    max-width: 710px;
}
.menu-left a.tablinks {
    position: relative;
    display: block;
    padding: 10px 1px;
    color: #191919;
    text-decoration: none;
    font-size: 17px;
    transition: all .3s ease;
}
.menu-left {
    display:flex;
    flex-direction:column;
    gap:1px;
    border-right:1px solid #eee;
    width: 300px;
}
.menu-center-content {
    padding-left: 20px;
    position: relative;
    width: 650px;
}
.menu-banner img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    width: 350px;
}
.services-menu {
    position: absolute;
    top: 100%;
    left: -370px;
    width: 1430px;
    background: #fff;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s ease;
    z-index: 99;
    border-radius: 10px;
}
nav ul li.dropdown:hover .services-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu-center-content.solutions-tab-menu {
    width: 100%;
    display: flex;
}
.solutions-tab-menu .tabs-menu-links {
    width: 100%;
    padding: 50px 100px 0 0;
}
.tabs-menu-links ul li p {
    font-size: 12px;
    font-weight: 500;
    padding: 5px 0 0;
}
a.phone img {
    background: #F58845;
    width: 50px;
    padding: 14px;
    border-radius: 50px;
    box-shadow: inset 0px 5px 3px #00000036;
}
a.contact-button {
    background: #EB2848;
    padding: 10px 35px;
    border-radius: 30px;
    color: #fff;
    box-shadow: inset 0px 5px 3px #0000004f;
    font-size: 18px;
}
.contact {
    display: flex;
    align-items: center;
    gap: 15px;
}
/*maga menu*/

.index-2 .slider {
    padding: 40px 0;
}
.slide-track {
    width: 100%;
    display: flex;
    gap: 3em;
    overflow: hidden;
}  
.slide .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.4s ease;
}
.slide:hover .overlay {
  background: rgba(0, 0, 0, 0.3);
}
.index-2 .slide img {
    animation: scroll 60s linear infinite;
}
.slide {
  transition: flex 0.5s ease, transform 0.4s ease, filter 0.4s ease;
}
.slide:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}
.slide-content p {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 20px 0;
}
.slide-content img {
    margin: 0 0 30px;
}



.index-3 {
    padding: 0 0 0;
}
.expertise-sec h2 {
    font-size: 40px;
    font-weight: 600;
    color: #191919;
    line-height: 60px;
    margin: 0 0 30px;
    width: 100%;
    max-width: 530px;
    letter-spacing: -1px;
}
.expertise-sec p {
    font-size: 18px;
    font-weight: 500;
    color: #191919;
    margin: 0 0 50px;
    width: 100%;
    max-width: 530px;
}
.expertise-box h3 {
    font-size: 30px;
    color: #EC2F48;
    padding: 15px 0;
    line-height: 45px;
}
.expertise-box {
    background-image: url(../images/expertise-box-bg.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    /* padding: 40px 30px; */
    border-radius: 20px;
    box-shadow: 0px 0px 3px #b7b7b7;
    margin: 0 0 50px;
    height: 320px;
    cursor: pointer;
}
.expertise-box p {
    font-size: 16px;
    font-weight: 500;
    color: #191919;
}
.expertise-box img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    
}
.index-4 h2 span {
    color: #EB2848;
}
.expertise-contant-box {
    display: flex;
    gap: 40px;
}
.expertise-box-sec.expertise-box-sec-02 {
    margin-top: 50px;
}
.flip-card-box {
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}
.flip-inner {
    width: 100%;
    height: 100%;
    transition: 0.7s ease;
    transform-style: preserve-3d;
}
.flip-card-box:hover .flip-inner {
    transform: rotateY(180deg);
}
.flip-card-box:hover .flip-front {
    display: none;
}
.expertise-box-sec {
    width: 100%;
}
.flip-front,
.flip-back {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    backface-visibility: hidden;
    border-radius: 20px;
}
.flip-front {
    background-image: url(../images/expertise-box-bg.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}
.flip-back {
    padding: 27px 30px;
    transform: rotateY(180deg);
    background: transparent;
    color: #fff;
    top: -25px;
    backface-visibility: hidden;
}
.flip-back p {
    margin: 0 0 20px;
}
.flip-back h3 {
    font-size: 20px;
}
.flip-back .sub-btn {
    padding: 10px 20px;
    font-size: 14px;
}





.index-4 {
    background-image: url(../images/intelligence-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0 !important;
}
.intelligence-sec h2 {
    font-size: 40px;
    font-weight: 600;
    color: #191919;
    margin: 0 0 10px;
}
.intelligence-sec p {
    color: #191919;
    font-size: 22px;
    font-weight: 300;
}
.intelligence-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.intelligence-sec p span {
    color: #EB2848;
    font-weight: 500;
}
.index-4 .tab-content {
    display: none;
    margin-top: 15px;
    padding: 10px;
}
.index-4 .tab-content.active {
    display: block;
}
.tabs.progress-tab-tow {
    width: 100%;
    margin: 0px auto 30px;
}
.tabs-project-sec .tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #e5e5e5;
    margin-bottom: 20px;
    margin-top: 50px;
}
.tabs-project-sec .tab.active {
    color: #EC3048;
    border-bottom: 3px solid #f58845;
    font-size: 20px;
    font-weight: 500;
}
.tabs-project-sec .tab {
    padding: 10px 20px;
    cursor: pointer;
    color: #000000;
    font-size: 20px;
    font-weight: 500;
}
.tabs-box-img {
    background: #F0F0F0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 0px 3px #b7b7b7;
}
.intelligence-box-img {
    width: 100%;
}
.intelligence-anchor {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}
.intelligence-anchor a {
    color: #727272;
    font-size: 16px;
    font-weight: 500;
    border: 1px dashed #f58845;
    padding: 5px 5px;
    border-radius: 10px;
    background: #fff;
}
.intelligence-boxes h3 {
    color: #EC2F48;
    font-size: 28px;
    padding: 0 0 10px;
}
.intelligence-boxes p {
    color: #000;
    font-size: 18px;
    font-weight: 900;
    padding: 15px 50px 5px 0;
}
.intelligence-boxes {
    padding: 0 0px 10px 20px;
}
.tab-content-btn a {
    display: flex;
    justify-content: end;
    padding-right: 20px;
}
.index-5 {
    background-image: url(../images/applied-sec-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 70px 0;
}
.applied-sec h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
}
.applied-sec h6 i {
    color: #eb2848;
    padding: 0 12px 0 0;
}
.applied-sec p {
    color: #fff;
    font-size: 18px;
    font-weight: 100;
    padding: 10px 0 20px;
    width: 100%;
    max-width: 950px;
}
.applied-sec h6 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 20px;
}
.applied-ul {
    margin: 0 0 40px;
}
.index-7 .owl-nav {
    display: none;
}
.index-6 {
    padding: 70px 0;
}
.home-industries-sec h2 {
    color: #191919;
    font-size: 40px;
    font-weight: 600;
    padding: 0 0 10px;
}
.home-industries-sec p {
    color: #191919;
    font-size: 32px;
    font-weight: 300;
}
.home-industries-sec p span {
    color: #EB2848;
    font-weight: 500;
}
.home-industries-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 0;
}
.home-industries-icons a img {
    display: block;
    background: #F0F0F0;
    padding: 25px 35px;
    border-radius: 20px;
    margin: 0 0 10px;
    box-shadow: 0px 0px 3px #b7b7b7;
    transition: 0.3s ease;
}
.home-industries-icons a:hover img {
    background: #fff;
    transform: translateY(-2px);
}
.home-industries-icons a {
    display: block;
    text-align: center;
    color: #000;
    font-size: 18px;
    font-weight: 500;
}
.index-7 {
    background-image: url(../images/testimonial-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0;
}
.testimonial-heading h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 600;
    padding: 0 0 10px;
}
.testimonial-heading p {
    color: #ffffff;
    font-size: 32px;
    font-weight: 300;
}
.testimonial-slider img {
    width: 100%;
    max-width: 250px;
}
.testimonial-slider p {
    color: #ffffff;
    font-size: 18px;
    padding: 10px 0 20px;
}
.testimonial-slider h4 {
    color: #fff;
    font-size: 22px;
}
.testimonial-slider h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 100;
    padding: 5px 0 0;
 }

.index-8 {
    padding: 70px 0;
    background-image: url(../images/home-contact-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.contact-form .form-group {
    display: flex;
    flex-direction: column;
    padding: 0px 0 30px;
}
.contact-form input, select, textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #404040;
    padding: 8px 0;
    color: #858585;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
}
.contact-form input:focus, select:focus, textarea:focus {
    border-color: #ff4040;
}
.contact-form textarea {
    resize: none;
    height: 80px;
    margin-bottom: 20px;
}
.contact-form .iti {
    width: 100%;
}
.contact-heading h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 600;
    padding: 0 0 10px;
}
.contact-heading p {
    color: #ffffff;
    font-size: 32px;
    font-weight: 300;
}
.contact-heading {
    padding: 0 0 40px;
}
.metrics-grid {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: flex-end;
}
.metric .number {
    font-size: 46px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #fff;
    text-align: end;
}
.metric .label {
    font-size: 18;
    color: #aaa;
    font-weight: 500;
}
.metric {
    margin: 0 0 30px;
}
.index-9 {
    background: #EDEDED;
}
.logos-sec {
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
}
.logos-sec img {
    width: 100%;
    max-width: 100px;
}
footer {
    padding: 70px 0 0;
}
.footer-logo p {
    color: #000;
    font-size: 18px;
    padding: 10px 0 0;
}
footer h6 {
    font-size: 20px;
    color: #191919;
    padding: 10px 0 20px;
    font-weight: 600;
}
footer ul li a {
    color: #3D3D3D;
    font-size: 16px;
    font-weight: 500;
}
footer ul li a:hover {
    color: #EB2848;
}
footer ul li i {
    color: #3D3D3D;
    font-size: 14px;
}
footer ul li a:hover i {
    color: #EB2848;
}

footer ul li {
    padding: 0 0 10px;
}
.email-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.email-footer a {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
}
.email-footer a:hover {
    color: #eb2848;
}
.footer-links {
    padding: 0 0 0 40px;
}
footer h4 {
    font-size: 20px;
    color: #191919;
    padding: 30px 0;
    font-weight: 600;
}
.address-sec h5 {
    color: #191919;
    font-weight: 600;
    padding: 20px 0 10px;
}
.address-sec p {
    color: #3d3d3d;
    font-size: 16px;
    font-weight: 300;
    padding: 0 50px 0 0;
}
.rights-sec {
    background: #191919;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 16px;
    margin-top: 50px;
}
.social-icons {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}
.social-icons a {
    color: #3D3D3D;
    font-size: 18px;
    transition: 0.3s;
}
.social-icons a:hover {
    color: #e74c3c;
}
@media screen and (max-width: 768px) {
  .faq-title { font-size: 2rem; }
  .faq-question { font-size: 1rem; }
  .faq-answer { font-size: 0.95rem; }
}
@keyframes scroll {
  0% {transform: translateX(0);}
  100% {transform: translatex(-1000%)}
}
.home-banner-sec h1 {
    color: #191919;
    font-size: 38px;
    font-weight: 600;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.home-banner-sec p {
    color: #191919;
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    max-width: 900px;
    margin: 10px auto 50px;
}
.top-header-sec {
    max-width: 1350px;
    display: flex;
    justify-content: space-between;
}
/* ABOUT US PAGE  */
       a,
        a:hover,
        a:focus,
        a:active {
            text-decoration: none;
            outline: none;
        }
        a,
        a:active,
        a:focus {
            color: #6f6f6f;
            text-decoration: none;
            transition-timing-function: ease-in-out;
            -ms-transition-timing-function: ease-in-out;
            -moz-transition-timing-function: ease-in-out;
            -webkit-transition-timing-function: ease-in-out;
            -o-transition-timing-function: ease-in-out;
            transition-duration: .2s;
            -ms-transition-duration: .2s;
            -moz-transition-duration: .2s;
            -webkit-transition-duration: .2s;
            -o-transition-duration: .2s;
        }
        
        ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        img {
    max-width: 100%;
    height: auto;
}
        section {
            padding: 60px 0;
        }

.sec-title{
  position:relative;
  z-index: 1;
  margin-bottom:60px;
}

.sec-title .title{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #ff2222;
  font-weight: 500;
  margin-bottom: 15px;
}

.sec-title h2{
  position: relative;
  display: block;
  font-size:40px;
  line-height: 1.28em;
  color: #222222;
  font-weight: 600;
  padding-bottom:18px;
}

.sec-title h2:before{
  position:absolute;
  content:'';
  left:0px;
  bottom:0px;
  width:50px;
  height:3px;
  background-color:#d1d2d6;
}
.sec-title .text{
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
  margin-top: 35px;
}
.sec-title.light h2{
  color: #ffffff;
}
.sec-title.text-center h2:before{
  left:50%;
  margin-left: -25px;
}
.list-style-one{
  position:relative;
}
.list-style-one li{
  position:relative;
  font-size:16px;
  line-height:26px;
  color: #222222;
  font-weight:400;
  padding-left:35px;
  margin-bottom: 12px;
}
.list-style-one li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 18px;
    padding: 0px;
    color: #ff2222;
    font-weight: 600;
    -moz-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1.6;
    font-family: "Font Awesome 5 Free";
}
.list-style-one li a:hover{
  color: #44bce2;
}
.btn-style-one{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 30px;
  color: #ffffff;
  padding: 10px 30px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.02em;
  background-color: #ff2222;
}
.btn-style-one:hover{
  background-color: #001e57;
  color: #ffffff;
}
.about-section{
  position: relative;
  padding: 120px 0 70px;
}
.about-section .sec-title{
  margin-bottom: 45px;
}
.about-section .content-column{
  position: relative;
  margin-bottom: 50px;
}
.about-section .content-column .inner-column{
  position: relative;
  padding-left: 30px;
}
.about-section .text{
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
}
.about-section .list-style-one{
  margin-bottom: 45px;
}
.about-section .btn-box{
  position: relative;
}
.about-section .btn-box a{
  padding: 15px 50px;
}
.about-section .image-column{
  position: relative;
}
.about-section .image-column .text-layer{
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}
.about-section .image-column .inner-column{
  position: relative;
  padding-left: 120px;
  padding-bottom: 125px;
}
.about-section .image-column .inner-column:before{
  position: absolute;
  left: -75px;
  top: 65px;
  height: 520px;
  width: 520px;
  background-image:url(assets\images\black-circle.png);
  content: "";
}
.about-section .image-column .image-1{
  position: relative;
  width: 80%;
  height: 55vh;
}
.image-1 img{
    object-fit: fill;
    height: 55vh;
}
.about-section .image-column .image-2{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 30vh;
}
.image-2 img{
    object-fit: fill;
        margin-top: 11%;
    max-width: 64%;
}
.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img{
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
}
.about-section .image-column .video-link{
  position: absolute;
  left: 70px;
  top: 170px;
}
.about-section .image-column .video-link .link{
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.about-section .image-column .video-link .link:hover{
  background-color: #191e34;
  color: #fff
}
.sec-title span{
    color: red;
    font-weight: 900;
}
/* about banner  */
.bannerAbout {
    padding: 6em 0 8em 0 !important;
    text-align: center;
  width: 100%;
  background-image: url("../images/background_about us.png");
  background-repeat: repeat;
  z-index: 1;
  background-color: rgb(0, 0, 0);
}
.border {
    width: 60%;
    margin: 0 auto;
    border: 5px solid #fff;
    z-index: 9999;
  border-bottom: 0;
}
.banner h2 {
    margin: 0;
    font-size: 3em;
    color: rgb(255, 255, 255);
    background-color: #000;
    width: 50%;
    margin: auto;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    padding: 0.5em 0 0 0;
    z-index: 9999;
}
.banner h2 span {
    color: rgb(235 40 72);
}
.banner p {
    color: #ddb5bb;
    background-color: #000;
    font-size: 1.5em;
    width: 50%;
    margin: auto;
    font-variant: small-caps;
    font-weight: 900;
    font-weight: bold;
    line-height: 2em;
    letter-spacing: 2px;
  padding: .5em 0 1em 0;
  z-index: 9999;
}
.border-bottom {
    border-top: 0;
    border-bottom: 1px solid #fff !important;
    z-index: 9999;
}

/* end banner  */

.service-index-1 {
    padding: 70px 0 !important;
    background: url(../images/service-bg2.jpg);
    background-size: cover;
    background-repeat: no-repeat !important;
}
.service-index-1 .align-items-center {
    align-items: center !important;
    padding-top: 10px;
}
.service-index-1 .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
    padding-top: 50px;
}
.service-index-1 .top-heading-sec h1 {
    font-size: 45px;
    font-weight: 600;
    color: #eb2848;
    width: 85%;
    font-family: 'aramebold';
    /* text-shadow: -4px 2px 4px rgba(0, 0, 0, 0.5); */
    background-color: #000000c4;
    padding: 5px;
}


.service-index-1 .sub-heading {
    font-family: "Afacad";
}

.service-index-1 .top-heading-sec p {
    width: 100%;
    max-width: 699px;
    color:#fff;
    font-size: 16px;
    padding-top: 10px;
    margin-bottom: 28px;
    background-color: #000000c4;
    font-family: sans-serif;
    padding: 5px;
}
.inner-index-1 {
    background: #F6F6F6;
    padding: 70px 0;
}
.inner-index-1 .revolution-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner-index-1 .revolution-heading h3 {
    width: 100%;
    color: #191919;
    font-size: 40px;
    font-weight: 400;
    padding: 10px 15px 0px 0;
}
 .inner-index-1 .revolution-heading h3 span {
    background: linear-gradient(to right, #FF2B3C 0, #121212 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "aramebold";
}
.inner-index-1 .revolution-heading p {
    width: 50%;
    font-size: 16px;
    color: #191919;
    font-weight: 400;
    padding: 0 0 0 100px;
}
.index-5 {
    background-image: url(../images/delivering-bg.png) !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 75px 0;
}
.index-5 .align-items-center {
    align-items: center !important;
}
 .index-5 .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}
.delivering-heading h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 400;
}
.delivering-heading h2 span {
    background: linear-gradient(to right, #FF2B3C 0, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "aramebold";
}
.delivering-heading h2 span {
    color: #00aaff;
}
.delivering-heading p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 400px;
    font-weight: 300;
}
.delivering-heading .sub-btn-contact .Button_button--primary__oOTAB {
    background: #fff;
}
.metric {
    text-align: left;
    width: 40%;
}
.metric .number {
    font-size: 46px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #fff;
}
.metric .label {
    font-size: 1rem;
    color: #aaa;
    font-weight: 500;
    text-align: end;
}
.metrics-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

/* service2  */
.service-index-2 {
    padding: 90px 0 !important;
    background: url(../images/service-bg7.jpg);
    background-size: cover;
    background-repeat: no-repeat !important;
}
.service-index-2  .align-items-center {
    align-items: center !important;
    padding-top: 10px;
}
.service-index-2  .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
    padding-top: 50px;
}
.service-index-2 .top-heading-sec h1 {
    font-size: 45px;
    font-weight: 600;
    color: #eb2848;
    width: 85%;
    font-family: 'aramebold';
    /* text-shadow: -4px 2px 4px rgba(0, 0, 0, 0.5); */
    background-color: #000000c4;
    padding: 5px;
}


.service-index-2 .sub-heading {
    font-family: "Afacad";
}

.service-index-2  .top-heading-sec p {
    width: 100%;
    max-width: 699px;
    font-size: 16px;
    padding-top: 10px;
    margin-bottom: 28px;
    color: #fff;
    background-color: #000000c4;
    font-family: sans-serif;
    padding: 5px;
}
.inner-index-2 {
    background: #F6F6F6;
    padding: 70px 0;
}
.inner-index-2 .revolution-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner-index-2 .revolution-heading h3 {
    width: 100%;
    color: #191919;
    font-size: 40px;
    font-weight: 400;
    padding: 10px 15px 0px 0;
}
 .inner-index-2 .revolution-heading h3 span {
    background: linear-gradient(to right, #FF2B3C 0, #121212 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "aramebold";
}
.inner-index-2 .revolution-heading p {
    width: 50%;
    font-size: 16px;
    color: #191919;
    font-weight: 400;
    padding: 0 0 0 100px;
}
/* service 3  */
.service-index-3 {
    padding: 90px 0 !important;
    background: url(../images/service-bg3.jpg);
    background-size: cover;
    background-repeat: no-repeat !important;
}
.service-index-3  .align-items-center {
    align-items: center !important;
    padding-top: 10px;
}
.service-index-3  .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
    padding-top: 50px;
}
.service-index-3 .top-heading-sec h1 {
    font-size: 45px;
    font-weight: 600;
    color: #eb2848;
    width: 85%;
    font-family: 'aramebold';
    text-shadow: -4px 2px 4px rgba(0, 0, 0, 0.5);
    background-color: #000000c4;
    padding: 5px;
}


.service-index-3 .sub-heading {
    font-family: "Afacad";
}

.service-index-3  .top-heading-sec p {
    width: 100%;
    max-width: 699px;
    font-size: 16px;
    padding-top: 10px;
    margin-bottom: 28px;
    font-family: sans-serif;
    color: #fff;
    background-color: #000000c4;
    padding: 5px;
}
.inner-index-3 {
    background: #F6F6F6;
    padding: 70px 0;
}
.inner-index-3 .revolution-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner-index-3 .revolution-heading h3 {
    width: 100%;
    color: #191919;
    font-size: 40px;
    font-weight: 400;
    padding: 10px 15px 0px 0;
}
 .inner-index-3 .revolution-heading h3 span {
    background: linear-gradient(to right, #FF2B3C 0, #121212 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "aramebold";
}
.inner-index-3 .revolution-heading p {
    width: 50%;
    font-size: 16px;
    color: #191919;
    font-weight: 400;
    padding: 0 0 0 100px;
}
/* service 4  */
.service-index-4 {
     padding: 90px 0 !important;
    background: url(../images/service-bg4.jpg);
    background-size: cover;
    background-repeat: no-repeat !important;
}
.service-index-4  .align-items-center {
    align-items: center !important;
    padding-top: 10px;
}
.service-index-4  .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
    padding-top: 50px;
}
.service-index-4 .top-heading-sec h1 {
    font-size: 45px;
    font-weight: 600;
    color: #eb2848;
    width: 85%;
    font-family: 'aramebold';
    text-shadow: -4px 2px 4px rgba(0, 0, 0, 0.5);
    background-color: #000000c4;
    padding: 5px;
}


.service-index-4 .sub-heading {
    font-family: "Afacad";
}

.service-index-4  .top-heading-sec p {
    width: 100%;
    max-width: 699px;
    color: #fff;
    padding: 5px;
    font-size: 16px;
    padding-top: 10px;
    margin-bottom: 28px;
    font-family: sans-serif;
    background-color: #000000c4;
}
.inner-index-4 {
    background: #F6F6F6;
    padding: 70px 0;
}
.inner-index-4 .revolution-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner-index-4 .revolution-heading h3 {
    width: 100%;
    color: #191919;
    font-size: 40px;
    font-weight: 400;
    padding: 10px 15px 0px 0;
}
 .inner-index-4 .revolution-heading h3 span {
    background: linear-gradient(to right, #FF2B3C 0, #121212 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "aramebold";
}
.inner-index-4 .revolution-heading p {
    width: 50%;
    font-size: 16px;
    color: #191919;
    font-weight: 400;
    padding: 0 0 0 100px;
}

/* service 5 */
.service-index-5 {
    padding: 90px 0 !important;
    background: url(../images/service-bg5.jpg);
    background-size: cover;
    background-repeat: no-repeat !important;
}
.service-index-5  .align-items-center {
    align-items: center !important;
    padding-top: 10px;
}
.service-index-5  .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
    padding-top: 50px;
}
.service-index-5 .top-heading-sec h1 {
    font-size: 45px;
    font-weight: 600;
    color: #eb2848;
    width: 85%;
    font-family: 'aramebold';
    text-shadow: -4px 2px 4px rgba(0, 0, 0, 0.5);
    background-color: #000000c4;
    padding: 5px;
}


.service-index-5 .sub-heading {
    font-family: "Afacad";
}

.service-index-5  .top-heading-sec p {
    width: 100%;
    max-width: 699px;
    color: #fff;
    font-size: 16px;
    padding-top: 10px;
    margin-bottom: 28px;
    padding: 5px;
    font-family: sans-serif;
    background-color: #000000c4;
}
.inner-index-5 {
    background: #F6F6F6;
    padding: 70px 0;
}
.inner-index-5 .revolution-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner-index-5 .revolution-heading h3 {
    width: 100%;
    color: #191919;
    font-size: 40px;
    font-weight: 400;
    padding: 10px 15px 0px 0;
}
 .inner-index-5 .revolution-heading h3 span {
    background: linear-gradient(to right, #FF2B3C 0, #121212 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "aramebold";
}
.inner-index-5 .revolution-heading p {
    width: 50%;
    font-size: 16px;
    color: #191919;
    font-weight: 400;
    padding: 0 0 0 100px;
}


/* service 6 */
.service-index-6 {
    padding: 90px 0 !important;
    background: url(../images/service-bg6.jpg);
    background-size: cover;
    background-repeat: no-repeat !important;
}
.service-index-6  .align-items-center {
    align-items: center !important;
    padding-top: 10px;
}
.service-index-6  .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
    padding-top: 50px;
}
.service-index-6 .top-heading-sec h1 {
    font-size: 45px;
    font-weight: 600;
    color: #eb2848;
    width: 85%;
    font-family: 'aramebold';
    text-shadow: -4px 2px 4px rgba(0, 0, 0, 0.5);
    background-color: #000000c4;
    padding: 5px;
}


.service-index-6 .sub-heading {
    font-family: "Afacad";
}

.service-index-6  .top-heading-sec p {
    width: 100%;
    max-width: 699px;
    font-size: 16px;
    padding-top: 10px;
    margin-bottom: 28px;
    padding: 5px;
    font-family: sans-serif;
    color: #fff;
    background-color: #000000c4;
}
.inner-index-6 {
    background: #F6F6F6;
    padding: 70px 0;
}
.inner-index-6 .revolution-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inner-index-6 .revolution-heading h3 {
    width: 100%;
    color: #191919;
    font-size: 40px;
    font-weight: 400;
    padding: 10px 15px 0px 0;
}
 .inner-index-6 .revolution-heading h3 span {
    background: linear-gradient(to right, #FF2B3C 0, #121212 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "aramebold";
}
.inner-index-6 .revolution-heading p {
    width: 50%;
    font-size: 16px;
    color: #191919;
    font-weight: 400;
    padding: 0 0 0 100px;
}
/* Services main page  */
.Services-index-0 {
    overflow: hidden;
}
.Services-index-0 {
    background: #fff url(../images/delivering-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 70px 0;
}
.Services-index-0 .align-items-center {
    align-items: center !important;
}
.Services-index-0 .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}
.Services-index-0 .top-heading-sec h1 {
    width: 100%;
    max-width: 550px;
    color: #191919;
        font-family: "aramebold";
}
.Services-index-0 .top-heading-sec h1 {
    font-size: 60px;
    font-weight: 400;
    color: #fff;
}

.Services-index-0 .sub-heading {
        font-family: "aramebold";
}
.Services-index-0 .top-heading-sec h1 span {
    background: linear-gradient(to right, #946565 0, #FF2B3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "aramebold";
}
.Services-index-0 .top-heading-sec p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    padding: 5px 100px 25px 0;
    width: 100%;
    max-width: 760px;
}
.Services-index-0 .columns {
    display: flex;
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: 0 0 0 auto;
}
.Services-index-0 .column {
    flex: 1;
    height: 600px;
    position: relative;
}

.Services-index-0 .track{
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY();
}
.track .row{
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y:0;
}
.Services-index-0 .track .item{
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    background: #fff;
    margin-bottom: 40px;
}
.Services-index-0 .item img{
    width: 100%;
    display: block;
    border-radius: 18px;
}

/* Service page index 1 */

.Services-index-1 {
    padding: 70px 0;
    background: #ffffff;
    text-align: left;
}
.explore-heading-sec h3 {
    font-size: 39px;
    font-weight: 400;
    color: #191919;
    width: 100%;
    max-width: 950px;
    text-align: center;
    margin: 0 auto;
    font-family: "aramebold";
}
.explore-heading-sec h3 span {
    background: linear-gradient(to right, #FF2B3C 0, #121212 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "aramebold";
}
.explore-heading-sec p {
    color: #444C53;
    font-size: 16px;
    font-weight: 400;
    padding-top: 20px;
    width: 100%;
    max-width: 1050px;
    text-align: center;
    margin: 0 auto 30px;
}
.Services-index-1 .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}
.case-studie-box {
    margin: 20px 0;
}
.case-studie-box img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}
.case-studie-box-text {
    background: url(../images/case-studie-box-bg.png);
    display: flex;
    padding: 20px 20px;
    border-radius: 0 0 10px 10px;
    height: 110px;
}
.case-studie-box-text h4 {
    background: linear-gradient(to right, #FF2B3C 0, #121212 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Afacad";
    font-size: 28px;
    width: 50%;
    font-weight: 400;
}
.case-studie-box p {
    color: #191919;
    font-size: 18px;
}
#woven-heading{
    color: #EC3048;
    border-bottom: 3px solid #f58845;
    font-size: 20px;
    font-weight: 500;
}
#sublimated-heading{
    color: #EC3048;
    border-bottom: 3px solid #f58845;
    font-size: 20px;
    font-weight: 500;
}
#leather-heading{
    color: #EC3048;
    border-bottom: 3px solid #f58845;
    font-size: 20px;
    font-weight: 500;
}
#pvc-heading{
    color: #EC3048;
    border-bottom: 3px solid #f58845;
    font-size: 20px;
    font-weight: 500;
}
#chenille-heading{
    color: #EC3048;
    border-bottom: 3px solid #f58845;
    font-size: 20px;
    font-weight: 500;
}
