
 :root {
  /* ===== COLORS ===== */
  --color-primary: #2563eb;
  --color-secondary: #031f7a;
  --color-accent: #ffd700;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-text: #333333;
  --color-border: #e5e7eb;
  --color-bg-light: #f4f6fb;
  /* ===== FONTS ===== */
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Verdana", sans-serif;
}
body{
    margin:0;
  padding:0;
  box-sizing:border-box;
 font-family: "Poppins", sans-serif;
}
@font-face {
    font-family: 'Verdana';
    src: url('../fonts/Verdana-Bold.eot');
    src: url('../fonts/Verdana-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Verdana-Bold.woff2') format('woff2'),
        url('../fonts/Verdana-Bold.woff') format('woff'),
        url('../fonts/Verdana-Bold.ttf') format('truetype'),
        url('../fonts/Verdana-Bold.svg#Verdana-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
   font-display: swap;
}
@font-face {
    font-family: 'Verdana';
    src: url('../fonts/Verdana.eot');
    src: url('../fonts/Verdana.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Verdana.woff2') format('woff2'),
        url('../fonts/Verdana.woff') format('woff'),
        url('../fonts/Verdana.ttf') format('truetype'),
        url('../fonts/Verdana.svg#Verdana') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Regular'), url('../fonts/Poppins-Regular.woff') format('woff');
    font-display: swap;
    }
@font-face {
    font-family: 'Poppins Thin';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Thin'), url('../fonts/Poppins-Thin.woff') format('woff');
    font-display: swap;
    }
     @font-face {
    font-family: 'Poppins ExtraLight';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins ExtraLight'), url('../fonts/Poppins-ExtraLight.woff') format('woff');
    font-display: swap;
    }
     @font-face {
    font-family: 'Poppins Medium';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Medium'), url('../fonts/Poppins-Medium.woff') format('woff');
    font-display: swap;
    }
     @font-face {
    font-family: 'Poppins SemiBold';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins SemiBold'), url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-display: swap;
    }
    
    @font-face {
    font-family: 'Poppins Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Bold'), url('../fonts/Poppins-Bold.woff') format('woff');
    font-display: swap;
    }
    @font-face {
    font-family: 'Poppins ExtraBold';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins ExtraBold'), url('../fonts/Poppins-ExtraBold.woff') format('woff');
    font-display: swap;
    }
     @font-face {
    font-family: 'Poppins Black';
    font-style: normal;
    font-weight: normal;
    src: local('Poppins Black'), url('../fonts/Poppins-Black.woff') format('woff');
    font-display: swap;
    }
    /* global css */
.container{
  max-width:1320px;
  padding:0 20px;
  margin: 0 auto;
}
.row{
  display: flex;
}
.col-left{
  width: 50%;
   padding: 0px 10px;
}
.col-right{
  width: 50%;
  padding: 0px 10px;
}
p{
  margin-bottom: 15px;
  font-weight: 500;
}
h1{
    font-size: 70px;
    font-weight: 600;
    line-height: 71px;
     font-family: var(--font-secondary);
}
h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.2em;
    letter-spacing: .6px;
     font-family: var(--font-secondary);
}
h2 span{
color: var(--color-primary);
}
body.no-scroll {
  overflow: hidden;
}
/* end */
.whatsapp-icon-floting {
    position:fixed;
    width:70px;
    height:70px;
    bottom:30px;
    left:30px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50%;
    text-align:center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite;
}
.whatsapp-icon-floting:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37,211,102,0.5);
    animation: none;
}
.my-float {
    width: 38px;
    height: 38px;
    fill: white;
}
@keyframes pulse-wa {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
/* Email Floating */
.email-float {
  position: fixed;
  right: 30px;
  width:70px;
  height:70px;
  bottom:30px;
  z-index: 1000;
  background: var(--color-primary);
  box-shadow: 0 8px 25px rgba(30,64,175,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-email 2s infinite;
}
@keyframes pulse-email {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30, 64, 175, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(30, 64, 175, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30, 64, 175, 0); }
}
.email-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(30,64,175,0.5);
    background: #1d4ed8;
    animation: none;
}
.whatsapp-icon-floting:hover {
    transform: scale(1.1) translateY(-5px);
}
.email-icon-floating svg{
  width: 33px;
  height: 33px;
  fill: #fff;
}

