.sec-padd-location{
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.cstm-bg{
  background-color: #f9f9f9;
}
.top-sec{
    background-image: url(/assets/images/locations/Mumbai-location-banner.webp);
    margin-top: 5rem;
    background-size: cover;
    background-repeat: no-repeat;
}
.kolkata-top{
    background-image: url(/assets/images/locations/kolkata-location-banner.webp);
    margin-top: 5rem;
    background-size: cover;
    background-repeat: no-repeat;
}
.nagpur-top{
    background-image: url(/assets/images/locations/nagpur-location-banner.webp);
    margin-top: 5rem;
    background-size: cover;
    background-repeat: no-repeat;
}
.delhi-top{
    background-image: url(/assets/images/locations/delhi-ncr-banner.webp);
    margin-top: 5rem;
    background-size: cover;
    background-repeat: no-repeat;
}
.raipur-top{
    background-image: url(/assets/images/locations/raipur-banner.webp);
    margin-top: 5rem;
    background-size: cover;
    background-repeat: no-repeat;
}
.hyderabad-top{
    background-image: url(/assets/images/locations/hyderabad-banner.webp);
    margin-top: 5rem;
    background-size: cover;
    background-repeat: no-repeat;
}
.chennai-top{
    background-image: url(/assets/images/locations/chennai-banner.webp);
    margin-top: 5rem;
    background-size: cover;
    background-repeat: no-repeat;
}
.punjab-top{
    background-image: url(/assets/images/locations/punjab-banner.webp);
    margin-top: 5rem;
    background-size: cover;
    background-repeat: no-repeat;
}

.top-sec{
    margin-top: 5rem;
    padding: 120px 5% 120px;
}

/* Card / Badge */
.erp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  border: 1px solid #e6000a;
}
.erp-badge span{
    color: #fff;
}

/* Red Dot */
.dot1 {
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  position: relative;
}

/* Blinking animation */
.dot1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: red;
  border-radius: 50%;
  animation: blink 1.5s infinite;
  opacity: 0.6;
}

