

@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;
  /* backdrop-filter: blur(20px); */
  /* background: rgba(15, 23, 42, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
    0 0 20px 0 rgba(168, 85, 247, 0.1); */
}

.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;
}


/* 
.dropinDropdown{
    display:none;
} 

.SubMenuDropdown{
    display: flex;
    flex-direction: column;
    display: none;  
} 



.nav-link a#subDrop:hover .SubMenuDropdown{
    display: block;
    position: absolute;
} */

/* 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 */

     canvas {
        display: block;
        width: 100%;
        height: 100vh;
    }
    .content {
        position: absolute; 
        width: 60%;
        /* border: 2px solid white; */
        top: 60%;
        left: 50%;
        /* margin: auto;  */
        transform: translate(-50%, -50%);
        z-index: 10;
        text-align: center;
        color: white;
        pointer-events: none;
    }
    .content h1 {
    color: #ffffff;
    font-size: 70px;
    font-weight: 800;
}
.content h1 span {
    color: #e92848;
    font-weight: 600;
    padding-bottom: 5%;
    background-color: rgb(48, 1, 1);
    padding: 1%;
    border-radius: 20px;
}
.content p {
    color: #ffffff;
    margin-top: 10%;
    font-size: 30px;
    font-weight: 900;
    /* font-variant: small-caps; */
    width: 100%;
    max-width: 900px;
    margin: 60px 0px 10px 120px;
    /* margin: auto; */

}
.content p strong {
    color: #e92848;
    font-weight: 900;
    z-index: 9999;
    font-size: 30px;
    /* font-weight: 800; */
    /* font-variant: small-caps; */
}
    h1 {
        font-size: 4rem;
        font-weight: 900;
        margin-bottom: 1rem;
        letter-spacing: -0.06em;
        /* background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text; */
        filter: drop-shadow(0 0 40px rgb(0, 0, 0)) drop-shadow(0 0 80px rgb(133, 1, 1));
        animation: glowPulse 3s ease-in-out infinite alternate;
    }
    @keyframes glowPulse {
        from {
            filter: drop-shadow(0 0 40px rgb(0, 0, 0)) drop-shadow(0 0 80px rgb(0, 0, 0));
        }
        to {
            filter: drop-shadow(0 0 60px rgb(143, 134, 134)) drop-shadow(0 0 120px rgb(129, 120, 120));
        }
    }
    .tagline {
        font-size: clamp(0.9rem, 2vw, 1.2rem);
        font-weight: 300;
        color: rgba(255, 255, 255, 0.9);
        letter-spacing: 0.3em;
        text-transform: uppercase;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 60px rgba(138, 43, 226, 0.3);
    }
    .buttons {
        display: flex;
        justify-content: center;
        gap: 24px;
        margin-top: 40px;
        pointer-events: auto;
    }
    /* .glass-button {
        position: relative;
        padding: 16px 40px;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        color: #fff;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
        border: 1.5px solid transparent;
        border-radius: 40px;
        backdrop-filter: blur(30px);
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            inset 0 -1px 0 rgba(255, 255, 255, 0.05);
        overflow: hidden;
        cursor: pointer;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: auto;
    }
   
    .glass-button::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 40px;
        padding: 1.5px;
        background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.4) 0%,
            rgba(138, 43, 226, 0.4) 25%,
            rgba(0, 191, 255, 0.4) 50%,
            rgba(255, 105, 180, 0.4) 75%,
            rgba(255, 255, 255, 0.4) 100%);
        background-size: 200% 200%;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        animation: borderFlow 3s linear infinite;
        opacity: 0.6;
        transition: opacity 0.5s ease;
    } */
    @keyframes borderFlow {
        /* 0% { background-position: 0% 50%; }
        100% { background-position: 200% 50%; } */
    }
    /* .glass-button::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 40px;
        background: radial-gradient(circle at var(--x, 50%) var(--y, 50%),
            rgba(255, 255, 255, 0.2) 0%,
            transparent 50%);
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    .glass-button:hover {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
        box-shadow:
            0 12px 48px rgba(138, 43, 226, 0.3),
            0 0 80px rgba(0, 191, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(255, 255, 255, 0.1);
        transform: translateY(-3px) scale(1.02);
    }
    .glass-button:hover::before {
        opacity: 1;
        animation-duration: 2s;
    }
    .glass-button:hover::after {
        opacity: 1;
    }
    .glass-button:active {
        transform: translateY(-1px) scale(0.98);
        box-shadow:
            0 6px 24px rgba(138, 43, 226, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    .glass-button .shimmer {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 45%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.1) 55%,
            transparent 100%
        );
        transform: rotate(30deg);
        animation: shimmer 3s infinite;
        pointer-events: none;
    } */
    @keyframes shimmer {
        0% { transform: translateX(-100%) rotate(30deg); }
        100% { transform: translateX(100%) rotate(30deg); }
    }
    .glass-button:hover .shimmer {
        animation-duration: 1.5s;
    }
    .glass-button span {
        position: relative;
        z-index: 1;
    }






