.sec-padd-ai{
  padding-top: 6rem;
  padding-bottom: 6rem;
}
svg{
  color: #e6000a !important;
}
.cstm-bg{
  background-color: #fafbfc;
}

/* AI top section css start  */

.fake-input span{
    color: #282828;
}

.top-sec{
    background-image: radial-gradient(at 20% 10%, hsl(358 90% 92%) 0px, transparent 50%), radial-gradient(at 80% 0%, hsl(280 80% 94%) 0px, transparent 50%), radial-gradient(at 0% 50%, hsl(220 90% 95%) 0px, transparent 50%);
    margin-top: 5rem;
}

/* Ai Chatbot animation css start  */

.ai-window {
  max-width: 700px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: #fff;
  font-family: Arial, sans-serif;
}

/* Header */
.ai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f3f4f6;
  padding: 8px 12px;
  font-size: 13px;
}

.ai-powered svg{
  width: 12px;
  height: 12px;
  color: #e6000a !important;
  margin-right: 5px;
}

.ai-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }

.ai-title {
  color: #555;
  font-weight: 500;
}

.ai-powered {
  color: #e6000a;
  font-size: 11px;
  font-weight: bold;
}

/* Body */
.ai-body {
  padding: 20px;
}

.ai-label {
  color: #888;
  font-size: 14px;
  margin-bottom: 10px;
}

.ai-input-wrapper {
  position: relative;
}

.ai-input-wrapper input {
  width: 100%;
  padding: 14px 50px 14px 45px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
}

.ai-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.ai-send-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: #e6000a;
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
}
.ai-send-btn:hover{
  background: #fa0612;
}

.ai-suggestions {
  margin-top: 12px;
}

.ai-suggestions button {
  border: none;
  background: #f3f4f6;
  padding: 6px 12px;
  margin: 4px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
}

.ai-suggestions button:hover {
  background: #e5e7eb;
}
.fake-input {
  width: 100%;
  padding: 14px 50px 14px 45px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
  display: flex;
  align-items: center;
  min-height: 48px;
  background: #fff;
}

/* Cursor */
.cursor {
  display: inline-block;
  width: 2px;              
  height: 1.5em;          
  background: #e6000a;
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s steps(1) infinite;
}

/* realistic blink (no fade, just on/off) */
@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* AI chatbot animation css end  */

/* Card / Badge */
.erp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-size: 14px;
  color: #333;
}
.erp-badge span{
    color: #282828;
}

/* 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;
  }
}

/* Text */
.text {
  white-space: nowrap;
}

.top-sec-heading h1{
    font-size: 4.3rem;
    margin-top: 1.5rem;
    line-height: 4rem;
}
 .gradient-txt{
    background: linear-gradient(90deg, #ff3b3b, #ff4f8b, #a94dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.top-sec-heading p{
    font-size: 20px;
    color: #606876;
}
.top-butn{
  margin-bottom: 2rem;
}
.top-butn .demo{
    padding: 12px 28px 12px 28px;
    border: none;
    border-radius: 10px;
    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: 10px;
    background-color: #fff;
    transition-duration: 0.3s;
    margin-left: 15px;
    color: #000;
    font-weight: 600;
}
.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;
}


/* insight box animation css start  */

.insight-box {
  height: 22px;
  overflow: hidden;
  display: inline-block;
  
  font-family: monospace;
  font-size: 14px;
  color: #555;
}
.insight-wrapper {
  display: inline-flex;
  align-items: center; 
  gap: 8px;
}

.insight-wrapper .icon svg {
  width: 14px;
  height: 14px;
  display: block;
  color: #e6000a !important;
}

.insight-wrapper .text-slide {
  display: flex;
  flex-direction: column;
  animation: perfectLoop 8s ease-in-out infinite;
}

.insight-wrapper .text-slide span {
  height: 22px;
  line-height: 22px;
  color: #282828;
  font-size: 15px;
}


@keyframes perfectLoop {
  0%, 20%   { transform: translateY(0); }

  25%, 45%  { transform: translateY(-22px); }

  50%, 70%  { transform: translateY(-44px); }

  75%, 95%  { transform: translateY(-66px); }

  100% { transform: translateY(-88px); } /* goes into duplicate */
}


/* insight box animation css end  */

/* tagline css start  */

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

/* each item */
.tagline-item {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
  white-space: nowrap;
}

/* red bullet */
.tagline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #ff3b3b;       
  border-radius: 50%;
}

/* tagline css end */

/* AI top section css end  */


/* second section of AI page css start  */

.second-sec{
  border-bottom: 1px solid #dddddd;
}

.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;
}
.second-sec-card{
  padding: 25px;
  border: 1px solid #dddddd;
  border-radius: 10px;
}
.second-sec-card:hover{
  border-color: #e6000a;
  box-shadow: 0 4px 10px rgba(230, 0, 10, 0.08);
}
.second-sec-card:hover {
  border-color: #e6000a;
}

.second-sec-card:hover .icon-box {
  background: #e6000a;
}
.second-sec-card:hover .icon-box svg {
  color: #ffffff !important;
}
.second-sec-card,
.icon-box,
.icon-box svg {
  transition: all 0.3s ease;
}
.second-sec-card-txt h3{
  font-size: 20px;
  margin-top: 25px;
}
.second-sec-card-txt p{
  font-size: 15px;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: #fce9e9;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px;      
}

