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

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #fff;
}

/* Navbar */
.hero-image {
  position: relative;
  width: 100%;
  height: 450px; /* or whatever height you want */
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* make sure image covers the hero area */
}

.hero-text {
  position: absolute;
  top: 50%; /* vertically center */
  left: 10%; /* space from the left */
  transform: translateY(-50%); /* vertical centering */
  color: white;
  max-width: 600px; /* text box width */
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #f4f6fb;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #ffffff;
}

.hero-text .btn {
  background: #fff;
  color: #5e2bff; /* adjust color */
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-text .tabs {
  display: flex;
  gap: 20px;
}

.hero-text .tabs span {
  color: white;
  cursor: pointer;
  padding-bottom: 5px;
}

.hero-text .tabs .active {
  border-bottom: 2px solid white;
}

/*second page*/

/* Tablets */
@media (max-width: 992px) {
  .hero-image {
    height: 400px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-text {
    left: 8%;
    max-width: 90%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-image {
    height: 300px;
  }

  .hero-text {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    max-width: 90%;
    text-align: left;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .hero-text .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero-text .tabs {
    gap: 10px;
    font-size: 0.85rem;
  }
}

.section {
  max-width: 100%;
  margin: auto;
  padding: 60px 40px;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  gap: 40px;
}

.section-text {
  flex: 1;
}

.section-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.section-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ffffff;
}

.section-text a {
  color: #4c52f7;
  text-decoration: none;
  font-weight: 600;
}

.section-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.section-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

/* Play button overlay */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #a86ef7;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.play-btn:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .sectiono {
    flex-direction: column;
    text-align: center;
  }
  .section-image img {
    max-width: 100%;
  }
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.section-titles {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1c1c1c;
}

.section-desc {
  text-align: center;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #444;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* always 2 cards per row */
  gap: 20px;
  border-radius: 10px;
}

.cards {
  background: #f4f6fb;
  border-radius: 10px;
  padding: 20px 60px;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.cards-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

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

.cards-item {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: #333;
}

.cards-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4a4aef;
  font-weight: bold;
}

/* Responsive text */
@media (max-width: 768px) {
  .section-titles {
    font-size: 1.6rem;
  }
  .section-desc {
    font-size: 0.95rem;
  }

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

/*why us */

.ai-wrapper {
  background: linear-gradient(to right, #e8f0ff, #dfeaff, #d3e3fa);
  padding: 60px 20px;
}

.ai-flex {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.ai-text {
  flex: 1;
  min-width: 300px;
}

.ai-heading {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

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

.ai-item {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.ai-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2d4ef7;
  font-weight: bold;
}

.ai-media {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.ai-media img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .ai-heading {
    font-size: 1.6rem;
  }
  .ai-item {
    font-size: 0.95rem;
  }
}

/* Footer */
footer {
  background: #111;
  color: #888;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.custom-backgrounds {
  background: linear-gradient(135deg, #660076, #006ac6, #978dda);
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Container */
.custom-overlays {
  /* background: rgba(255, 255, 255, 0.95); */
  /* border-radius: 16px; */
  padding: 50px 30px;
  max-width: 1400px;
  width: 100%;
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); */
}

/* Title & Subtitle */
.custom-titles {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: #111;
}

.custom-subtitles {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #444;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.flexy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Card Container */
.custom-containers {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 40px; /* space between cards */
  max-width: 1050px; /* optional: control container width */
  margin: auto; /* center the grid */
}

.bigii {
  font-size: 1.7rem;
}

/* Card Styling */
.custom-boxs {
  background: #e8f2f5;
  border-radius: 14px;
  padding: 30px 25px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #f0f0f0;
}

.custom-boxs:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

/* Card Heading */
.custom-boxs h2 {
  font-size: 1.7rem;
  margin-right: 10px;
  /* margin-bottom: 15px; */
  color: #111;
  font-weight: 600;
}
.moko {
  display: flex;
}

.custom-boxs h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  background: linear-gradient(304deg, #000000 112.44%);
  -webkit-background-clip: text; /* Chrome, Safari */
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Firefox */
  color: transparent;
  font-weight: 600;
}

/* Card Content */
.custom-boxs p {
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 500;
  color: #555;
  margin-bottom: 12px;
}

.custom-boxs ul {
  margin: 0;
  padding-left: 18px;
}

.custom-boxs ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #444;
  font-weight: 500;

  line-height: 1.5;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .custom-titles {
    font-size: 2rem;
  }
  .custom-subtitles {
    font-size: 1rem;
    margin-bottom: 35px;
  }
  .custom-overlays {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .custom-titles {
    font-size: 1.7rem;
  }
  .custom-boxs {
    padding: 20px;
  }
}

/* Section of last  */
.finsmarts {
}
.finsmart-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.finsmart-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.finsmart-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #555;
  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
}

/* Grid */
.finsmart-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Feature Box */
.finsmart-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}
.finsmart-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.15);
}

/* Icon */
.finsmart-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
}
/*
.blue {
  background: linear-gradient(135deg, #7fa4df, #90aff2);
}
.green {
  background: linear-gradient(135deg, #7bdbbb, #91f2d3);
}
.purple {
  background: linear-gradient(135deg, #ad95e4, #9b75d8);
}
.red {
  background: linear-gradient(135deg, #e89898, #e19b9b);
}
.yellow {
  background: linear-gradient(135deg, #eac17a, #e7bc8c);
}
.indigo {
  background: linear-gradient(135deg, #9798e0, #8680c8);
}
.pink {
  background: linear-gradient(135deg, #e676ae, #dd88ab);
} */

.finsmart-heading {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.finsmart-text {
  color: #555;
  font-size: 0.95rem;
}

/* Animation */
@keyframes fadeUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.finsmart-box:nth-child(1) {
  animation-delay: 0.1s;
}
.finsmart-box:nth-child(2) {
  animation-delay: 0.2s;
}
.finsmart-box:nth-child(3) {
  animation-delay: 0.3s;
}
.finsmart-box:nth-child(4) {
  animation-delay: 0.4s;
}
.finsmart-box:nth-child(5) {
  animation-delay: 0.5s;
}
.finsmart-box:nth-child(6) {
  animation-delay: 0.6s;
}
.finsmart-box:nth-child(7) {
  animation-delay: 0.7s;
}

@media (max-width: 500px) {
  section {
    display: flex;
    flex-direction: column;
  }

  .custom-containers {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 2 columns */
    gap: 40px; /* space between cards */
    max-width: 1050px; /* optional: control container width */
    margin: auto; /* center the grid */
  }
}

/* software start */
.softwares {
  margin: 0;
  /* font-family: Arial, sans-serif; */
  background-color: #daf2f7 ;
}

.custom-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 8%;
 background: #79cace;  
background: -webkit-linear-gradient(to left, #FFFFFF, #87d9f8, #81d4de);
background: linear-gradient(to left, #FFFFFF, #86e7fa, #8bd0d8); 

      

  border-radius: 10px;
  flex-wrap: wrap;
}

.customs-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 8%;
 background: #c6f6f2;  
background: -webkit-linear-gradient(to left, #FFFFFF, #b6fcfc, #d6fffe);  
background: linear-gradient(to left, #ffffff, #bafffd, #c2f8f4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

      

  border-radius: 10px;
  flex-wrap: wrap;
}




.custom-hero-text {
  flex: 1;
  min-width: 300px;
}

.custom-hero-text h1 {
  font-size: 2.5rem;
  color: #0d1b2a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.custom-hero-text p {
  align-items: center;
  justify-content: center;
  
  font-size: 1rem;
  color: #4b4b4b;
  margin-bottom: 30px;
  max-width: 500px;
}

.custom-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.custom-btns {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.custom-btns-primary {
  background-color: #027f89;
  color: #fff;
}

.custom-btns-primary:hover {
  background-color: #01636a;
}

.custom-btns-outline {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
}

.custom-btns-outline:hover {
  background: #f0f0f0;
}

.custom-bottom-links {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: #222;
  align-items: center;
}

.custom-bottom-links span {
  cursor: pointer;
  position: relative;
}

.custom-bottom-links span:first-child::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  bottom: -3px;
  left: 0;
}

.custom-pause-btn {
  border: 1px solid #ccc;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.custom-hero-img {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.custom-hero-img img {
  max-width: 100%;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .custom-hero {
    flex-direction: column;
    text-align: center;
  }
  .custom-hero-text {
    margin-bottom: 30px;
  }
  .custom-buttons {
    justify-content: center;
  }
  .custom-bottom-links {
    justify-content: center;
  }
}
/*software end */

/* software second part start  */
 .saitop {
  padding: 40px;
  text-align: center;
  justify-content: center;
  text-align: center;
 justify-self: center;
 justify-items: center;
}
  
.customai-wrapper {
  background-color: #eff9f9;
  max-width: 1300px;
  margin: auto;
  border: 1px solid #00c2ff;
  border-radius: 6px;
  display: flex;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 120px;
    padding-top: 40px;

}

.customai-sidebar {
 
  
  width: 490px;
  padding-right: 20px;
  border-right: 1px solid #e6e6e6;
}

.moko i{
  background: linear-gradient(
    304deg,
    #499dfd 50%,
    #2678f5 50%,
   
  ) !important;
  -webkit-background-clip: text !important; 
  -webkit-text-fill-color:  #01898e !important;
  background-clip: text !important; 
  color:  #027f89 !important;
}

.customai-sidebar-title {
  font-size: 23px;
  color: #000;
  font-weight: bold;
  margin-bottom: 20px;
}

.customai-menu-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 10px;
  background-color: transparent;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s;
  color: #000;
  text-align: left;
  width: 100%;
}

.customai-menu-item:hover,
.customai-menu-item.active {
  background-color: #e9f9ff;
  color:rgba(13, 78, 255, 0.771);
}

.customai-menu-item i {
  margin-right: 12px;
  font-size: 18px;
  width: 20px;
  text-align: center;
}


.customai-menu-items {
  /* justify-content: center; */
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 10px;
  background-color: transparent;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  transition: background-color 0.3s;
  color: #000;
  text-align: left;
  width: 100%;
}

.customai-menu-items:hover,
.customai-menu-items.active {
  background-color: #ffffff;
  color: #01484e;
}


.customai-menu-items .fas{
  justify-content: center;
  /* background: #d60707; */
  color: black !important;
  margin-right: 12px;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.customai-content {
  flex: 1;
  padding-left: 30px;
}

.customai-content-image {
  position: relative;
  height: 410px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

.customai-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.customai-content-text h2 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}

.customai-content-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.customai-learn-more {
  color: #0078d4;
  font-weight: 500;
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
}
/* ✅ Responsive Design */
@media (max-width: 768px) {
  .customai-wrapper {
    flex-direction: column;
    padding: 15px;
  }

  .customai-sidebar {
    width: 100%;
    padding: 0;
    border-right: none;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 20px;
    overflow-x: auto;
  }

  .customai-menu-item {
    display: inline-flex;
    white-space: nowrap;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    padding: 10px 12px;
  }

  .customai-content {
    padding: 0;
  }

  .customai-content-image {
    height: 200px;
  }

  .customai-content-text h2 {
    font-size: 18px;
  }

  .customai-content-text p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .customai-content-image {
    height: 160px;
  }

  .customai-menu-item {
    font-size: 13px;
    padding: 8px 10px;
  }
}

/* software second part end */

/* customer :start */
.scustomer {
  background-color: #daf2f7;
}
.customai-section {
  text-align: center;
  padding: 50px 20px;
}

.customai-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

/* Customer Logos */
.customai-logo-slider-wrapper {
  border: 2px solid #d9e8ed;

  border-radius: 20px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  background-color: #fff;
  padding: 15px 0;
  position: relative;
}

.customai-logo-slider {
  padding: 10px;
  display: flex;
  gap: 60px;
  animation: customai-scroll 20s linear infinite;
}

.customai-logo-slider img {
  height: 40px;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  filter: grayscale(0%);
  transition: filter 0.3s;
}

@keyframes customai-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Impact Metrics */
.customai-impact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.customai-impact-item {
  flex: 1 1 180px;
  min-width: 150px;
}

.customai-impact-item h3 {
  font-size: 28px;
  font-weight: bold;
  background: linear-gradient(90deg, #337dff, #06d6a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.customai-impact-item p {
  font-size: 15px;
  color: #111;
  line-height: 1.4;
}

/* Responsive */
/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .customai-logo-slider {
    max-width: 300px;
    gap: 30px;
    /* animation-duration: 40s; */
  }

  .customai-logo-slider img {
    height: 40px;
  }

  .customai-impact-grid {
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
  }

  .customai-impact-item h3 {
    font-size: 22px;
  }

  .customai-impact-item p {
    font-size: 14px;
  }

  .customai-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .customai-logo-slider {
    gap: 20px;
    animation-duration: 50s;
  }

  .customai-logo-slider img {
    height: 35px;
  }

  .customai-impact-item h3 {
    font-size: 20px;
  }

  .customai-impact-item p {
    font-size: 13px;
  }
}

/* customer end */
#customai-content {
  position: relative;
  transition: opacity 0.6s ease;
}

#customai-content.fade-out {
  opacity: 0;
}

#customai-content.fade-in {
  opacity: 1;
}

.customai-content-image video,
.customai-content-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.customai-content-image:hover video,
.customai-content-image:hover img {
  transform: scale(1.03); /* subtle zoom on hover */
}