/* style */
/* hero */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.menu-open {
  overflow: hidden;
}
img{
  object-fit: contain;
}
/* top header */
#header {
     position: sticky;   /* fixed nahi */
  top: 0;
  z-index: 9999;
  background: #fff;
}
.top-header{
      background-image: linear-gradient(142deg, #E50C0C 0%, #A8032C 100%);
}
.top-header-main{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 15px;
  position: relative;
}
.top-header ul{
  display: flex;
}
.top-left{
  width: 50%;
  display: flex;
  justify-content: end;
}
.top-right{
  width: 50%;
  display: flex;
  justify-content: end;
}
.top-left img{
  width: 16px;
  height: 16px;
}
.top-left span {
  font-size: 15px;
  line-height: 24px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.top-right ul li a img{
  width: 15px;
  height: 15px;
}
.top-right ul li{
  list-style: none;
  display: flex;
  align-items: center;
}
.top-right ul li a{
      color: #fff;
    margin-left: 15px;
    text-decoration: none;
}
.top-right ul li a span{
    font-size: 15px;
  line-height: 24px;
  color: white;
}
/* end */
.header {
  background:var(--color-secondary);
  z-index: 999;
  transition: all 0.3s ease;
  position: relative;
}
.header .header-inner {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
.logo img{
max-width: 157px;
    width: 100%;
}
/* Desktop Menu */
.menu ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin-bottom: 0px;
  padding-left: 0px;
}
.quote-btn {
    padding: 8px 34px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    border: none;
    border-radius: 11px;
    cursor: pointer;
    background-image: linear-gradient(142deg, #E50C0C 0%, #A8032C 100%);
}
.menu a {
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        position: relative;
        text-transform: uppercase;
        transition: color 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        padding: 10px 0px;
}

/* Submenu */
.sub-menu {
    display: none !important;
    position: absolute;
    background: #fff;
    z-index: 6;
    top: 50px;
    flex-direction: column;
    gap: 0px !important;
    margin-top: 10px;
    border-radius: 10px;
    max-width: 300px;
    width: 100%;
}
.header.scrolled .sub-menu {
    top: 46px;
}
.menu ul li img {
    width: 20px;
    height: 20px;
    padding-left: 7px;
}
.sub-menu li{
  transition: all 0.1s ease-in-out;
}
.sub-menu li:hover{
  background-color: #031f7a;

}
.sub-menu li:first-child{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.sub-menu li:last-child{
  border-bottom-left-radius:10px ;
  border-bottom-right-radius: 10px;
}
.sub-menu li:hover a{
  color: white;
}
.menu-item-has-children{
  display: flex;
 align-items: center; 
 gap: 5px;
}
.menu-item-has-children:hover .sub-menu {
  display: block !important;
}
.sub-menu a {
    color: #000;
    display: block;
    padding: 15px 13px;
}
.sub-menu li{
  border-bottom: 1px solid #c4c4c4;
}
.sub-menu li:last-child{
  border-bottom:0px;
}
/* Mobile Trigger */
.mobile-menu-trigger {
  display: none;
  width: 30px;
  height: 24px;
  cursor: pointer;
}
.mobile-menu-trigger span,
.mobile-menu-trigger span::before,
.mobile-menu-trigger span::after {
  background: #fff;
  height: 2px;
  width: 100%;
  display: block;
  position: absolute;
  transition: 0.3s;
}
.mobile-menu-trigger span {
  position: relative;
}
.mobile-menu-trigger span::before {
  content: "";
  top: -7px;
}
.mobile-menu-trigger span::after {
  content: "";
  top: 7px;
}
/* Trigger active (X) */
.mobile-menu-trigger.active span {
  background: transparent;
}
.mobile-menu-trigger.active span::before {
  transform: rotate(45deg);
  top: 0;
}
.mobile-menu-trigger.active span::after {
  transform: rotate(-45deg);
  top: 0;
}
/*  */
.arrow{
  transition: 0.3s;
  margin-left: auto;
  color: white;
}
.submenu-toggle i{
  padding-left: 5px;
}
/* arrow up */
.menu-item-has-children.active .arrow{
  transform: rotate(-135deg);
}
/* Overlay */
.sub-menu{
  display:none;
}
.menu-item-has-children.active > .sub-menu{
  display:block;
}
@media (min-width: 992px){
  .menu-item-has-children:hover > .sub-menu{
    display:block;
  }
}

.contact-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.contact-popup{
  width:90%;
  max-width:950px;
  display:flex;
  border-radius:18px;
  overflow:hidden;
  position:relative;
}
.contact-popup .contact-left {
    padding: 0px 54px;
}
.contact-close {
    position: absolute;
    top: 7px;
    right: 7px;
    font-size: 25px;
    cursor: pointer;
    z-index: 16;
    background-color: rgb(255, 255, 255);
    width: 35px;
    height: 35px;
    border-radius: 100%;
    display:flex;
    justify-content: center;
    align-items: center;

}
.contact-close svg{
  fill: #013CE7;
  width: 15px;
  height: 15px;
}
.contact-popup {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
      background-image: linear-gradient(214deg, #013CE7 22%, #0B2054 83%);
   padding: 40px;
}
.contact-overlay{
  display: none;   /* 🔴 MUST */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* end hero */
/* Scroll lock */

/* HERO SECTION */
.hero-section{
  position: relative;
  background-image: linear-gradient(148deg, #083DD5 0%, #00144B 100%);
  padding: 150px 0px 150px 0px;
  display: flex;
  align-items: center;
  overflow: hidden;
 height: calc(100vh - 72px);
}
.hero-section-inner .hero-inner{
max-width: 1020px;
width: 100%;
}
.hero-section-inner .hero-inner h1{
  text-align: left;
  font-size: 58px;
  line-height: 71px;
  padding-bottom: 10px;
}
 .hero-inner ul{
  justify-content: start !important;
  display: flex;
}
.hero-section-inner .hero-inner p{
  text-align: left;
}

.hero-section h1{
  color: var(--color-white);
  text-align: center;
  padding-bottom: 20px;
}

.hero-section p{
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  color: var(--color-white);
  font-family: var(--font-secondary);
  text-align: center;
  padding-top: 10px;
}
 
.hero-section .hero-inner ul{
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-section-inner .hero-section ul {
    justify-content: start !important;
}
.hero-inner ul li{
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  padding-left: 22px;
}
.hero-inner ul li::before{
  content: " ";
  position: absolute;
  left: 0px;
  top: 0px;
  background-image: url("../images/check-double-solid.svg");
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-inner ul li i{
  color: #00D52B;
   font-size: 17px;
}

.hero-inner ul li span{
  font-size: 17px;
  font-weight: 600;
  color: var(--color-white);
  font-family: var(--font-primary);
}
/* brurdcrum */
.breadcrumb-wrapper {
  padding: 12px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: #555;
}

.breadcrumb-item a {
  text-decoration: none;
  color: #060e6f;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #1a4cff;
}

/* separator */
.breadcrumb-wrapper {
    background: #f6f8ff;
    border-radius: 8px;
    padding: 26px 15px;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  padding: 0 8px;
  color: #999;
  font-size: 16px;
}

.breadcrumb-item.active {
  color: #888;
  font-weight: 500;
  pointer-events: none;
  text-transform: capitalize;
}

/* end */
/* award */
.greatest-section{
    padding: 67px 108px;
}
.greatest-section  h2 {
    font-weight: 700;
    color: #080808;
     text-align: center;
     padding-bottom: 20px;
}
.greatest-section .greatest-left{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.greatest-section .greatest-left h2 span{
    color: #2563eb;
}
.greatest-section  p {
    font-size: 17px;
    font-weight: 400;
    color: #000;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
         padding-bottom: 40px;
}
/* Section Background */
.neon-gallery-wrap {
  background: #000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gallery Container */
.neon-gallery {
  position: relative;
  max-width: 550px;
  width: 100%;
}


.neon-square img{
    max-width: 100%;
    width: 100%;
    height: 380px;
    object-fit: contain;
}
.award-section{
    padding: 50px 0px;
}
.award-section-inner{
  padding-bottom: 50px;
}
.award-section h2{
    text-align: center;
    padding-bottom: 50px;
}
.award-left ul{
    padding-left: 0px;
}
.award-left ul li img {
    width: 20px;
    height: 20px;
    transition: fill 0.3s;
}
.award-left ul li{
    font-family: "Poppins",Sans-serif;
    font-size: 17px;
    font-weight: 400;
    display: flex;
    gap: 10px;
    padding: 10px 0px;
    color: #000;
    list-style: none;
}
.award-left ul li span b{
   text-transform: capitalize;
}
.award-right {
    display: flex;
    justify-content: center;
    align-items: center;
}
.award-right img{
    max-width: 450px;
    width: 100%;
    border-radius: 14px 14px 14px 14px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / .5);
    object-fit: contain;
    height: auto;
}
.award-section-inner img{
  max-width: 512px;
}
.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.stat-card {
 background-image: linear-gradient(180deg, #013CE7 0%, #002693 100%);
    color: white;
    width: 255px;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 2px solid #2563eb;
}
.stat-card h3 {
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--color-white);
}

.stat-card p {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
    color: var(--color-white) !important;
    margin-bottom: 0px;
}
.greatest-right {
    display: flex;
    justify-content: end;
}
.greatest-right img{
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
}
/* why choose */
.why-chooseus-section{
    padding: 80px 108px;
    background-color: #EBEBEB;
}
.why-chooseus-section h2{
    max-width: 995px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 25px;
    display: block;
}
.why-chooseus-section h2 span{
color: var(--color-primary);
}
.why-contact-us .para{
  font-size: 18px;
  font-family: var(--font-secondary);
  text-align: justify;
    padding-bottom: 40px;
    padding-top: 15px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 18px;
    max-width: 1000px;
    width: 100%;
}

.service-card {
    background: #fff;
    padding: 16px 16px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start; 
    gap: 15px;
    box-shadow: 0 0 3px 0 rgb(0 0 0 / .5);
    border: 1px solid #dddddd42;
}

.icon-box {
    background-color: #2563eb; /* Royal blue */
    color: white;
    min-width: 44px;
    height: 44px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    
}
.icon-box svg{
   width: 20px;
   height: 20px;
   fill: white;
}
.content h3 {
       font-size: 18px;
    font-weight: 700;
        text-transform: capitalize;
    line-height: 1.2em;
    letter-spacing: .6px;
       color: var(--color-primary);
       padding-bottom: 0px;
       text-align: start;
}
.service-card:hover .content h3{
    color: #443F3F;
}
.content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #000;
    text-align: start;
    margin-bottom: 0px;
}
.why-chooseus-right{
    display: flex;
    justify-content: end;
}
.why-chooseus-right img{
    max-width:450px ;
    width: 100%;
    border-radius: 14px 14px 14px 14px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / .5);
     object-fit: contain;
    height: auto;
}
/* end*/
/* multiple-industries */
.multiple-industries{
    padding: 50px 0px;
}
.industry-card{
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.multiple-industries h2{
    padding-bottom: 30px;
    text-align: center;
}
.multiple-industries h2 span{
    color: var(--color-primary);
}
.industry-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.industry-list li{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .2px;
  color: #111;
  font-family: var(--font-primary);
}

/* SVG icon */
.check-icon{
  width: 16px;
  height: 16px;
  fill: #00a000;
  flex-shrink: 0;
}
.industry-image{
    display: flex;
    justify-content: center;
}
.industry-image img{
    max-width:450px ;
    width: 100%;
    border-radius: 14px 14px 14px 14px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / .5);

}
/* digital-product */
.digital-product{
background-color: #f3f3f3;
padding: 50px 0px;
}
.digital-product h2{
    padding-bottom: 30px;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    text-align: center;
    margin:0 auto ;
}
.digital-product h2 span{
color: var(--color-primary);
}
.digital-product p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-align: justify;
    font-family: var(--font-secondary);
}
.amazing-section{
  background-color: #F8F8F8;
  padding: 50px 0px;
}
.amazing-section h2{
  text-align: center;
}
.amazing-section p {
    font-size: 17px;
    font-family: var(--font-secondary);
    font-weight: 400;
    color: #000;
    text-align: justify;
    padding-top: 20px;
        letter-spacing: 0.2px;
}
/* tect */
.tech-partner-section{
  background: #f2f2f2;
  padding: 80px 108px;
}
.tech-partner-section-inner{
  padding: 80px 55px;
}
.tech-container{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.subtitle{
  color: #2563eb;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.title{
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.description{
  font-size: 15px;
  line-height: 1.6;
  color: #020202;
  margin-bottom: 35px;
}

.feature-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-box{
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-box .icon{
  font-size: 26px;
  background: #2563eb;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.feature-box h4{
  margin: 0;
      font-size: 17px;
    font-weight: 700;
    color: #000;
    font-family: "Verdana", sans-serif;
}

.feature-box p{
    font-size: 15px;
    font-weight: 500;
    color: #000000FA;
    margin-bottom: 0px;
    padding-top: 10px;
     font-family: "Verdana", sans-serif;
}

/* FORM */
.tech-content h2{
        font-size: 30px;
    font-weight: 700;
    line-height: 47px;
    color: #0B0B0B;
}
.tech-content h2 span{
color: var(--color-primary);
}
.contact-form{
  background: linear-gradient(180deg, #0a1dbd, #04139f);
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
  overflow-x: hidden;
}
.service-section{
    padding: 0px 0 100px 0px;
}
.text-md-center {
    text-align: center!important;
}
.text-md-center h2 {
    padding: 20px 0px;
}
.text-md-center h2 span{
  color: #2563eb;
}
.text-md-center p {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 25px;
  color: #5e6c84;
}

.industry-section{
  padding:80px 0;
  color:#020202;
  text-align:center;
}

.industry-section h2{
  margin-bottom:10px;
  font-weight:700;
}

.industry-section p{
  max-width:900px;
  margin:0 auto 50px;
  font-size:15px;
  line-height:1.6;
  opacity:0.9;
}


/* Grid */
.industry-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  padding-top: 30px;
}

/* Card */
.industry-item{
  color:#ffffff;
  padding:18px 22px;
  display:flex;
  align-items:center;
  justify-content: center;
  gap:15px;
  border-radius:6px;
  font-weight:600;
  cursor:pointer;
  transition:all 0.35s ease;
background: linear-gradient(
  135deg,
  #0a4cff 0%,
  #013ce7 40%,
  #002693 75%,
  #001a66 100%
);
}
.industry-item i{
  font-size:22px;
  color:#ffffff;
  transition:all 0.35s ease;
}
/* services */

.core-services-section {
    padding: 60px 20px;
    background-color: #e4e4e473;
}
.core-services-section h2{
  text-align: center;
}
.core-services-section h3{
  text-align: center;
  padding: 15px 0px 20px 0px;
  margin: 0 auto;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 25px;
}
.core-services-grid {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  padding-top: 20px;
}

.core-service-card {
    background-image: linear-gradient(214deg, #013CE7 22%, #0B2054 83%);
    color: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    position: relative;
    text-align: center;
}
.core-service-card a{
  text-decoration: none;
  color: white;
}


.core-service-card .core-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 15px;
}

 

.core-service-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    width: 100%;
    text-transform: capitalize;
    text-align: justify;
}

/* location */

.locations{
  padding:60px 0px;
}
.locations h2{
  text-align: center;
  padding-bottom: 20px;
  font-size: 25px;
}
.location-grid{
display: flex;
justify-content: center;
gap: 30px;
}

.location-card{
  border:1px solid #ffff;
  border-radius:18px;
  padding:22px 20px;
  color:#fff;
  transition:all .3s ease;
  width: 30%;
}

.country {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 14px;
    flex-direction: column;
}

.flag svg{
  width: 50px;
  height: 50px;
}

.country h3{
  font-size:18px;
  font-weight:600;
  margin:0;
}

.location-card p{
  font-size:14px;
  line-height:1.6;
  color:#fff;
}
/* MAIN POPUP */
.contact-us-section{
  padding: 40px 0px;
}
.contact-main{
    display: flex;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
      background-image: linear-gradient(214deg, #013CE7 22%, #0B2054 83%);
   padding: 30px;
}
/* LEFT */
.contact-brand .logo img{
max-width: 300px;
width: 100%;
}
 .contact-left {
    width: 60%;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0px 100px;
}
 .contact-brand h1 {
  font-size: 48px;
  margin: 0;
}
.contact-left img:last-child {
    border-radius: 16px;
    object-fit: fill;
    margin-top: 18px;
}
 .contact-brand span {
  font-size: 14px;
  margin-left: 4px;
}

 .contact-left h3 {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
}
.contact-left p{
  font-size: 18px;
  color: #fff;
  margin-top: 15px;
}
.terms {
  font-size: 12px !important;
  margin-top: 15px;
    color: #333  !important;
  font-size: 14px;
  font-weight: 600;
}

.terms a {
  color: #000;
  text-decoration: underline;
}
/* RIGHT */
 .contact-right {
 width: 40%;
  background: #fff;
  padding: 40px 35px;
    border-radius: 16px;
  text-align: center;
}

 .contact-right h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

 .contact-right p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #000000;
}

.quick-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-title {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
}

.contact-link {
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: 0.3s;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    display: inline-block;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
}
.contact-link img{
  width: 16px;
  height: 16px;
}
/* Individual styles */
.contact-link.call {
  background: #e50c0c;
  color: #ffffff;
}

.contact-link.whatsapp {
  background-color: #128C3E; 
   color: #ffffff;
  font-weight: 600;
}
.contact-link.email{
   background: #0b5ed7;
  color: #ffffff;
  font-weight: 600;
}

.google-form-wrapper iframe {
  width: 100%;
  height: 380px; 
  border: none;
}
/* end style */

/* responsive */
/* fooetr */

.footer{
  background-image: linear-gradient(214deg, #013CE7 22%, #0B2054 83%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding-top: 30px;
  padding-bottom: 30px;
}


.footer-top{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo{
  max-width: 180px;
  margin-bottom: 10px;
}

.footer-col p{
  font-size: 14px;
  line-height: 1.7;
   font-family: var(--font-secondary);
   font-weight: 400;
   text-align: justify;
   text-decoration: none;
   color: white;
   padding-top: 20px;
}

.footer-col h3{
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-secondary);
  font-weight: 700;
}
.footer-col h3 svg{
  fill: white;
  width: 26px;
  height: 26px;
  padding-right: 5px;
}
.footer-col ul{
  list-style: none;
  padding: 0;
}

.footer-col ul li{
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  gap: 7px;
  align-items: start;
}
.footer-col ul li i {
    font-size: 21px;
    padding-right: 7px;
}
.footer-col ul li img {
    width: 18px;
    height: 18px;
}
.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    line-height: 25px;
    font-family: var(--font-primary);
    font-weight: 400;
    display: flex;
    align-items: center;
}
.footer address ul li {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    gap: 7px;
    align-items: start;
}
.footer address ul li img {
    width: 18px;
    height: 18px;
}
.footer address {
    font-style: normal;
}
.footer address  a {
    font-size: 14px;
    display: flex;
    gap: 7px;
    align-items: start;
}
.footer-col ul li a img {
    padding-right: 6px;
    width: 15px;
    height: 15px;
}
address.footer-col ul li a img {
    padding-right: 6px;
    width: 22px;
    height: 19px;
}
.footer-col ul li a:hover{
  opacity: 1;
}

.footer-social{
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.footer-social a{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border-radius: 10%;
  text-decoration: none;
}
.footer-social a img{
  width: 20px;
  height: 20px;
}
.flag img{
  width: 30px;
  height: 30px;
}
.footer-presence{
  padding: 40px 20px;
  text-align: center;
}

.footer-presence h2{
  font-size: 25px;
  margin-bottom: 20px;
}

.footer-presence ul{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  list-style: none;
  margin: auto;
  padding: 0;
}
.footer-presence li{
  text-align: start;
  display: flex;
  align-items: center;
}
.footer-presence li img{
  color: white;
  width: 20px;
  height: 20px;
  padding-right: 10px;
}
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 20px;
  text-align: center;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}
.footer-bottom p{
  margin-bottom: 0px;
}


.footer-links a{
  color: #fff;
  margin: 0 8px;
  text-decoration: none;
  opacity: 0.85;
}

.footer-links a:hover{
  opacity: 1;
}
.note{
      background-color: #0813244D;
      padding-top: 25px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 8px;
}
.note p{
  font-size: 13px;
  line-height: 17px;
  font-family: var(--font-secondary);
  line-height: 19px;
  font-weight: 400;
  text-align: justify;
}
/* end footer */
.why-choose-technologies{
  padding: 80px 20px;
 background-color: #F7F7F7;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 1.3;
}

.section-title span {
  color: #1d4cff;
}

/* Cards Grid */
.why-choose-technologies .cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.why-choose-technologies .why-card {
 background-color: #0024EC;
  color: #fff;
  padding: 35px 25px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / .5);
}

.why-choose-technologies .why-card:hover {
      background-color: #001EC4;
}

/* Icon */
.why-choose-technologies .icon-box {
    width: 22px;
    height: 22px;
    background-color: #FFF;
    fill: #2563EB;
    color: #2563EB;
    font-size: 26px;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    padding: 22px 0px;
}
.why-choose-technologies .icon-box svg{
    height: 1em;
    width: 1em;
     fill: #2563EB;
}
/* Text */
.why-choose-technologies .why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-choose-technologies .why-card p {
     font-size: 15px;
    font-weight: 400;
    color: #FFF;
}
.services-section {
  padding: 70px 20px;
  background: #fff;
}

/* NO class on heading */
.services-section h2 {
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.services-section h2 span {
  color: #1e5bff;
}

/* NO class on paragraph */
.services-section p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto 50px;
  color: #000;
  text-align: center;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.services-section .corporate-service-card {
  background: linear-gradient(180deg, #003bff, #001c9e);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.corporate-service-contain{
 padding: 30px 20px 0;
}
.services-section .corporate-service-card h3 {
  font-size: 22px;
  font-weight: 700;
}

.services-section .corporate-service-card p {
font-size: 14px;
font-weight: 400;
color: #f1f1f1;
margin-bottom: 12px;
}

.get-quote-btn {
  background: #ff0000;
  color: #fff;
  padding: 10px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 0 0 12px 12px;
  display: block;
  transition: all 0.3s ease;
}
.pricing-banner {
  padding: 60px 20px;
}

.pricing-box {
  margin: auto;
  padding: 40px 45px;
  border-radius: 14px;
      background-image: linear-gradient(180deg, #0117D6 0%, #F229BE 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.pricing-box h2 {
    font-weight: 600;
    color: #FFF;
  margin-bottom: 15px;
}

.pricing-box p {
      font-size: 16px;
    font-weight: 400;
    color: #FFF;
  margin-bottom: 30px;
}

/* Button */
.popup-deatil h2{
  color: gray;
  font-weight: 600;
  padding-bottom: 10px;
}
.btn-group{
  display: flex;
  gap: 10px;
}
.connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.connect-btn i{
  font-size: 16px;
}

.connect-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.comparison-section {
  padding: 60px 20px;
  background: #ffffff;
}

.comparison-section h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2563eb;
}
.comparison-section h2 span{
  color: #000;
}
.table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  margin-bottom: 20px;
}

.comparison-table th {
  background: #000;
  color: #fff;
  padding: 14px;
  font-size: 14px;
  text-align: left;
}

.comparison-table td {
    padding: 14px 16px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 14px;
    color: #000;
  vertical-align: top;
}
.table-contain h3{
  padding-bottom: 10px;
}
.table-img{
  padding-left: 20px;
}
.comparison-table tr:nth-child(even) {
  background: #f9f9f9;
}
.comparison-table tr:hover {
    background: #f7fbff;
}
.table-contain p{
  font-size: 16px;
  margin-bottom: 20px;
}
.faq-section {
  padding: 90px 55px;
}

.faq-section h2 {
  text-align: center;
    font-weight: 700;
    color: #010101;
  margin-bottom: 40px;
  font-family: "Verdana", sans-serif;
}

.faq-item {
  margin-bottom: 22px;
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
  font-family: "Verdana", sans-serif;
}

.faq-item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
    color: #000;
    font-family: "Verdana", sans-serif;
}
.testimonials{
      background-color: #E6E6E6;
      padding-top: 70px;
}

.testimonial-card-main{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  padding:60px 0px;
}
.testimonials h2 {
    text-align: center;
}
.testimonial-card {
  border-radius: 10px;
  position: relative;
  background: linear-gradient(
    to bottom,
    #E2E2E2 0%,
    #E2E2E2 45%,
    #9bbce8 60%,   /* mix shade (optional but best) */
    #0A60C2 100%
  );
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}


.avatar{
  position:absolute;
  top:-40px;
  left:50%;
  transform:translateX(-50%);
  background:#fff;
  border-radius:50%;
  padding:4px;
}

.avatar img{
  width:70px;
  height:70px;
  border-radius:50%;
}

.bubble {
  background: linear-gradient(
    145deg,
    #1a1a1a 0%,
    #111111 50%,
    #000000 100%
  );
  color: #ddd;
  margin: 40px 20px 25px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.bubble::after{
  content:'';
  position:absolute;
  left:40px;
  bottom:-15px;
  width:0;
  height:0;
  border-left:15px solid transparent;
  border-right:15px solid transparent;
  border-top:15px solid #111;
}

.bubble h3{
  margin:0;
  color:#f5c400;
  font-size:18px;
}

.bubble span{
  font-size:12px;
  color:#aaa;
}

.bubble p{
  font-size:14px;
  margin:12px 0;
  line-height:1.6;
}

.stars{
  color:#f5c400;
  font-size:16px;
}

.tools-section{
background-color: #EEEEEE;
  padding:50px 0px;
}

.tools-section h2{
  text-align:center;
  margin-bottom:40px;
  letter-spacing:1px;
}

.tools-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

/* Left Card */
.tools-list{
background-color: #FFFFFF;
    padding: 25px 45px 25px 45px;
    border-style: solid;
    border-width: 0px 0px 0px 3px;
    border-color: #C2C7CD;
    border-radius: 24px 24px 24px 24px;
    box-shadow: 0px 0px 10px -1px rgba(153.50571126630234, 153.41601353846409, 173.40108334639768, 0.5);
}

.tools-list ul{
  list-style:none;
  padding:0;
  margin:0;
}

.tools-list li{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:15px;
  font-size:18px;
  font-weight:600;
  color:#000;
}

.tools-list li img{
  fill:#2563eb;
  width: 17px;
  height: 17px;
}

/* Right Image */
.tools-image{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.tools-image img{
  width:100%;
  height: 100%;
  display:block;
 border-radius: 20px 20px 20px 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/* Responsive */
.growth-performance {
  padding: 80px 0px;
  background: #f1f1f1;
}


.growth-performance h2 {
  text-align: center;
  font-weight: 700;
  color: #111;
  padding-bottom: 30px;
}

.growth-performance h2 span {
  color: #1e63ff;
}

.gp-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* LEFT CARD */
.gp-content {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.gp-item {
  display: flex;
  gap: 10px;
}

.gp-item:last-child {
  margin-bottom: 0;
}

.gp-icon {
  min-width: 24px;
  height: 24px;
  color: #1e63ff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.gp-icon svg{
  fill: #2563EB;
}
.gp-item h4 {
 font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #000;
}

.gp-item p {
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
}
.gp-image img {
  border-radius: 14px;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / .5);
  height: 100%;
  width: 100%;
}
.gp-image{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.google-form-wrapper iframe {
  width: 100%;
  height: 380px; 
  border: none;
}

/* Responsive */
/* major */
.digital-product-inner{
  background-color: white !important;
}
.major-cloud{
    background-color: #f5f5f5;
    padding: 50px 0px;
}
.major-cloud h2{
  text-align: center;
  padding-bottom: 10px;

}
.major-inner{
background-color: #FFFFFF;
border-radius: 24px 24px 24px 24px;
padding: 45px 45px 22px 45px;
box-shadow: 0px 0px 10px -1px rgba(153.50571126630234, 153.41601353846409, 173.40108334639768, 0.5);
margin-top: 20px;
}
.major-inner img{
  width: 24px;
  height: 24px;
  padding-right: 8px;
}
.major-inner p{
    font-family: var(--font-secondary);
    font-size: 17px;
    letter-spacing: 0.2px;
    display: flex;
    align-items: start;
    line-height: 23px;
}

/* accordin */

.faq-section-inner .faq-item {
  border: 1px solid #cfd3ff;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background-color: #F4F4F4;
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-secondary);
  border: 1px solid #DCD7F5;
}

.faq-question .icon {
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
      background-color: #F3F3F3
}

.faq-answer p {
  padding: 15px 20px;
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000000;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .icon {
  transform: none;
}
.faq-section .col-right{
  padding: 0px 40px;
}
.faq-section .col-right img{
      border-radius: 14px 14px 14px 14px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    width: 100%;
    object-fit: cover;
}
/* end */
/* state */

.stats-section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-desc {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-card {
  background-image: linear-gradient(180deg, #013CE7 0%, #002693 100%);
  color: #fff;
  padding: 35px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.stat-icon-box {
  width: 50px;
  height: 50px;
  background: #fff;
  color: #0033a1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 22px;
}
.stat-icon-box svg{
  fill: var(--color-primary);
  width: 22px;
  height: 22px;
}
.stat-card h3 {
    font-size: 32px;
    margin: 10px 0 5px;
}

.stat-card p {
  font-size: 16px;
  margin: 0;
  letter-spacing: 0.5px;
}
/* global */
.offer-globally {
  padding: 60px 20px;
  background: #f7f7f7;
}

.offer-globally__container {
  max-width: 1200px;
  margin: auto;
}

.offer-globally__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.offer-globally__card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  width: 31%;
}

.offer-globally__icon {
  width: 45px;
  height: 45px;
  background: #2a5bff;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.offer-globally__card h3 {
  font-size: 16px;
  margin-bottom: 15px;
  text-align: center;
  padding-top: 12px;
}

.offer-globally__card ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-globally__card ul li {
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 35px;
}
.offer-globally__icon svg{
  fill: white;
  width: 18px;
  height: 18px;
}
.offer-globally__card ul li::before {
  content: " ";
  background-image: url("../images/hand-point-right-solid.svg");
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  color: #2a5bff;
  padding-right: 10px;
}

/* end */
/* process */

.process-section {
  padding: 70px 20px;
}
.process-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.process-card {
  background: #0b2cff;
  color: #fff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  width: 31%;
  text-align: center;
}
.process-card:hover{
      background-color: #001EC4;
}
.process-card ul li{
  color: #fff;
  text-align: start;
  list-style: none;
  margin-top: 10px;
}
.process-card ul li a{
  text-decoration: none;
    color: #fff;
        font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    gap: 12px;

}
.process-card ul li img{
  width: 18px;
  height: 18px;
}
.process-card:hover {
  transform: translateY(-8px);
}

.process-card.wide {
  grid-column: span 1.5;
}

.process-icon {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 22px;
}
.process-icon svg{
  fill: white;
  width: 35px;
  height: 35px;
}
.process-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.process-card ul li a svg{
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
}

/* end */
/* tools */

.tools-stack-section {
  padding: 70px 20px;
}

 .tools-stack-section h2{
  text-align: center;
  margin-bottom: 10px;
}

 .tools-stack-section p {
  max-width: 900px;
  margin: 0 auto 35px;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.tools-stack-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  background: #2563eb;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-btn:hover{
    border-radius: 20px;
}
.tab-btn.active {
  opacity: 1;
  border-radius: 20px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tools-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.tool-stack-box {
  background: #f2f2f2;
  padding: 18px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #2a5bff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
/* ens */
/* popup */

.footer-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background: #fff;
  width: 90%;
  max-width: 1200px;
  padding: 25px;
  border-radius: 12px;
  height: 600px;
  position: relative;
  animation: popupFade 0.3s ease;
  overflow-y: scroll;
  padding: 40px 40px;
}

.popup-content h2 {
  margin-bottom: 10px;
}

.popup-content p {
  font-size: 14px;
  line-height: 1.6;
}

.close {
  position: absolute;
  top: 7px;
  right: 15px;
  font-size: 55px;
  cursor: pointer;
  color: rgb(0, 0, 0);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-deatil h3{
  font-size: 25px;
  font-weight: 700;
  line-height: 42px;
  color: #000000;
  padding-bottom: 10px;
}
.popup-deatil p a{
  font-weight: bold;
  text-decoration: none;
}
@keyframes popupFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* end */
/* **********************************INNER PAGE ************************************************************* */
.hero-section-inner-page{
  padding-top: 20px;
  background-image: linear-gradient(90deg, #002ACF 29%, #0C2153 100%);
}
.hero-inner-page{
      min-height: 173px;
      display: flex;
      justify-content: center;
      align-items: center;
}
.hero-inner-page h1{
    font-weight: 700;
    color: #FFFFFF;
    font-size: 32px;
}
.technologies {
  padding: 70px 20px;
  background: #f6f8fc;
}
.technologies h2 {
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.technologies-subtitle {
  font-size: 15px;
  color: #555;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(231px, 1fr));
    gap: 15px;
}

.tech-item {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #1c1c1c;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: default;
  text-align: center;
}

.tech-item:hover {
  background: linear-gradient(135deg, #0b2cff, #0032b3);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(11, 44, 255, 0.35);
}

/* end */
/* our team*/

.our-team-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1a33ff;
  margin-bottom: 40px;
}

.our-team-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.our-team-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  width: 48%;
}

.our-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.our-team-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.our-team-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
}

.our-team-card span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1a33ff;
  margin-bottom: 10px;
}

.our-team-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* end */
/* gallery */

.gallery-section h2{
  text-align: center;
  padding-top: 20px;
} 
.gallery-main{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding-top: 30px;
}
.gallery-img{
  width: 23%;
}
.gallery-img img{
  width: 100%;
  max-width: 100%;
      border-radius: 12px 12px 12px 12px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}
/* end gallery */
/* review */
.reviewed-main{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 30px 0px;
}
.reviewed-img{
  width: 31%;
}
.reviewed-section h2{
  text-align: center;
}
.reviewed-img img{
      border-radius: 12px 12px 12px 12px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    width: 100%;
}
/* end */
/* 404 */
.banner-404{
background-image: linear-gradient(180deg, #FFFFFF 0%, #737CAF 100%);
min-height: 610px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.banner-404-inner{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.banner-404-inner h1{
      font-family: "Verdana", Sans-serif;
    font-size: 109px;
    color: #000000;
}
.banner-404-inner p{
      font-size: 27px;
    font-weight: 500;
    line-height: 27px;
    color: #000000;
    padding-top: 20px;
}
.privacy .popup-deatil{
  padding: 40px 0px;
}
.privacy .popup-deatil p{
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 25px;
}
/* end */
/* milstones */

.milestones {
  padding: 80px 108px;
  background: #ffffff;
}
.milestones h2{
  text-align: center;
}
.milestone-title span {
  color: #1f5bff;
}

.milestone-desc {
  max-width: 1100px;
  margin: 0 auto 50px;
  font-size: 17px;
  line-height: 1.7;
  color: #000;
  font-family: var(--font-secondary);
  text-align: center;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.milestone-card {
    background: linear-gradient(180deg, #0047ff, #002a9c);
    padding: 20px 20px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    text-align: center;
}

.milestone-card .icon-box {
  width: 55px;
  height: 55px;
  background: #fff;
  border-radius: 10px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.milestone-card .icon-box svg {
  width: 28px;
  fill: var(--color-primary);
}

.milestone-card h3 {
  font-size: 33px;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: var(--font-secondary);
}

.milestone-card p {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-secondary);
}

/* and */
/* slick */
.image-slider-section {
  padding: 50px 0;
  overflow: hidden;
}
.about-image-slider-section .image-slider{
  padding-top: 30px;
}
.about-image-slider-section .slide{
  padding: 10px 0px;
  margin: 0px 10px;
}
.about-image-slider-section .slide img{
height: 300px;
object-fit: cover;
}
.image-slider-section h2{
  text-align: center;
  padding-bottom: 10px;
}
.image-slider {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
}

.slide {
  position: relative;
  width: 18%;
   border-radius: 14px;
}
.slide img {
  width: 100%;
  object-fit: contain;
 box-shadow: 0 0 10px;
 border-radius: 14px;
}

/* REMOVE ARROWS */
.gallery-section{
  padding: 50px 0px;
}
.image-slider .slick-arrow {
  display: none !important;
}
.review-card-main{
  margin-bottom: 30px;
   display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
}
.review-card {
  background: #fff;
  padding: 20px ;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  transition: .3s ease;
  min-height: 250px;
  height: 280px;
  width: 23%;
}
.review-card-main .slick-track{
  padding-bottom: 30px;
}
.gallery-main,
.slick-track,
.slick-list {
  direction: ltr;
}
.gallery-main {
  overflow: hidden;
}
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.back-arrow {
  font-size: 20px;
  cursor: pointer;
}
.menu-dots {
  font-size: 20px;
  cursor: pointer;
}
/* USER INFO */
.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  margin-left: 10px;
}
.user-info img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.user-info h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.user-info span {
  font-size: 12px;
  color: #777;
}
.stars {
  color: #fbbc04;
  font-size: 16px;
  margin: 10px 0;
}
.review-text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}
.review-footer {
  margin-top: 12px;
}
.like {
  font-size: 14px;
  color: #e53935;
  cursor: pointer;
}
.review-section h2{
  text-align: center;
  padding: 20px 0px;
}
/* sliderr */
/* ROW */

.our-team{
  position: relative;
  height: calc(100vh - 87px);       
  overflow: hidden;  
}

.collage-slider {
  position: absolute;
  inset: 0;            
  width: 120vw;
  margin-left: -10vw;
  padding: 0;         
  overflow: hidden;
  isolation: isolate;
}

.our-team::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(14 14 14 / 72%);
    pointer-events: none;
    z-index: 5;
}
.our-team-main::after{
  display: none !important;
}
.our-team-heading {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  z-index: 7;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.our-team-heading .container{
  text-align: center;
  color: white;
}
.our-team-heading .container h1{
  padding-top: 15px;
  font-size: 40px;
}
.our-team-heading .container .hero-inner h1{
    text-align: center;
    font-size: 68px;
    line-height: 71px;
    padding-bottom: 20px;
}
.our-team-heading .container .hero-inner p{
  text-align: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.our-team-heading .container .hero-inner ul{
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
  gap: 18px;
}
.our-team-heading .container .hero-inner ul li{
  width: 48%;
  gap: 2px;
  border-radius: 12px;
  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(6px);
  padding: 12px 14px;
}
.our-team-heading .container .hero-inner ul li::before {
  display: none;
}
.our-team-heading .container .hero-inner ul li span:first-child {
    min-width: 28px;
    height: 28px;
    background-image: linear-gradient(214deg, #013CE7 22%, #0B2054 83%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    box-shadow: 0 0 18px #0d1835;
    font-size: 14px;
}
.row.row-1 {
  position: absolute;
  top: -5%;
}
.row.row-2 {
  position: absolute;
  top: 30%;
  transform: translateY(-50%) rotate(5deg);
}
.row.row-3 {
  position: absolute;
  bottom: 0%;
}
.collage-slider .row {
  width: 140vw;
  margin-left: -20vw;
  overflow: hidden;
  transform: rotate(-5deg);
}
.row-2 {
  transform: rotate(6deg);
}
.track {
  display: flex;
  gap: 10px;
  width: max-content;
}
.our-team-main{
  height: 100%;
  padding-bottom: 40px;
}
.collage-slider {
  padding: 80px 0;
}
.track img {
  width: 250px;
  height: 185px;
  object-fit: cover;
  border-radius: 20px;
  flex-shrink: 0;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.left .track {
  animation: moveLeft 40s linear infinite;
}
.right .track {
  animation: moveRight 40s linear infinite;
}
/* quick */

.quick-links h2{
  background-image: linear-gradient(90deg, #002ACF 29%, #0C2153 100%);
  color:#fff;
  text-align:center;
  padding:14px;
  font-size:22px;
  margin:0;
}

.quick-links-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:30px;
  padding:25px 30px;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
}
.quick-links-grid-next{
  grid-template-columns: repeat(3, 1fr);
}
.quick-links ul{
  list-style:none;
  padding:0;
  margin:0;
}

.quick-links li{
  margin-bottom:12px;
}

.quick-links a{
  text-decoration:none;
  color:#333;
  font-size:15px;
  position:relative;
  padding-left:18px;
  display:inline-block;
  transition:all .3s ease;
}

.quick-links a::before{
  content:"›";
  position:absolute;
  left:0;
  color:#999;
  font-size:18px;
  transition:.3s;
}

.quick-links a:hover{
  color:#9b0018;
  padding-left:22px;
}

.quick-links a:hover::before{
  color:#9b0018;
}

/* end */
@keyframes moveLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes moveRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media(min-width:1599){
  .track img {
  width: 340px;
  height: 250px;
}
}
@media(max-width:1299px) {
  .quote-btn {
    padding: 8px 21px;
    font-size: 15px;
}
.section-space {
  padding: 67px 0px;
}
.service-section {
    padding: 62px 0;
}
.location-card {
    width: 46%;
}
  .track img {
  width: 200px;
  height: 160px;
}
}
@media(max-width:1024px){

 .section-title br{
  display: none;
 }
 .cards-grid {
    gap: 15px;
}
.why-card {
    padding: 23px 18px;
}
.cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-card {
    width: 46%;
}
.track img {
    width: 189px;
    height: 146px;
}
.our-team-heading .container .hero-inner h1{
    font-size: 55px;
    line-height: 65px;
}
}
@media(max-width:992px){
  .hero-section {
    height:100%;
}
   .menu-item-has-children:hover .sub-menu{
    display: none !important;
  }
  .menu-item-has-children.active .sub-menu{
  display: block !important;
}
  .mobile-menu-trigger.active span{
  background: transparent;
}
.mobile-menu-trigger.active span::before{
  transform: rotate(45deg);
  top: 0;
}
.menu a {
    justify-content: start;
}
.menu-item-has-children {
    align-items: start;
}
  .sub-menu{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
}

.menu-item-has-children.active > .sub-menu {
    max-height: 300px;
    margin-top: 10px;
    padding: 10px;
    width: 98%;
    max-width: 100%;
}
.sub-menu li:first-child {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.sub-menu li:hover {
    background-color: transparent;
}
.sub-menu li:hover a {
    color: rgb(0, 0, 0);
}
  .menu-item-has-children {
    flex-direction: column;
}
.quote-btn{
  display: none;
}
.mobile-menu-trigger {
    display: flex;
    justify-content: center;
    align-items: center;
}

 .menu {
    position: fixed;
    top: 99px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #060e6f;
    transform: translateX(-100%);
    transition: 0.4s ease;
    padding-top: 20px;
    z-index: 999;
    overflow-y: scroll;
}
.header.scrolled .menu {
    top: 75px;
}
  .menu.active {
    transform: translateX(0);
  }

  .menu ul {
    flex-direction: column;
    gap: 15px;
    padding-left: 20px;
    padding-bottom: 200px;
  }

   .sub-menu {
    display: block;
    position: static;
  }
  .sub-menu a {
    color: #000000;
    font-size: 15px;
  }
  .hero-section-inner .hero-inner h1 {
    text-align: left;
    font-size: 31px;
    line-height: 41px;
    padding-bottom: 10px;
}
  .contact-left {
    padding: 0px 31px;
}
  .footer-bottom {
 flex-direction: column;
 justify-content: center;
 gap: 12px;
}
  ul.ulbox li {
    width: 20%;
}
  .quote-btn{
    display: none;
  }
h2 {
    font-size: 21px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.2em;
    letter-spacing: .6px;
}

  .hero-section ul {
    flex-wrap: wrap;
  }
  .hero-section ul li {
    width: 45%;
}
.hero-section h1 {
    font-size: 34px;
    line-height: 1.1em;
}
.hero-section h1 br{
  display: none;
}
.award-section h2 {
    padding-bottom: 21px;
}

.award-right{
    padding-bottom: 20px;
    padding-top: 40px;
}
.greatest-section {
    background-color: #E2E1E1;
    padding: 64px 27px;
}
.greatest-right{
    padding-top: 30px;
    justify-content: center;
}

.why-chooseus-section {
    padding: 66px 45px;
}
.why-chooseus-section{
    padding: 66px 45px;
}
.service-card {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.why-chooseus-right{
    padding-top: 30px;
    justify-content: center;
}

.video-section{
    display: none;
}
.industry-section i{
  display: none;
}
   .feature-grid {
    gap: 5px;
}
.feature-box .icon {
    font-size: 17px;
    width: 43px;
    height: 31px;
}
.feature-box {
    gap: 7px;
}
 .services-section .services-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
.tech-partner-section {
    background: #f2f2f2;
    padding: 96px 32px;
}
.contact-form{
    margin-top: 30px;
    width: 100%;
}
 .footer-top{
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}
.contact-form {
    padding: 20px;
}
 .industry-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .faq-section {
    padding: 90px 10px;
}
.tech-partner-section-inner {
    padding: 80px 10px;
}
.comparison-section {
    padding: 60px 0px;
}
.why-choose-technologies .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.tools-image{
  padding-top: 20px;
}
  .gp-wrapper {
    grid-template-columns: 1fr;
  }

  .gp-image {
    order: -1;
  }
  .tools-wrap{
    grid-template-columns:1fr;
  }
 .tools-wrap{
    grid-template-columns:1fr;
  }
  .major-inner {
    padding: 25px 17px 22px 17px;
}
.major-inner p {
    align-items: start;
}
.contact-main {
    padding: 15px 15px;
}
.contact-right {
    padding: 25px 20px;
}
.contact-left h2 {
    font-size: 19px;
    margin-top: 6px;
}
.faq-section .col-right {
    padding: 0px 0px;
}
.faq-section .col-right img {
    height: 100%;
}
 .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
   .offer-globally__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviewed-img {
    width: 46%;
}
.tools-stack-grid {
    grid-template-columns: repeat(3, 1fr);
}
.growth-performance h2 br{
  display: none;
}
.gp-content {
    padding: 30px 15px;
}
.gp-image {
  padding-top: 40px;
}
.growth-performance {
    padding: 60px 0px;
}
 .stat-card {
    width: 206px;
}
.content h3 {
    text-align: center;
}
 
}
@media (max-width: 991px) {
   .row{
  flex-direction: column;
  flex-wrap: wrap;
  
}
.col-left{
  width: 100%;
   padding: 0px 10px;
}
.col-right{
  width: 100%;
  padding: 0px 10px;
}
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card.wide {
    grid-column: span 2;
  }
   .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
   .milestone-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  
    h2{
        font-size: 21px;
    }
    .container{
  padding:0 16px;
}
.whatsapp-icon-floting {
    width: 65px;
    height: 65px;
}

.my-float {
    width: 34px;
}
.email-icon-floating svg {
    width: 24px;
    height: 24px;
}
.email-float {
    width: 65px;
    height: 65px;
}
    .google-form-wrapper iframe {
    height: 1100px;
  }
    .award-section h2 {
    padding-bottom: 8px;
}
.greatest-section {
    padding: 41px 0px;
}
.stat-card {
    width: 100%;
    margin: 0 0px;
}
.stats-container {
    gap: 9px;
}
.tech-partner-section {
    background: #f2f2f2;
    padding: 64px 0px;
}
.contact-form {
    padding: 20px;
}
ul.ulbox li {
    width: 33%;
}
.hero-section {
    min-height: 400px;
    height: 100%;
}
.hero-section p {
    font-size: 13px;
    line-height: 24px;
    text-align: start;
    text-align: justify;
}
.hero-section .hero-inner ul {
    gap: 9px;
}
.location-card {
    padding: 16px 5px;
}
.location-card p {
    font-size: 12px;
    margin-bottom: 0px;
}
.country {
    gap: 5px;
    align-items: center;
}
.location-grid {
    gap: 5px;
    text-align: center;
}
.locations {
    padding: 16px 0px;
}
 .footer-social{
  padding-bottom: 15px;
 }
.quote-modal {
    padding-top: 80px;  /* more spacing from top */
  }
  .quote-box {
    padding: 30px 20px;
  }
  .faq-item h3 {
    font-size: 14px;
  }
  .faq-item p {
    font-size: 13px;
  }
    .why-chooseus-section .service-grid {
    gap: 8px;
}
.icon-box {
    font-size: 26px;
    margin: 0 auto 0px;
    padding: 14px 0px;
}
.service-card {
    padding: 11px 9px;
}
     .pricing-box {
    padding: 30px 25px;
  }

  .pricing-box h2 {
    font-size: 24px;
  }

  .pricing-box p {
    font-size: 14px;
  }
  .section-title {
    font-size: 21px;
        margin-bottom: 36px;
}
.core-services .services-grid {
  grid-template-columns: repeat(1, 1fr);
    gap: 0px;
}
.core-services {
    padding: 0px 0px 60px 0px;
}
.industry-section h2 {
    font-size: 21px;
}

.industry-section {
    padding: 40px 0;
}
.service-section {
    padding: 40px 0;
}
.faq-section {
    padding: 60px 10px;
}
.why-choose-technologies {
    padding: 20px 0px;
}

.digital-product {
    padding: 25px 0px;
}

.services-section {
    padding: 30px 0px;
}
.img-box {
    width: 48%;
}
.our-reviews-main {
    display: flex;
    justify-content: space-between;
    padding: 40px 0px;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-partner-section-inner {
    padding: 80px 40px;
}
.core-services .services-grid ul {
    display: flex;
    flex-wrap: wrap;
}
.core-services .services-grid li {
    width: 50%;
    align-items: start;
}
.section-space {
    padding: 66px 0px;
}
.why-choose-technologies .why-card {
    padding: 21px 15px;
}
.pricing-box {
    text-align: center;
}
.btn-group {
    flex-direction: column;
    text-align: center;
}
.connect-btn {
    text-align: center;
    justify-content: center;
}
.contact-main{
  flex-direction: column;
}
.contact-left {
    width: 100%;
     padding: 25px 20px;
}
.contact-right {
    width: 100%;
}
 .contact-popup {
    flex-direction: column;
  }
  .contact-popup {
    padding: 17px;
}
.contact-popup .contact-left {
    width: 100%;
}
.contact-popup .contact-right {
    width: 100%;
}
.contact-popup .contact-text {
    font-size: 17px;
    margin-top: 15px;
    color: #fff;
}
 .google-form-wrapper iframe {
    height: 1100px;
  }
 .core-services-section {
    padding: 60px 0px;
}
.footer-links a {
 display: inline-block;
    padding: 2px 0;
    font-size: 16px;  
}
.greatest-right img {
    width: 100%;
    height: 100%;
    max-width: 100%;
}
.slick-prev,
.slick-next {
  display: none;
}
.slide {
    position: relative;
    overflow: hidden;
    width: 25%;
}
.gallery-main {
    gap: 7px;
}
.review-card {
    width: 42%;
}
.core-services-grid {
    gap: 15px;
}
.our-team-grid {
    gap: 18px;
}
.table-img{
  padding-left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.offer-globally__grid {
    gap: 13px;
}
.offer-globally__card {
    width: 47%;
}
.our-team-heading .container .hero-inner h1 {
    font-size: 41px;
    line-height: 40px;
    padding-top: 0px;
    padding-bottom: 10px;
}
.our-team-heading .container .hero-inner ul {
    padding-top: 14px;
    gap: 4px;
}
.our-team-heading .container .hero-inner ul li {
    padding: 5px 14px;
}
}
@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
 .core-services .services-grid {
    grid-template-columns: 1fr;
  }
  h2 {
    font-size: 26px;
  }
}
@media(max-width: 576px){
  .footer-top {
    gap: 2px;
}
  .services-section .services-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
.pricing-banner {
    padding: 60px 0px 0px 0px;
}
  ul.ulbox li {
    width: 50%;
}
  .footer-top{
    grid-template-columns: 1fr;
  }

  .footer-presence ul{
    grid-template-columns: repeat(2, 1fr);
  }
  .core-services .services-grid{
    grid-template-columns: 1fr;
  }

  .section-title{
    font-size: 26px;
  }
  .hero-section ul li {
    width: 100%;
}

.hero-section ul li {
    justify-content: start;
}
.hero-section.hero-section-inner ul li {
    justify-content: start;
}
.hero-section {
    padding: 40px 0px 50px 0px;
}
.hero-inner{
  margin-top: 20px;
}
.location-card {
    width: 47%;
}
.tech-partner-section-inner {
    padding: 60px 0px;
}
.stats-section {
    padding: 60px 0px;
}
.stat-icon-box {
    width: 40px;
    height: 40px;
    font-size: 17px;
}
.stats-grid {
    gap: 9px;
}
  .section-title {
    font-size: 28px;
  }
    .offer-globally__grid {
    grid-template-columns: repeat(1, 1fr);
  }
    .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card.wide {
    grid-column: span 1;
  }

  .process-title {
    font-size: 26px;
  }
  .gallery-img {
    width: 44%;
}
.process-card {
    width: 100%;
}
.reviewed-img {
    width: 100%;
}
h1 {
    font-size: 37px;
    line-height: 45px;
}
.tools-stack-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
 .neon-square {
    width: 100%;
}
.stat-card {
    padding: 7px 9px;
}
.stat-card h3 {
  padding-bottom: 0px;
}
.greatest-section  p {
    padding-bottom: 24px;
}
.tab-btn {
    padding: 10px 12px;
}
h2 {
    font-size: 21px;
}

 .core-service-card {
    padding: 25px 20px;
  }
.core-services-section h3 {
    width: 100%;
}
.stat-card h3 {
    font-size: 25px;
}
.top-left span {
    position: unset;
    transform: none;
}
.top-left {
    justify-content: start;
}
.core-services-section h3 {
    font-size: 20px;
    font-weight: 500;
}
.technologies-grid {
    grid-template-columns: repeat(auto-fit, minmax(211px, 1fr));
}
 .pricing-grid {
    grid-template-columns: 1fr;
  }
   .milestone-grid {
    gap: 5px;
  }
  .core-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
}
.contact-left img:last-child {
    width: 100%;
    object-fit: cover;
    max-width: 100%;
    height: auto;
}
.footer-bottom {
    padding: 20px 0px;
}
.breadcrumb-wrapper {
    padding: 26px 0px;
}
.breadcrumb {
    font-size: 10px;
}
.bubble::after {
    bottom: -14px;
}
.slide {
    position: relative;
    overflow: hidden;
    width: 50%;
}
.review-card {
    width: 100%;
}
.review-card {
   height: auto;
}
.slide {
    width: 44%;
}
.tools-list {
    padding: 25px 20px 25px 20px;
}
.tools-list li {
    font-size: 15px;
}
.our-team-heading .container .hero-inner ul li {
    width: 100%;
}
}
@media(max-width:490px){
  .industry-grid {
    gap: 10px;
}
.industry-item {
    padding: 16px 13px;
}
  .industry-item {
    padding: 16px 13px;
    flex-direction: column;
}
.feature-box {
    padding: 10px 10px;
    flex-direction: column;
}
.feature-box .icon {
    font-size: 17px;
    width: 31px;
    height: 31px;
}
.feature-box p {
     padding-top: 5px; 
}
.our-team-card {
    width: 100%;
}
.milestone-card h3 {
    font-size: 25px;
}
.milestone-card .icon-box {
    width: 40px;
    height: 40px;
}
.offer-globally__card {
    width: 100%;
}
.tool-stack-box {
    padding: 10px;
}
.tools-stack-section {
    padding: 40px 0px;
}
}
@media (max-width:450px) {
  .location-card {
    width: 100%;
}
.location-card {
    width: 100%;
}
 .tech-container{
    grid-template-columns: 1fr;
  }
  .core-services .services-grid li {
    width: 100%;
    align-items: start;
}
.why-choose-technologies .cards-grid {
    grid-template-columns: repeat(1, 1fr);
}
.technologies-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 2fr));
}
.tech-item {
    padding: 9px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.technologies {
    padding: 45px 0px;
}
.tech-item {
    font-size: 13px;
}
.technologies-grid {
    gap: 11px;
}
.top-right{
  justify-content: center;
  width: 100%;
}
.top-left span {
    font-size: 12px;
}
.top-right ul li a span {
    font-size: 12px;
}
.top-right ul li a img {
    width: 11px;
    height: 11px;
}
.top-left img {
    width: 11px;
    height: 11px;
}
.top-right ul li a {
    margin-left: 5px;
}
.top-left {
    justify-content: center;
    width: 100%;
}
.core-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.hero-section h1 {
    font-size: 32px;
    line-height: 1.1em;
}
.core-service-card {
    padding: 18px 14px;
}
.core-services-section h3 {
    padding: 15px 0px 10px 0px;
}
.track img {
    width: 227px;
    height: 149px;
}
.our-team-heading .container h1{
  font-size: 28px;
}
}
@media (max-width:390px){
  .location-card p {
    font-size: 10px;
}
.service-grid {
    grid-template-columns: repeat(1, 1fr);
}
.square-1 {
    top: 0;
    right: 15px;
}
.square-1 {
    top: 0;
    right: 0px;
}
.square-3 {
    bottom: 90px;
    right: 0px;
}
}


/* ROW */
/* .row {
  overflow: hidden;
  margin: 40px 0;
  width: 120%;
  margin-left: -10%;
} */
.pricing {
padding-top: 40px;
}

.pricing-page h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; letter-spacing: -2px; line-height: 1.1; margin-bottom: 24px; color: #000; }
.pricing-page .hero-p { color: #94a3b8; max-width: 700px; font-size: 1.1rem; margin: 0 auto;}
.pricing-intro{
  margin: 0 auto;
  text-align: center;
  padding-bottom: 40px;
}
.pricing-page h2 { font-size: 1.8rem; margin-bottom: 16px; font-weight: 700; color: #000; }
.pricing-page h3 { font-size: 1.2rem; color: #3b82f6; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(121, 118, 118, 0.15) 0%, transparent 70%);
    z-index: -1;
    top: -100px;
    right: -100px;
}

/* --- UPDATED SECTION: Intro / Hero --- */

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(120, 129, 144, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 100px;
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Grid Layout --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

/* --- Card Styling --- */
.card {
    background: rgb(242 239 239);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-8px);
    background: rgb(230 236 255 / 80%);
}

.card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #2dd4bf 100%);
    opacity: 0; transition: 0.3s;
}
.card:hover::before { opacity: 1; }

.card p { color: #5f646b; margin-bottom: 24px; }

.card-lg { grid-column: span 12; }
.card-md { grid-column: span 6; }
.card-sm { grid-column: span 4; }

.tag-container { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.tag {
    background: #5f646b;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    color: #cbd5e1;
    border: 1px solid #5f646b;
}

/* --- Bottom Section --- */
.bottom-section {
    margin-top: 100px;
    text-align: center;
    padding-bottom: 60px;
}

.philosophy-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px;
    border-top: 1px solid rgba(34, 30, 30, 0.08);
    border-bottom: 1px solid rgba(34, 30, 30, 0.08);
    margin-bottom: 80px;
}

.phil-item { font-weight: 600; color: #000; font-size: 1.1rem; display: flex; align-items: center; gap: 10px;}
.phil-item::before { content: "●"; color: #3b82f6; font-size: 12px; }

.cta-card {
    background: linear-gradient(135deg, #3b82f6 0%, #2dd4bf 100%);
    padding: 60px;
    border-radius: 32px;
    color: #000;
    text-align: center;
}

.cta-card h2 { font-size: 2.5rem; color: #000; margin-bottom: 16px; }
.cta-card p { color: rgba(0,0,0,0.7); font-weight: 600; margin-bottom: 30px; }

.btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}
.btn:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

@media (max-width: 900px) {
    .card-md, .card-sm { grid-column: span 12; }
    .philosophy-strip { flex-direction: column; align-items: flex-start; gap: 15px; }
    .glow { display: none; }
}