.icon-svg {
  width: 100%;
  height: 100%;
}
.icon-box svg{
  color: #e6000a !important;
}
.second-sec .row{
  margin-top: 3rem;
}


/* second section of AI page css end  */


/* third section of AI page css start  */

.agentic-card span{
  color: #e6000a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}
.agentic-card {
  display: inline-flex;   
  align-items: center;   
  gap: 6px;
  padding: 6px 15px 6px 15px;
  background-color: #f8e5e6;
  border-radius: 20px;             
}
.agentic-card svg {
  width: 16px;
  height: 16px;
  display: block;
}
.third-sec-txt{
  margin-top: 2rem;
}
.third-sec-txt p{
  font-size: 18px;
  padding-top: 20px;
  padding-bottom: 15px;
}
.third-sec-list ul{
  padding-left: 0rem;
}
.third-sec-list ul li{
  list-style-type: none;
  margin-bottom: 20px;
  font-size: 15px;
}
.third-sec-list svg{
  color: #e6000a !important;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.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%;
}

.third-sec{
  border-bottom: 1px solid #dddddd;
}

/* third section of AI page css end  */


/* macos style header css start  */

.mac-window {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Header */
.mac-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #f3f4f6;
  font-size: 13px;
}

/* Dots */
.mac-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

/* Title */
.mac-title {
  flex: 1;
  text-align: center;
  color: #6b7280;
  font-weight: 500;
}

/* Right status */
.mac-status {
  font-size: 12px;
  color: #ef4444;
  font-weight: 600;
}

/* Body */
.mac-body img {
  width: 100%;
  display: block;
}

/* macos style header css end  */

.seven-sec{
  border: none;
}

.eigth-sec-card{
  padding: 18px;
  border: 1px solid #dddddd;
  border-radius: 10px;
}
.eigth-sec-card:hover{
  border-color: #e6000a;
  box-shadow: 0 4px 10px rgba(230, 0, 10, 0.08);
}
.eigth-sec-card:hover {
  border-color: #e6000a;
}
.eigth-sec-card {
  transition: all 0.3s ease;
}
.eigth-sec-card-txt .digi-num{
  color: #e6000a;
  font-weight: bold;
  padding-right: 8px;
}
.eigth-sec-card-txt .digi-txt{
  color: #282828;
  font-size: 15px;
  font-weight: bold;
}
.eigth-sec{
  border: none;
}
.nineth-sec{
  border: none;
}
.nineth-sec-list ul{
  padding-left: 0rem;
}
.nineth-sec-list ul li{
  list-style-type: none;
  margin-top: 25px;
  font-size: 15px;
}
.nineth-sec-list svg{
  color: #e6000a !important;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.nineth-sec .difference-card1{
  padding: 30px;
  background-color: #fbfbfc;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.difference-card2 {
  position: relative;
  border: 1px solid #e6000a;
  border-radius: 20px;
  padding: 30px;
  background: #fff;
  box-shadow: 
    0 20px 40px rgba(255, 59, 59, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.06);
}

.difference-card2 .nineth-sec-list ul{
  padding-left: 0rem;
}
.difference-card2 .nineth-sec-list ul li{
  list-style-type: none;
  margin-top: 25px;
  font-size: 15px;
  font-weight: 600;
}
.difference-card2 .nineth-sec-list svg{
  color: #e6000a !important;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.difference-card2 h5{
  color: #e6000a;
}

.difference-card2 ul li svg {
  flex-shrink: 0;
}

.card-badge {
  position: absolute;
  top: 0px;
  right:0px;
  background: #e6000a;
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 600;
}
.tenth-sec .think-box{
  background-image: url(/assets/images/ai/think-bg.webp);
  background-size: cover;
  padding: 50px 60px 50px 60px;
  border-radius: 30px;
}
.tenth-sec .think-box h2{
  color: #fff;
  font-size: 45px;
}
.tenth-sec .think-box p{
  color: #fff;
  font-size: 18px;
}
.tenth-sec .think-box svg{
  color: #e6000a !important;
  width: 35px;
  height: 35px;
}
.tenth-sec .think-txt{
  margin-bottom: 3rem;
}
.tenth-sec .think-butn .demo-ft{
  padding: 15px 20px 15px 20px;
  background-color: #e6000a;
  color: #fff;
  border-radius: 10px;
  transition-duration: 0.3s;
}
.tenth-sec .think-butn .demo-ft:hover{
  background-color: #ff000b;
  transition: all ease-in-out 0.3s;
}
.tenth-sec .think-butn i{
  padding-left: 10px;
}
.tenth-sec .think-butn .contact-btn{
  padding: 15px 35px 15px 35px;
  background-color: #fff;
  color: #282828;
  border-radius: 10px;
  margin-left: 10px;
  transition-duration: 0.3s;
}
.tenth-sec .think-butn .contact-btn:hover{
  background-color: #e6000a;
  color: #fff;
  transition: all ease-in-out 0.3s;
}