@keyframes blink {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(2.5);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.top-sec .head-para h1{
    font-size: 50px;
    margin-top: 2rem;
    color: #fff;
}
.top-sec .head-para p{
    font-size: 18px;
    padding-right: 5rem;
    padding-top: 1rem;
    color: #fff;
}

.top-butn{
  margin-top: 2rem;
}
.top-butn .demo{
    padding: 12px 28px 12px 28px;
    border: none;
    border-radius: 6px;
    background-color: #e6000a;
    transition-duration: 0.3s;
}
.top-butn .demo:hover{
    background-color: #ff000b;
    transition: all ease-in-out 0.3s;
}
.top-butn .demo a{
    color: #fff;
    font-weight: 600;
}
.top-butn .demo i{
    color: #fff;
    padding-left: 10px;
}

.top-butn .talk-light{
    padding: 12px 28px 12px 28px;
    border: none;
    border-radius: 6px;
    background-color: #fff;
    transition-duration: 0.3s;
    margin-left: 15px;
    color: #000;
    font-weight: 600;
    border: 1px solid rgb(185, 185, 185);
}
.top-butn .talk-light:hover{
    background-color: #e6000a;
    transition: all ease-in-out 0.3s;
    color: #fff;
}
.top-butn .talk-light i{
    padding-right: 10px;
}
.top-sec .hero-panel{
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #e6000a6b;
    border-radius: 12px;
    padding: 36px;
    backdrop-filter: blur(8px);
}
.hero-panel h3{
    font-size: 20px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e6000a;
    color: #fff;
}
.hero-panel .stat-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.hero-panel .stat-item{
    background: rgba(255, 255, 255, 0.04);;
    border-radius: 8px;
    padding: 18px;
    border-left: 3px solid #e6000a;
}
.hero-panel .stat-num{
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}
.hero-panel .stat-label{
    font-size: 0.78rem;
    margin-top: 5px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #fff;
}

/* second section css start  */

.second-sec-head h2{
  font-size: 40px;
}
.second-sec-head h5{
  font-size: 15px;
  position: relative;
  padding-left: 45px;
}
.second-sec-head h5::after{
  content: "";
  width: 35px;
  height: 2px;
  background-color: #e6000a;
  position: absolute;
  left: 0px;
  bottom: 7px;
}

.second-sec-head p{
  font-size: 18px;
  color: #606876;
  padding-top: 1rem;
}
.second-sec-head strong{
  color: #282828;
}

.city-tabs {
    display: inline-flex;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    overflow: hidden;
    margin: 40px 0;
}

.tab-btn {
    background: #fff;
    border: none;
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn:hover {
    background: #f5f5f5;
}

.tab-btn.active {
    background: #e6000a;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}
.city-content h6{
    margin-bottom: 1rem;
}

.tagline-wrapper1 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;        
  margin-top: 2.5rem;
}

/* each item */
 .tagline-item1 {
  position: relative;
  padding: 6px 18px 6px 18px;
  font-size: 13px;
  color: #282828;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid #ddd;
  border-radius: 30px;
  background-color: #f7f7f9;
}

/* red bullet */
.tagline-item1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: none;       
  border-radius: 50%;
}
.city-stats-card{
    background: #282828;
    border-radius: 12px;
    padding: 32px;
    color: #fff;
}
.stat-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.stat-icon {
    width: 38px;
    height: 38px;
    background: rgb(207 207 207 / 15%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.tab-content .row{
    justify-content: space-between;
}
.stat-block-desc{
    font-size: 14px;
}
.city-stats-card h4{
    margin-bottom: 1.5rem;
    font-size: 22px;
}


/* Third section css start  */

.third-sec .why-lhs-card{
    padding: 20px;
    box-shadow: none;
    border-radius: 8px;
    border: 1px solid #e9e9e9;
    min-height: 16rem;
  }
  .kolkata-third .why-lhs-card{
    min-height: 19rem;
  }
  .third-sec .feature-icon{
    padding-bottom: 20px;
  }
  .third-sec .feature-txt{
    padding-bottom: 3rem;
  }
  .raipur-third-sec .why-lhs-card{
    min-height: 18rem;
  }
  .hyderabad-third .why-lhs-card{
    min-height: 18rem;
  }
  .why-lhs-card {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Hover effect for lifting */
.why-lhs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Bottom red line animation */
.why-lhs-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background-color: red;
    transition: width 0.4s ease;
}

.why-lhs-card:hover::after {
    width: 100%;
}
.why-lhs-card .why-icon {
    width: 55px;
    height: 55px;
    background: #282828;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}
.why-lhs-card .feature-subheading h3{
    font-size: 20px;
}

/* Fourth section css start  */

.ind-header{
    background: #282828;
    padding: 20px 15px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    border-radius: 10px 10px 0px 0px;
}
.ind-header h4{
    font-size: 18px;
    color: #fff;
}
.ind-header span{
    font-size: 20px;
}
.ind-body{
    padding: 20px 22px;
}
.ind-body p {
    line-height: 1.65;
    margin-bottom: 14px;
    font-size: 15px;
}
.ind-body ul{
    padding-left: 1rem;
}
.ind-features{
    list-style: none;
}
.ind-features li{
    padding: 7px 0;
    padding-left: 18px;
    position: relative;
    border-bottom: 1px solid #e5e5e5;
    font-size: 15px;
}
.ind-features li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #e6000a;
    font-weight: 700;
}
.industry-sol-card{
    border-radius: 10px;
    background-color: #f1f1f1;
}
.kolkata-fourth .industry-sol-card{
    min-height: 27rem;
}
.ncr-fourth .industry-sol-card{
    min-height: 27rem;
}
.fourth-sec .ind-second-col{
    margin-top: 3rem;
}
.raipur-fourth .industry-sol-card {
    min-height: 27rem;
}
.chennai-fourth .industry-sol-card{
    min-height: 29rem;
}


/* fifth section css start  */

.erp-modules{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px 18px;
    margin-top: 3rem;
}

.module-box{
    background:#f1f1f1;
    border-radius:10px;
    padding:15px 15px;
    display:flex;
    align-items:flex-start;
    gap:14px;
    min-height:68px;
    transition:all .3s ease;
}

.module-box:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.check-icon{
    width:24px;
    height:24px;
    min-width:24px;
    border-radius:50%;
    background:#e6000a;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    color: #fff;
}

.module-box p{
    margin:0;
    color:#1e2945;
    font-size:16px;
    font-weight:500;
    line-height:1.4;
    text-align: left;
}

@media(max-width:991px){
    .erp-modules{
        margin-top:40px;
        grid-template-columns:1fr;
    }
}

@media(max-width:767px){
    .module-box{
        padding:16px;
    }

    .module-box p{
        font-size:15px;
    }
}

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

.erp-card{
    background:#282828;
    border-radius:14px;
    padding:28px 22px;
    min-height:185px;
    transition:all .3s ease;
}

.erp-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.erp-icon{
    font-size:32px;
    margin-bottom:18px;
    line-height:1;
}

.erp-card h4{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;
}

.erp-card p{
    color:rgba(255,255,255,.70);
    font-size:16px;
    line-height:1.8;
    margin:0;
    text-align: left;
}

@media(max-width:991px){

    .erp-feature-grid{
        margin-top:40px;
    }

    .erp-card{
        min-height:auto;
    }
}

@media(max-width:767px){

    .erp-feature-grid{
        grid-template-columns:1fr;
    }

    .erp-card{
        padding:24px 20px;
    }

    .erp-card h4{
        font-size:20px;
    }
}
.fifth-sec-row{
    justify-content: space-between;
}


/* sixth section css start  */

.product-card {
    position: relative;
    background: #f1f1f1;
    border: 1px solid rgb(199 199 199 / 20%);
    border-radius: 10px;
    padding: 30px 28px;
    min-height: 18.5rem;
    transition: all 0.35s ease;
    overflow: hidden;
}
.product-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #DC2C1D;
    transition: width 0.4s ease;
}

/* Card lift effect */
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Animate line from left to right */
.product-card:hover::after {
    width: 100%;
}
.product-badge {
    display: inline-block;
    background: #e6000a;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 18px;
}
.product-card h4{
    color: #282828;
}
.product-card p{
    color: #282828;
    padding-top: 10px;
}
.product-link {
    color: #282828;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition-duration: 0.3s;
}
.product-link:hover{
    color: #e6000a;
    transition: all ease-in-out 0.3s;
}
.sixth-sec .sixth-sec-row{
    margin-top: 3rem;
}
.sixth-sec .sixth-sec-row .second-col{
    margin-top: 2rem;
}

/* sevent section css start  */

.seven-sec .seven-sec-row{
    margin-top: 3rem;
}

.testi-card{
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 28px 26px;
    border: 1px solid #e8e3dc;
    position: relative;
    min-height: 17rem;
    transition: all 0.35s ease;
    overflow: hidden;
}
.testi-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #DC2C1D;
    transition: width 0.4s ease;
}

/* Card lift effect */
.testi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Animate line from left to right */
.testi-card:hover::after {
    width: 100%;
}
.testi-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: #DC2C1D;
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 18px;
    line-height: 1;
}
.testi-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #282828;
    margin-bottom: 20px;
    font-style: italic;
    padding-top: 8px;
}
.testi-author {
    font-weight: 700;
    font-size: 14px;
    color: #DC2C1D;
    font-family: 'OpenSans-Regular';
}
.testi-company {
    font-size: 13px;
    color: #282828;
    margin-top: 2px;
    font-family: 'OpenSans-Regular';
}
.mumbai-testi .testi-card{
    min-height: 18rem;
}