/* end of canva hero section  */

/* carosel slider start  */



/* carosel slider 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-1 {
    /*background-image: url(../images/top-banner-bg.png);*/
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
    top: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.home-banner-sec {
    margin: 110px 0 0;
}
.home-banner-sec h1 {
    color: #191919;
    font-size: 50px;
    font-weight: 500;
}
.home-banner-sec h1 span {
    color: #EC2F48;
    font-weight: 600;
}
.home-banner-sec p {
    color: #191919;
    font-size: 38px;
    width: 100%;
    max-width: 900px;
    margin: 10px auto 50px;
}
.home-banner-sec p strong {
    color: #F58845;
}
.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: 70px 0;
}
.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;
 }
/*.testimonial-slider .owl-prev {
    background: #D9D9D9 !important;
    width: 30px;
    height: 30px;
    border-radius: 100px;
    color: #000 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px !important;
    position: absolute;
    bottom: -70px;
    transition: all 0.3s ease;
}
.testimonial-slider .owl-next {
    background: #D9D9D9 !important;
    width: 30px;
    height: 30px;
    border-radius: 100px;
    color: #000 !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-size: 20px !important;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}
.testimonial-slider .owl-next:hover {
    background: linear-gradient(135deg, #000000, #6f6f6f) !important;
    color: #fff !important;
}
.testimonial-slider .owl-prev:hover {
    background: linear-gradient(135deg, #000000, #6f6f6f) !important;
    color: #fff !important;
}
.testimonial-slider {
    position: relative;
    padding: 0 0 0 50px;
}
.testimonial-slider .owl-nav {
    position: absolute;
    left: 0;
    top: 120px;
} */
.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;
}
.index-1.service-inner {
    background: #400A13 url(../images/service-inner-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: left;
    padding: 0 0 50px;
    height: 80vh;
}
.service-inner .home-banner-sec p {
    color: #fff;
    font-size: 18px;
    margin: 10px 0 30px;
    width: 100%;
    max-width: 630px;
    font-weight: 400;
}
.service-inner .home-banner-sec h1 {
   color: #ffffff;
  font-size: 50px;
  font-weight: 500;
  width: 100%;
  max-width: 650px;
}
.client-satisfaction {
    display: flex;
    gap: 20px;
    margin: 0 0 10px;
}
.client-satisfaction h3 {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
}
.client-satisfaction span p {
    color: #fff;
    font-size: 16px !important;
}
.service-index-2 .slider {
    padding: 0;
}
.service-index-3 .expertise-sec h2 {
    margin: 0 auto 30px;
    max-width: 650px;
    text-align: center;
}
.service-index-3 .expertise-sec h2 span {
    color: #EB2848;
}
.service-index-3 .expertise-sec p {
    font-weight: 400;
    margin: 0 auto 50px;
    max-width: 750px;
    text-align: center;
}
.service-index-3 .expertise-sec p span {
    color: #EB2848;
    font-weight: 600;
}
.service-index-3 .expertise-sec h4 {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    padding: 0 0 10px;
    color: #191919;
}
.service-index-3 .expertise-sec h4 span {
    color: #F58845;
}
.service-index-3 .expertise-box-sec {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.service-index-3 .expertise-box {
    max-width: 23%;
}
.index-5.service-index-5 {
    background-image: url(../images/applied-services-bg.png);
}
.index-5.service-index-5 .applied-sec p {
    padding: 20px 0 40px;
}
.index-5.service-index-5 .sub-btn {
    background: #000000;
}
.service-index-6 {
    padding: 70px 0;
}
.service-index-6 .applied-sec h2 {
    color: #191919;
}
.service-index-6 .applied-sec h2 span {
    color: #EB2848;
}
.service-index-6 .applied-sec p {
    color: #191919;
    padding: 20px 0;
}
.apart-slider-contant {
    display: flex;
    align-items: center;
    position: relative;
    height: 270px;
}
.apart-slider-contant span {
    border: 2px solid #ccc;
    background: #FBF9F9;
    border-radius: 10px;
    padding: 40px 0 40px 100px;
    position: absolute;
    left: 20px;
    height: 270px;
}
.apart-slider-contant img {
    max-width: 100px;
    border-radius: 10px;
    position: absolute;
    left: 0px;
    z-index: 999;
}
.apart-slider {
    margin: 30px 0 0 auto;
    width: 100%;
    max-width: 1665px;
}
.apart-slider-contant h4 {
    color: #EB2848;
    padding: 0 0 10px;
    font-size: 24px;
}
.apart-slider-contant p {
    color: #191919;
    font-size: 16px;
}
.service-index-7 {
    background-image: url(../images/better-sec-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding: 70px 0;
}
.service-index-7 h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 600;
}
.service-index-7 p {
    color: #fff;
    font-size: 18px;
    font-weight: 100;
    width: 100%;
    max-width: 700px;
    margin: 30px auto 60px;
}
.service-index-9 {
    padding: 70px 0;
    background: #EDEDED;
}
.faq-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 20px;
}
.faq-container h2 {
    color: #191919;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    padding: 0 0 20px;
}
.faq-item {
    background-color: transparent;
    border-radius: 0;
    margin-bottom: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #c3c3c3;
}
.faq-question {
    padding: 20px 0px;
    font-size: 18px;
    font-weight: 500;
    color: #191919;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #191919;
}
.faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    padding: 0 20px;
    font-size: 1rem;
    line-height: 1.5;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
    padding: 10px 0px 20px;
    max-height: 500px;
    color: #191919;
}
@media screen and (max-width: 768px) {
  .faq-title { font-size: 2rem; }
  .faq-question { font-size: 1rem; }
  .faq-answer { font-size: 0.95rem; }
}
.service-index-8 {
    padding: 70px 0 130px;
}
.service-index-8 .home-industries-sec p {
    text-align: center;
    max-width: 930px;
    margin: 0 auto;
}
.service-index-8 .home-industries-sec h2 {
    text-align: center;
}
.process-sec {
    display: flex;
    padding: 110px 0px 0;
    position: relative;
}
.process-step-sec {
    width: 100%;
}
.step-01 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #ff8d3b;
    padding: 0 0 0;
    width: 100%;
    max-width: 900px;
}
.step-01 h4 {
    font-size: 20px;
    color: #EB2848;
    font-weight: 600;
}
.step-01 p {
    font-size: 16px;
    color: #191919;
    width: 100%;
    max-width: 430px;
    padding: 8px 0;
}
.step-01 h5 {
    font-size: 80px;
    color: #ff8d3b;
    font-weight: 600;
}
.step-mov-1 {
    position: absolute;
    left: 250px;
    top: 60px;
}
.step-mov-2 {
    position: absolute;
    left: 350px;
    top: 225px;
}
.step-mov-3 {
    position: absolute;
    left: 510px;
    top: 400px;
}
.step-mov-4 {
    position: absolute;
    left: 510px;
    top: 560px;
}
.step-mov-5 {
    position: absolute;
    left: 350px;
    bottom: 110px;
}
.step-mov-6 {
    position: absolute;
    left: 250px;
    bottom: -70px;
}
.index-1.about-inner {
    background-image: url(../images/about-inner-bg.png);
    height: 80vh;
}
.about-inner .home-banner-sec p {
    color: #fff;
    font-size: 18px;
    margin: 10px auto 30px;
    width: 100%;
    max-width: 900px;
    font-weight: 400;
}
.about-inner .home-banner-sec h1 {
    color: #fff;
    font-size: 50px;
    font-weight: 500;
}
.about-inner .home-banner-sec {
    margin: 70px 0 0;
}
.index-3.service-index-3.about {
    padding: 0 0 0;
}
.service-index-3.about .expertise-sec h2 {
    margin: 0 auto 10px;
}
.about-values-sec {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-values-sec span {
    background: #fff;
    box-shadow: 0px 2px 5px 1px #00000045;
    width: 100%;
    max-width: 320px;
    display: flex;
    align-items: anchor-center;
    gap: 10px;
    padding: 20px 0px 20px 20px;
    margin: 0 0 20px;
    border-radius: 15px;
}
.about-values-sec span h4 {
    font-size: 20px;
    color: #191919;
}
.about-values-sec span img {
    width: 100%;
    max-width: 40px;
}
.index-5.about {
    background-image: url(../images/celebrating-bg.png);
    text-align: center;
}
.index-5.about .applied-sec p {
    padding: 20px 0 30px;
    margin: 0 auto;
}
.celebrating-logos {
    display: flex;
    justify-content: space-between;
    margin: 0 0 70px;
}
.celebrating-logos img {
    width: 100%;
    max-width: 140px;
}
.about-map-sec {
    background-image: url(../images/about-map-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}
.about-map-contant h2 {
    color: #191919;
    text-align: center;
    font-size: 40px;
    padding: 70px 0;
}
.map-point p span {
    font-size: 18px;
    font-weight: 500;
    display: block;
}
.about-map-point {
    position: relative;
}
.point-map-img-01 {
    position: absolute;
    top: -40px;
}
.point-map-img-02 {
    position: absolute;
    bottom: -40px;
    right: 29px;
}
.point-map-img-03 {
    position: absolute;
    bottom: -40px;
    right: 183px;
}
.point-map-img-04 {
    position: absolute;
    top: -45px;
    left: 84px;
}
.map-point {
    background: #eb2848;
    width: 100%;
    max-width: 250px;
    padding: 20px;
    color: #fff;
    border-radius: 15px;
    position: absolute;
    font-size: 18px;
}
.map-point p span {
    font-size: 18px;
    font-weight: 500;
}
.map-point {
    background: #eb2848;
    width: 100%;
    max-width: 250px;
    padding: 20px;
    color: #fff;
    border-radius: 15px;
    position: absolute;
    font-size: 18px;
    top: 275px;
    left: -28px;
}
.map-point.map-point-02 {
    right: 380px;
    left: inherit;
    top: 85px;
}
.map-point.map-point-03 {
    right: -155px;
    left: inherit;
    top: 72px;
    max-width: 360px;
}
.map-point.map-point-04 {
    right: 185px;
    left: inherit;
    top: 322px;
}
.index-1.service-inner.contact-us {
    background-image: url(../images/contact-banner-bg.png);
}
.index-1.service-inner.contact-us .home-banner-sec p {
    padding: 20px 0;
}
.index-2.service-index-2.about {
    padding: 0 0 70px;
}
.contact-index-4 h3 {
    font-size: 40px;
    font-weight: 400;
    color: #191919;
    text-align: center;
    width: 100%;
    max-width: 610px;
    margin: 0 auto 30px;
}
.contact-index-4 {
    padding: 70px 0 0px;
}
/* .owl-item .item {
    transform: translate3d(0, 0, 0);
    transform: scale(0.9);
    transition: all .25s ease-in-out;
    margin: 50px 0;
}
.screenshot_slider .item {
    position: relative;
}
.screenshot_slider .item .address-heding {
    position: absolute;
    bottom: 50px;
    text-align: center;
    padding: 0 60px;
    left: 0;
    right: 0;
}
.screenshot_slider .owl-item .address-heding h6 {
    font-size: 25px;
    color: #fff;
    padding: 0 0 10px;
    font-weight: 400;
    text-align: center;
}
.address-heding p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}
.contact-index-4 .owl-nav {
    display: none;
} */
.service-inner.contact-us .home-banner-sec h1 {
    font-size: 40px;
}
.index-1.service-inner.contact-us.case-wrap {
    background-image: url(../images/case-bg.png);
}
.index-4.case-studies {
    padding: 0px 0 70px;
    background: #fff;
}
.studies-details-banner .home-banner-sec {
    margin: 140px 0 0;
}
.index-4.case-studies .tabs-box-img {
    margin: 0 0 30px;
}
.studies-details-banner .home-banner-sec p span {
    color: #eb2848;
}
.index-1.studies-details-banner img {
    width: 100%;
    max-width: 690px;
    display: block;
    text-align: center;
    margin: 0 auto 30px;
}
.index-1.studies-details-banner {
    background: #fff;
    height: 80vh;
}
.executive-summary h2 {
    font-size: 40px;
    font-weight: 600;
    color: #191919;
    margin: 0 0 10px;
}
.executive-summary p {
    color: #191919;
    font-size: 18px;
    margin: 10px 0 30px;
    font-weight: 400;
}
.studies-details-banner .home-banner-sec p {
    margin: 10px auto 20px;
}
img.solution-img-tex {
    width: 100% !important;
    max-width: 690px !important;
    margin: 0 0 0 auto;
}
.the-solution-img.menu-02 img {
    max-width: 620px;
}
img.the-solution-img-manu {
    max-width: 450px;
}
.studies-details-02 {
    background: #F0F0F0;
    padding: 70px 0;
}
.project-overview-img {
    display: flex;
    justify-content: end;
}
.studies-details-02 .executive-summary p {
    margin: 30px 0 40px;
}
.studies-details-03 {
    padding: 70px 0;
}
.the-challenge-sec h2 {
    font-size: 40px;
    font-weight: 600;
    color: #191919;
    margin: 0 0 10px;
}
.the-challenge-sec p {
    color: #191919;
    font-size: 18px;
    margin: 10px 0 30px;
    font-weight: 400;
}
.studies-details-04 {
    padding: 70px 0;
    background-image: url(../images/home-contact-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.the-solution-sec h2 {
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px;
}
.the-solution-sec p {
    color: #fff;
    font-size: 18px;
    margin: 10px 0 30px;
    font-weight: 400;
}
.the-solution-img img {
    width: 100%;
    max-width: 400px;
    justify-content: inherit;
    display: flex;
    margin: 0 auto;
}
.studies-details-05 {
    padding: 70px 0;
}
.iPhone-petpass img {
    width: 100%;
    margin: 0 0 0 auto;
    display: flex;
}
img.solution-img-petpass {
    width: 100%;
    max-width: 540px;
    margin: 0 0 0 auto;
}
.grocery-sec h2 {
    font-size: 40px;
    font-weight: 600;
    color: #191919;
    margin: 0 0 10px;
    text-align: center;
}
.grocery-sec h2 span {
    color: #EC2F48;
}
.grocery-sec p {
    font-size: 28px;
    font-weight: 100;
    color: #191919;
    margin: 20px 0 50px;
    text-align: center;
}
.grocery-sec p span {
    color: #EC2F48;
}
.grocery-box-sec {
    background: #F0F0F0;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 0px 3px 1px #00000036;
    height: 340px;
}
.grocery-box-sec img {
    width: 100%;
    max-width: 70px;
    margin: 0 0 20px;
}
.grocery-box-sec h5 {
    color: #EC2F48;
    font-size: 24px;
    margin: 0 0 10px;
}
.grocery-box-sec p {
    color: #191919;
    font-size: 18px;
    width: 100%;
    max-width: 600px;
}
.studies-details-07 {
    background-image: url(../images/studies-details-06.png);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 0;
}
.the-process-sec h2 {
    font-size: 40px;
    color: #ffffff;
    text-align: center;
}
.the-process-sec p {
    font-size: 28px;
    color: #ffffff;
    text-align: center;
    font-weight: 100;
}
.the-process-sec p span {
    color: #EC2F48;
}
.process-num {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
    padding: 50px 0 0;
}
.process-num-box {
    display: flex;
    gap: 10px;
    align-items: end;
}
.process-num-box h3 {
    color: #4a4a4a;
    font-size: 90px;
}
.process-num-box h4 {
    color: #EC2F48;
    font-size: 28px;
    padding: 0 0 10px;
}
.process-num-box p {
    color: #fff;
    font-size: 18px;
    width: 100%;
    max-width: 350px;
}
.stack-sec-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 0 0;
}
.the-process-sec.the-process-sec-02 {
    padding: 100px 0 0;
}
.stack-sec-logos img {
    width: 100%;
    max-width: 80px;
}
.logos-sec {
    padding: 0px 0;
}
/* .logos-sec .owl-item .item {
    margin: 20px 0;
} */
.process-sec-img-mobile {
    display: none;
}
.index-1.machine-learning-bg {
    background: #400A13 url(../images/machine-learning-bg-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.index-1.automation-integration-bg {
    background: #400A13 url(../images/automation-integration-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.automation-integration-bg .home-banner-sec h1 {
    max-width: 800px;
}
.index-1.data-and-cloud-bg {
    background: #400A13 url(../images/data-and-cloud-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.data-and-cloud-bg .home-banner-sec h1 {
    max-width: 800px;
}
.index-1.security-compliance-bg {
    background: #400A13 url(../images/security-compliance-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.security-compliance-bg .home-banner-sec h1 {
    max-width: 800px;
}
.index-1.ai-training-support-bg {
    background: #400A13 url(../images/ai-training-support-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ai-training-support-bg .home-banner-sec h1 {
    max-width: 800px;
}
.index-1.ai-agent-development-bg {
    background: #400A13 url(../images/ai-agent-development-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ai-agent-development-bg .home-banner-sec h1 {
    max-width: 850px;
}
.service-center-page {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.index-1.generative-ai-development-bg {
    background: #400A13 url(../images/generative-ai-development-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.generative-ai-development-bg .home-banner-sec h1 {
    max-width: 850px;
}
.index-1.predictive-modeling-bg {
    background: #400A13 url(../images/predictive-modeling-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.predictive-modeling-bg .home-banner-sec h1 {
    max-width: 850px;
}
.index-1.ai-chatbot-development-bg {
    background: #400A13 url(../images/ai-chatbot-development-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ai-chatbot-development-bg .home-banner-sec h1 {
    max-width: 850px;
}
.index-1.ai-machine-learning-consulting-bg {
    background: #400A13 url(../images/ai-machine-learning-consulting-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ai-machine-learning-consulting-bg .home-banner-sec h1 {
    max-width: 850px;
}
.index-1.custom-machine-learning-development-bg {
    background: #400A13 url(../images/custom-machine-learning-development-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.custom-machine-learning-development-bg .home-banner-sec h1 {
    max-width: 850px;
}
.index-1.computer-deep-learning-bg {
    background: #400A13 url(../images/computer-deep-learning-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.computer-deep-learning-bg .home-banner-sec h1 {
    max-width: 850px;
}
.index-1.natural-language-processing-bg {
    background: #400A13 url(../images/natural-language-processing-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.natural-language-processing-bg .home-banner-sec h1 {
    max-width: 850px;
}
.index-1.computer-vision-development-bg {
    background: #400A13 url(../images/computer-vision-development-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.computer-vision-development-bg .home-banner-sec h1 {
    max-width: 850px;
}
.index-1.intelligent-automation-bg {
    background: #400A13 url(../images/intelligent-automation-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.intelligent-automation-bg .home-banner-sec h1 {
    max-width: 850px;
}
.index-1.process-mining-bg {
    background: #400A13 url(../images/process-mining-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.process-mining-bg .home-banner-sec h1 {
    max-width: 850px;
}
.index-1.autonomous-ai-agents-bg {
    background: #400A13 url(../images/autonomous-ai-agents-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.autonomous-ai-agents-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.automation-coe-setup-bg {
    background: #400A13 url(../images/automation-coe-setup-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.automation-coe-setup-bg .home-banner-sec h1 {
    max-width: 850px;
}
.index-1.data-pipeline-bg {
    background: #400A13 url(../images/data-pipeline-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.data-pipeline-bg .home-banner-sec h1 {
    max-width: 850px;
}
.index-1.mlops-setup-bg {
    background: #400A13 url(../images/mlops-setup-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.mlops-setup-bg .home-banner-sec h1 {
    max-width: 850px;
}
.service-center-page.home-banner-sec h1 {
    margin: 0 0 20px;
}
.index-1.real-time-data-bg {
    background: #400A13 url(../images/real-time-data-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.real-time-data-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.cloud-architecture-bg {
    background: #400A13 url(../images/cloud-architecture-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.cloud-architecture-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.privacy-preserving-bg {
    background: #400A13 url(../images/privacy-preserving-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.privacy-preserving-bg .home-banner-sec h1 {
    max-width: 900px;
}
.index-1.data-privacy-and-ai-governance-bg {
    background: #400A13 url(../images/data-privacy-and-ai-governance-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.data-privacy-and-ai-governance-bg .home-banner-sec h1 {
    max-width: 900px;
}
.index-1.incident-response-bg {
    background: #400A13 url(../images/incident-response-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.incident-response-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.ai-workshops-bg {
    background: #400A13 url(../images/ai-workshops-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ai-workshops-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.corporate-ai-training-bg {
    background: #400A13 url(../images/corporate-ai-training-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.corporate-ai-training-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.co-innovation-labs-bg {
    background: #400A13 url(../images/co-innovation-labs-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.co-innovation-labs-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.continuous-ai-enablement-bg {
    background: #400A13 url(../images/continuous-ai-enablement-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.continuous-ai-enablement-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.ai-automation-bg {
    background: #400A13 url(../images/ai-automation-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ai-automation-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.predictive-analytics-bg {
    background: #400A13 url(../images/predictive-analytics-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.predictive-analytics-bg .home-banner-sec h1 {
    max-width: 950px;
}
.footer-logo img {
    width: 100%;
    max-width: 200px;
}

.index-1.conversational-ai-bg {
    background: #400A13 url(../images/conversational-ai-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.conversational-ai-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.computer-vision-image-bg {
    background: #400A13 url(../images/computer-vision-image-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.computer-vision-image-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.ai-for-cybersecurity-bg {
    background: #400A13 url(../images/ai-for-cybersecurity-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ai-for-cybersecurity-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.hire-ai-engineers-bg {
    background: #400A13 url(../images/hire-ai-engineers-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.hire-ai-engineers-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.hire-ml-engineers-bg {
    background: #400A13 url(../images/hire-ml-engineers-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.hire-ml-engineers-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.hire-data-scientists-bg {
    background: #400A13 url(../images/hire-data-scientists-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.hire-data-scientists-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.hire-nlp-engineers-bg {
    background: #400A13 url(../images/hire-nlp-engineers-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.hire-nlp-engineers-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.hire-computer-vision-developers-bg {
    background: #400A13 url(../images/hire-computer-vision-developers-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.hire-computer-vision-developers-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.dedicated-ai-pods-bg {
    background: #400A13 url(../images/dedicated-ai-pods-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.dedicated-ai-pods-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.ai-for-healthcare-bg {
    background: #400A13 url(../images/ai-for-healthcare-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ai-for-healthcare-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.ai-for-fintech-bg {
    background: #400A13 url(../images/ai-for-fintech-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ai-for-fintech-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.ai-for-retail-and-ecommerce-bg {
    background: #400A13 url(../images/ai-for-retail-and-ecommerce-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ai-for-retail-and-ecommerce-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.ai-for-manufacturing-bg {
    background: #400A13 url(../images/ai-for-manufacturing-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ai-for-manufacturing-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.ai-for-logistics-and-supply-chain-bg {
    background: #400A13 url(../images/ai-for-logistics-and-supply-chain-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ai-for-logistics-and-supply-chain-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.ai-for-real-estate-bg {
    background: #400A13 url(../images/ai-for-real-estate-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ai-for-real-estate-bg .home-banner-sec h1 {
    max-width: 950px;
}
.index-1.ai-for-education-bg {
    background: #400A13 url(../images/ai-for-education-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ai-for-education-bg .home-banner-sec h1 {
    max-width: 950px;
}











@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  */

/* .About-page-1{
    padding-top: 2%;
    width: 70%;
    display: flex;
    margin: auto;
    height: 50vh;
    gap: 10%;
}
.Content-left-side{
width: 50%;
}
.image-right-side{
    width: 50%;
} */


        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{
    height: 30vh;
    object-fit: fill;
}

.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;
}