/* accordion css  */


.faq-accordion .accordion-button:hover{
    color: #DC2C1D;
}
.faq-accordion .accordion-button:not(.collapsed){
    color: #DC2C1D;
    background-color: #f7f7f7;
}
.faq-accordion .accordion-button:not(.collapsed)::after{
    background-image: url(/assets/images/products/arrow-accord.svg);
}
.faq-accordion .accordion-button:focus{
    box-shadow: 0 0 0 .25rem rgb(255 255 255 / 25%);
}
.faq-sec h3{
    font-size: 22px;
    color: #E6000A;
    margin-bottom: 20px;
}
.faq-sec ul li{
    padding-bottom: 12px;
}
.faq-sec ol li{
    padding-bottom: 12px;
}
.faq-sec .second-col{
    margin-top: 2rem;
}
.faq-sec .accordion-item:last-of-type .accordion-button.collapsed{
    font-size: 15px;
    min-height: 5rem;
}
.faq-sec .faq-accordion .accordion-button:not(.collapsed){
    font-size: 15px;
    min-height: 5rem;
}
.faq-sec .faq-row{
    margin-top: 3rem;
}

/* last section css start  */

.last-sec{
    background-image: url(/assets/images/locations/last-sec-bg.webp);
    background-size: cover;
        background-repeat: no-repeat;
}
.last-sec .last-sec-head h2{
    color: #fff;
}
.last-sec .last-sec-head{
    text-align: center;
}
.last-sec .last-sec-head h5{
    display: inline-block;
    color: #fff;
}
.last-sec .last-sec-head p{
    text-align: center;
    color: #fff;
}