* {
  margin: 0;
  padding: 0;
  font-family: Arial;
}

h1 {
  font-size: 50px;
  line-height: 64px;
  color: black;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: black;
}

h4 {
  font-size: 20px;
  color: black;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

body {
  width: 100%;
  color: #fff;
}

/* Header-all-pages */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 120px;
}

/** Header Wrapper **/
.site-header {
  width: 100%;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999; /* always top */
}

/** Top bar **/
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.top-bar .right {
    display: flex;
    gap: 15px;
}

.top-btn {
    background: #009688;
    color: black;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.top-btn:hover {
    background: #e60000;
}


/** Main Navbar **/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #fff;
  position: sticky;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 60px;
}

.logo span {
  font-size: 20px;
  font-weight: bold;
  color: #00796b;
}

.menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  font-weight: 500;
  color: #00796b;
  font-size: 15px;
}

.menu a:hover {
  color: #00796b;
  border-bottom: 2px solid #00796b;
  padding-bottom: 2px;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  z-index: 999;
}

.dropdown-content a {
  display: block;
  border-radius: 10px;
  padding: 10px;
  color: #00796b;
  font-size: 14px;
}

.dropdown-content a:hover {
  background: #f5f5f5;
  color: #00796b;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: black;
}

.menu {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px; /* below navbar */
    right: 10px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .dropdown-content {
    position: absolute;
    box-shadow: none;
    border: none;
  }
}

/* newsletter-all-pages */

#newsletter {
  background-color: #088178;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

#newsletter .newsletter-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

#newsletter .newsletter-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  width: 300px;
  max-width: 90%;
  font-size: 16px;
}

.newsletter-form button {
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  background-color: #1bff9c;
  color: black;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #13c77a;
}

/* footer-all-pages */

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
}

footer .logo {
  margin-bottom: 30px;
}

footer h4 {
  font-size: 14px;
  padding-bottom: 20px;
  color: #006d65;
}

footer p {
  font-size: 13px;
  margin: 0 0 8px 0;
  color: #006d65;
}

footer a {
  font-size: 13px;
  text-decoration: none;
  color: #006d65;
  margin-bottom: 10px;
}

footer .follow {
  margin-top: 20px;
}

footer .follow i {
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}

footer .follow i:hover,
footer a:hover {
  color: #006d65;
}

footer .copyright {
  width: 100%;
  text-align: center;
}


/* S.B.Tech.html */

/** hero-section **/

#hero {
  height: 90vh;
  width: 100%;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.highlight {
  color: #dc292c;
}

.explore-btn {
  padding: 12px 24px;
  background-color: #009688;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.explore-btn:hover {
  background-color: #09675d;
}

/** franchise-partner **/

.section-title {
  text-align: left;
  margin-bottom: 40px;
}

.section-title span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #e63946;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 600;
  color: #009688;
  text-transform: uppercase;
  margin: 0;
}

#franchise {
  padding: 40px 80px;
}

#franchise .franchise-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

#franchise .fe-box {
  flex: 0 1 150px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  border: 1px solid #cce7d0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#franchise .fe-box img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

#franchise .fe-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

#franchise .fe-box:hover img {
  transform: scale(1.1);
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .section-title {
    text-align: center;
    font-size: 28px;
  }

  #franchise {
    padding: 20px;
  }

  #franchise .franchise-container {
    grid-template-columns: repeat(2, 1fr(140px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }

  #franchise .fe-box {
    padding: 15px;
    border-radius: 8px;
  }

  #franchise .fe-box img {
    max-width: 70%;
  }
}

/** Clients-section **/

#Clients .clients-container {
  display: flex;
  flex-wrap: wrap;        /* line break allow */
  justify-content: center;
  gap: 20px;
  padding: 30px 0;
}

#Clients .fe-box {
  flex: 1 1 180px;
  max-width: 200px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 15px;
  border: 1px solid #cce7d0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

#Clients .fe-box:hover {
  transform: translateY(-5px);
}

/* image wrapper */
#Clients .img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

#Clients .img-wrap img {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
}

/* name wrapper */
#Clients .name {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

#Clients .name h6 {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.3;
}

/* ✅ Responsive Breakpoints */

/* Tablet */
@media (max-width: 992px) {
  #Clients .fe-box {
    flex: 1 1 30%;
  }
}

/* Mobile landscape */
@media (max-width: 768px) {
  #Clients .fe-box {
    flex: 1 1 45%;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  #Clients .fe-box {
    flex: 1 1 100%;
  }
}

/** about-us-home-page **/

#about {
  text-align: center;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

#about .section-title h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #009688;
  margin-bottom: 20px;
}

#about .about-content p {
  max-width: 800px;
  margin: 0 auto 15px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

#about .about-features {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 30px 0;
  flex-wrap: wrap;
}

#about .about-features ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

#about .about-features li {
  font-size: 15px;
  margin-bottom: 12px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

#about .about-features i {
  color: #00a6a6;
  font-size: 16px;
}

#about .about-btn {
  margin-top: 20px;
}

#about .btn {
  display: inline-block;
  background: #00796b;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}

#about .btn:hover {
  background: #004d40;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  #about .about-features {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}

/** Core-Services **/

.services-section {
  padding: 60px 10%;
  text-align: center;
  background: #f9f9f9;
}

.services-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #009688;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.service-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-box i {
  font-size: 40px;
  color: #009688;
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #009688;
}

.service-box p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.services-section a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-section a:hover {
  color: #00695c;
}

.industries p a {
  margin: 0 5px;
  font-weight: 500;
}

.industries {
  margin-top: 50px;
}

.industries h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #009688;
}

.industries p {
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

/* AboutCompany.html */

/** page-header **/

#page-header.about-header {
  background: linear-gradient(rgba(8,129,120,0.7), rgba(8,129,120,0.7));
  height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
}

#page-header.about-header h2 {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

#page-header.about-header p {
  font-size: 15px;
  color: #f1f1f1;
}

/** about Company **/

.about-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.about-head .reverse {
  flex-direction: row-reverse;
}

.about-head .about-img img {
  max-width: 300px;
  width: 100%;
  border-radius: 8px;
}

.about-head .about-content {
  flex: 1;
  min-width: 280px;
}

.about-head .about-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #009688;
}

.about-head .about-content ul {
  padding-left: 20px;
  list-style-type: disc;
  color: black;
}

.about-head .about-content ul li {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: black;
}

/* TallyServices.html */

/** tally-service-box-logo-section **/

#page-header {
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.tally-service-box  {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -50px;
  z-index: 10;
  width: 100%;
}

.tally-service-box .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
  background: white;
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tally-service-box .card img {
  height: 60px;
  margin-bottom: 0;
}

.tally-service-box .card h1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 0;
}

.tally-service-box .card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.tally-service-box .demo-btn {
  display: inline-block;
  padding: 12px 30px;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.tally-service-box .demo-btn:hover {
  background: #333;
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width:768px) {
  .tally-service-box  .card {
    padding: 25px 20px;
    width: 95%;
  }
}

/** services-section **/

.tally-services {
  padding: 60px 30px;
  background-color: #f9f9f9;
  text-align: center;
}

.tally-services .section-title {
  font-size: 36px;
  font-weight: bold;
  color: #222;
  margin-bottom: 40px;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 30px;
  color: #009688;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #009688;
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}

.know-more-btn {
  align-self: flex-start;
  padding: 8px 18px;
  background-color: #009688;
  color: white;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.know-more-btn:hover {
  background-color: #06665e;
}

/** free consultation button **/

.cta-banner {
  background-color: #088178;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.cta-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-content h2 {
  font-size: 28px;
  margin: 0;
}

.cta-button {
  background-color: white;
  color: black;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
}

.cta-button:hover {
  background-color: #222;
  color: white;
}

/* AMC.html */

/** amc-benefits **/

.amc-benefits-modern {
  padding: 60px 20px;
  background: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

.amc-benefits-modern {
  background: linear-gradient(to right, #e0f7fa, #ffffff);
}

.amc-benefits-modern h2 {
  text-align: left;
  font-size: 32px;
  color: #111;
  margin-bottom: 40px;
}

.amc-benefit-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.amc-benefit-box:hover {
  transform: translateY(-5px);
}

.amc-benefit-box i {
  font-size: 30px;
  color: #009688;
  flex-shrink: 0;
  margin-top: 4px;
}

.amc-benefit-box h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #222;
}

.amc-benefit-box p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

/** amc-img section **/

.amc-cta-center {
  text-align: center;
  margin: 50px auto;
  padding: 20px;
}

.amc-cta-center img {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.amc-cta-center h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #222;
}

.amc-cta-center .demo-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #009688;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.amc-cta-center .demo-btn:hover {
  background-color: black;
}

/** amc-services **/

.amc-section {
  padding: 60px 20px;
  text-align: center;
}

.amc-center-content {
  max-width: 900px;
  margin: 0 auto;
}

.amc-center-content h2 {
  color: #009688;
}

.amc-services-list {
  text-align: left;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 60px;
}

.amc-services-list li {
  color: black;
  margin: 10px 0;
  font-size: 16px;
}

/** amc-plans **/

.amc-plans-heading {
  margin-bottom: 40px;
}

.amc-plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.plan-card {
  background: #f9f9f9;
  color: black;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 250px;
  text-align: left;
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
}

.plan-card h3 {
  color: #009688;
}

.plan-card ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.plan-card strong {
  color: #000;
  font-size: 18px;
  text-align: center;
}

/* SourcePro.html */

/** logo-section **/

#page-header {
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.sourcepro-service-box  {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -50px;
  z-index: 10;
  width: 100%;
  background: rgba(255,255,255,0.05);
}

.sourcepro-service-box .card {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sourcepro-service-box .card img {
  height: 90px;
  margin-bottom: 0;
}

.sourcepro-service-box .card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.sourcepro-service-box .demo-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ff7b54;
  color: black;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.sourcepro-service-box .demo-btn:hover {
  background: #74250d;
  color: white;
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width:768px) {
  .sourcepro-service-box  .card {
    padding: 25px 20px;
    width: 95%;
  }
}

/** sourcepro features **/

.erp-features {
  padding: 60px 20px;
  text-align: center;
  background: whitesmoke;
}

.erp-features h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: black;
}

.erp-features h2 span {
  color: #ff6600;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 25px;
  margin-left: 100px;
  margin-right: 100px;
}

.feature-card {
  background: #fff;
  padding: 10px auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  filter: brightness(0) saturate(100%) invert(68%) sepia(78%) saturate(639%) hue-rotate(1deg) brightness(97%) contrast(91%);
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600; 
  margin-bottom: 10px;
  color: #009688;
}

.feature-card ul {
  padding-left: 20px;
  color: #444;
}

.feature-card ul li {
  text-align: left;
  margin-bottom: 8px;
  font-size: 15px;
}

/* Responsive Style */

@media (max-width: 992px) {
  .erp-features h2 {
    font-size: 30px;
  }

  .features-container {
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media (max-width: 600px) {
  .erp-features {
    padding: 40px 15px;
  }

  .erp-features h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .features-container {
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 15px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card ul li {
    font-size: 14px;
  }
}

/** sourcepro services **/

.services-section {
  background-color: whitesmoke;
  text-align: center;
  padding: 50px 0;
}

.services-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: black;
}

.services-section h2 span {
  color: #ff6600;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 80px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  color: #0b2b56;
}

.service-item img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(68%) sepia(78%) saturate(639%) hue-rotate(1deg) brightness(97%) contrast(91%);
}

/* RESPONSIVE STYLES */

@media (max-width: 992px) {
  .services-section h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .services-container {
    gap: 30px 60px;
  }

  .service-item {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: 40px 15px;
  }

  .services-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .services-container {
    flex-direction: column;
    gap: 20px;
  }

  .service-item {
    justify-content: center;
    font-size: 15px;
  }

  .service-item img {
    width: 28px;
    height: 28px;
  }
}

/* PagarGuru.html */

/** logo-section **/

#page-header {
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.pagarguru-service-box  {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -50px;
  z-index: 10;
  width: 100%;
}

.pagarguru-service-box .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
  background: white;
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pagarguru-service-box .card img {
  height: 60px;
  margin-bottom: 0;
}

.pagarguru-service-box .card h1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 0;
}

.pagarguru-service-box .card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.pagarguru-service-box .demo-btn {
  display: inline-block;
  padding: 12px 30px;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.pagarguru-service-box .demo-btn:hover {
  background: #333;
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width:768px) {
  .pagarguru-service-box .card {
    padding: 25px 20px;
    width: 95%;
  }
}

/** attendance-types **/

.attendance-types {
  padding: 40px;
  text-align: center;
  background-color: #f3faff;
  border-radius: 20px;
}

.attendance-grid {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 30px;
  overflow-x: auto;
  padding-top: 30px;
  margin-bottom: 30px;
}

.attendance-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 250px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.attendance-card:hover {
  transform: translateY(-6px);
}

.attendance-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.attendance-card h3 {
  margin-bottom: 10px;
  color: #333;
}

.attendance-card p {
  font-size: 14px;
  color: #555;
}

.form-buttons {
  margin-top: 40px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-demo {
  background-color: #1bff9c;
  color: black;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s; 
}

.btn-demo:hover {
  background-color: #13c77a;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .attendance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .attendance-grid {
    grid-template-columns: 1fr; /* Mobile: 1 card per row */
  }

  .attendance-card {
    max-width: 100%;
  }
}

/** WhatsApp-types **/

.WhatsApp-types {
  padding: 40px;
  text-align: center;
  background-color: #f3faff;
  border-radius: 20px;
}

.WhatsApp-grid {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 30px;
  overflow-x: auto;
  padding-top: 30px;
  margin-bottom: 30px;
}

.WhatsApp-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 250px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.WhatsApp-card:hover {
  transform: translateY(-6px);
}

.WhatsApp-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.WhatsApp-card h3 {
  margin-bottom: 10px;
  color: #333;
}

.WhatsApp-card p {
  font-size: 14px;
  color: #555;
}

.form-buttons {
  margin-top: 40px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-demo {
  background-color: #1bff9c;
  color: black;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;  
}

.btn-demo:hover {
  background-color: #13c77a;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .WhatsApp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .WhatsApp-grid {
    grid-template-columns: 1fr;
  }

  .WhatsApp-card {
    max-width: 100%;
  }
}

.form-buttons {
  margin-top: 40px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-demo {
  background-color: #1bff9c;
  color: black;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;  
}

.btn-demo:hover {
  background-color: #13c77a;
}

/** Employee-types **/

.Employee-types {
  padding: 60px 40px;
  text-align: center;
  background-color: #f3faff;
  border-radius: 20px;
}

.Employee-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.Employee-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 260px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.Employee-card:hover {
  transform: translateY(-6px);
}

.Employee-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.Employee-card h3 {
  margin-bottom: 10px;
  color: #222;
  font-size: 18px;
}

.Employee-card p {
  font-size: 14px;
  color: #555;
}

.form-buttons {
  margin-top: 40px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-demo {
  background-color: #1bff9c;
  color: black;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;  
}

.btn-demo:hover {
  background-color: #13c77a;
}

/* ✅ Responsive Design */
@media (max-width: 1200px) {
  .Employee-grid {
    grid-template-columns: repeat(3, 1fr); /* Laptop: 3 cards */
  }
}

@media (max-width: 768px) {
  .Employee-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 cards */
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .Employee-grid {
    grid-template-columns: 1fr; /* Mobile: 1 card */
  }

  .Employee-card {
    max-width: 100%;
  }
}

/** biometric-device **/

.biometric-device {
  padding: 40px;
  text-align: center;
  background-color: #f3faff;
  border-radius: 20px;
}

.biometric-grid {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 30px;
  overflow-x: auto;
  padding-top: 30px;
  margin-bottom: 30px;
}

.biometric-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 250px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.biometric-card:hover {
  transform: translateY(-6px);
}

.biometric-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.biometric-card h3 {
  margin-bottom: 10px;
  color: #333;
}

.biometric-card p {
  font-size: 14px;
  color: #555;
}

.form-buttons {
  margin-top: 40px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-demo {
  background-color: #1bff9c;
  color: black;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;  
}

.btn-demo:hover {
  background-color: #13c77a;
}

/* ✅ Responsive Breakpoints */
@media (max-width: 1200px) {
  .biometric-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .biometric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .biometric-grid {
    grid-template-columns: 1fr;
  }

  .biometric-card {
    max-width: 100%;
  }
}

/** GeoSelfie-types **/

.GeoSelfie-types {
  padding: 40px;
  text-align: center;
  background-color: #f3faff;
  border-radius: 20px;
}

.GeoSelfie-grid {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 30px;
  overflow-x: auto;
  padding-top: 30px;
  margin-bottom: 30px;
}

.GeoSelfie-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 250px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.GeoSelfie-card:hover {
  transform: translateY(-6px);
}

.GeoSelfie-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.GeoSelfie-card h3 {
  margin-bottom: 10px;
  color: #333;
}

.GeoSelfie-card p {
  font-size: 14px;
  color: #555;
}

/* Buttons */
.form-buttons {
  margin-top: 40px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-demo {
  background-color: #1bff9c;
  color: black;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;  
}

.btn-demo:hover {
  background-color: #13c77a;
}

/* ✅ Responsive Breakpoints */

@media (max-width: 992px) {
  .GeoSelfie-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .GeoSelfie-card {
    max-width: 45%;
  }
}

@media (max-width: 600px) {
  .GeoSelfie-grid {
    flex-direction: column;
    align-items: center;
  }

  .GeoSelfie-card {
    max-width: 90%;
  }
}

/** compliance-section **/

.compliance-section {
  background: #e9fcf9;
  padding: 60px 20px;
  border-radius: 30px;
  margin: 60px auto;
  max-width: 1200px;
}

.compliance-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.compliance-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.compliance-text {
  max-width: 600px;
}

.compliance-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.3;
}

.compliance-text h2 span {
  color: #1e1e1e;
}

.compliance-text .subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.compliance-points {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.compliance-points li {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
}

.compliance-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #222;
  font-size: 24px;
  line-height: 1;
}

.compliance-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-primary {
  background: #1bff9c;
  color: #000;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #13c77a;
}

/** leave-management **/

.leave-section {
  background: #bcd5db;
  padding: 60px 20px;
  border-radius: 30px;
  margin: 60px auto;
  max-width: 1200px;
}

.leave-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.leave-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.leave-text {
  max-width: 600px;
}

.leave-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.3;
}

.leave-text h2 span {
  color: #1e1e1e;
}

.leave-text .subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.leave-points {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.leave-points li {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
}

.leave-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #222;
  font-size: 24px;
  line-height: 1;
}

.leave-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-primary {
  background: #1bff9c;
  color: #000;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #13c77a;
}

/** dashboard section **/

.dashboard-section {
  background: #f3faff;
  padding: 60px 20px;
  border-radius: 30px;
  max-width: 1200px;
  margin: 60px auto;
}

.dashboard-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.dashboard-text {
  flex: 1 1 45%;
  font-size: 16px;
}

.dashboard-text h2 {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
}

.dashboard-text ul {
  list-style: none;
  padding-left: 0;
}

.dashboard-text li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: #444;
  font-size: 16px;
}

.dashboard-text li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #088178;
  font-weight: bold;
}

.dashboard-image {
  flex: 1 1 45%;
  text-align: center;
}

.dashboard-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.dashboard-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #1bff9c;
  color: #000;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #13c77a;
}

/* ✅ Responsive Breakpoints */

@media (max-width: 992px) {
  .dashboard-content {
    flex-direction: column;
    text-align: center;
  }

  .dashboard-text {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .dashboard-text h2 {
    font-size: 24px;
  }

  .dashboard-text li {
    font-size: 15px;
  }

  .dashboard-image {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .dashboard-section {
    padding: 40px 15px;
    border-radius: 20px;
    margin: 40px auto;
  }

  .dashboard-text h2 {
    font-size: 22px;
  }

  .dashboard-text li {
    font-size: 14px;
  }

  .dashboard-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }
}

/* GreytHR.html */

#page-header {
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.greythr-service-box  {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -50px;
  z-index: 10;
  width: 100%;
  background: rgba(255,255,255,0.05);
}

.greythr-service-box .card {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.greythr-service-box .card img {
  height: 90px;
  margin-bottom: 0;
}

.greythr-service-box .card h1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 0;
}

.greythr-service-box .card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.greythr-service-box .demo-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #f44e03;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.greythr-service-box .demo-btn:hover {
  background: #dd7c4f;
  color: black;
  border: none;
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media screen and (max-width:768px) {
  .greythr-service-box .card {
    padding: 25px 20px;
    width: 95%;
  }
  .greythr-service-box .card p {
    text-align: center;
  }
}

/** section-heading **/

.section-heading {
  width: 100%;
  background-color: #A500E6;
  color: black;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-heading h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Segoe UI', sans-serif;
}

/** HRMS management **/

.work-section {
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.work-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
}

.work-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.work-content {
  max-width: 600px;
}

.work-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
.work-content h2 span {
  color: #A500E6;
}

.work-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #555;
}

.work-content ul {
  list-style: none;
  padding: 0;
}

.work-content li {
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.6;
  position: relative;
  padding-left: 40px;
  color: black;
}

.check-icon {
  position: absolute;
  left: 0;
  top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media screen and (max-width:768px) {
  .work-image img {
    align-items: center;
  }
  .work-content h2 {
    text-align: center;
  }
  .work-content p {
    text-align: center;
  }
}

/* HRMS-section */

.hrms-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px 10px;
  text-align: center;
  border-radius: 10px;
}

.hrms-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
  gap: 40px;
  padding: 10px;
}

.hrms-item.reverse {
  flex-direction: row-reverse;
}

.hrms-image img {
  max-width: 400px;
  width: 100%;
  margin-left: 50px;
  margin-right: 50px;
}

.hrms-content {
  flex: 1;
  text-align: left;
  margin-left: 50px;
  margin-right: 50px;
}

.hrms-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: black;
}

.hrms-content h3 span {
  color: #A500E6; /* highlight color */
}

.hrms-content ul {
  list-style: none;
  padding-left: 0;
}

.hrms-content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.hrms-content ul li i {
  color: #A500E6; /* icon color */
  margin-right: 10px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .hrms-item {
    flex-direction: column;
    text-align: center;
  }
  .hrms-item.reverse {
    flex-direction: column;
    align-items: center;
  }
  .hrms-image img {
    align-items: center;
  }
  .hrms-content h3 {
    text-align: center;
  }
}

/** Payroll-section **/

.payroll-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px 10px;
  text-align: center;
  border-radius: 10px;
}

.payroll-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
  gap: 40px;
  padding: 10px;
}

.payroll-item.reverse {
  flex-direction: row-reverse;
}

.payroll-image img {
  max-width: 400px;
  width: 100%;
  margin-left: 50px;
  margin-right: 50px;
}

.payroll-content {
  flex: 1;
  text-align: left;
  margin-left: 50px;
  margin-right: 50px;
}

.payroll-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: black;
}

.payroll-content h3 span {
  color: #A500E6; /* highlight color */
}

.payroll-content ul {
  list-style: none;
  padding-left: 0;
}

.payroll-content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.payroll-content ul li i {
  color: #A500E6; /* icon color */
  margin-right: 10px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .payroll-item {
    flex-direction: column;
    text-align: center;
  }
  .payroll-item.reverse {
    flex-direction: column;
  }
  .payroll-content h3 {
    text-align: center;
  }
}

/** leave-section **/

.leave-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px 10px;
  text-align: center;
  border-radius: 10px;
  background: #fff;
}

.leave-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
  gap: 40px;
  padding: 10px;
}

.leave-item.reverse {
  flex-direction: row-reverse;
}

.leave-image img {
  max-width: 400px;
  width: 100%;
  margin-left: 50px;
  margin-right: 50px;
}

.leave-content {
  flex: 1;
  text-align: left;
  margin-left: 50px;
  margin-right: 50px;
}

.leave-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: black;
  text-align: left;
}

.leave-content h3 span {
  color: #A500E6; /* highlight color */
}

.leave-content ul {
  list-style: none;
  padding-left: 0;
}

.leave-content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.leave-content ul li i {
  color: #A500E6; /* icon color */
  margin-right: 10px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .leave-item {
    flex-direction: column;
    text-align: center;
  }
  .leave-item.reverse {
    flex-direction: column;
  }
  .leave-content h3 {
    text-align: center;
  }
}

/* Attendance-section */

.attendance-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px 10px;
  text-align: center;
  border-radius: 10px;
}

.attendance-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
  gap: 40px;
  padding: 10px;
}

.attendance-item.reverse {
  flex-direction: row-reverse;
}

.attendance-image img {
  max-width: 400px;
  width: 100%;
  margin-left: 50px;
  margin-right: 50px;
}

.attendance-content {
  flex: 1;
  text-align: left;
  margin-left: 50px;
  margin-right: 50px;
}

.attendance-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: black;
}

.attendance-content h3 span {
  color: #A500E6;
}

.attendance-content ul {
  list-style: none;
  padding-left: 0;
}

.attendance-content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.attendance-content ul li i {
  color: #A500E6; /* icon color */
  margin-right: 10px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .attendance-item {
    flex-direction: column;
    text-align: center;
  }
  .attendance-item.reverse {
    flex-direction: column;
  }
  .attendance-content h3 {
    text-align: center;
  }
}

/** Employees-self-service **/

.ESS-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px 10px;
  text-align: center;
  border-radius: 10px;
}

.ESS-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
  gap: 40px;
  padding: 10px;
}

.ESS-item.reverse {
  flex-direction: row-reverse;
}

.ESS-image img {
  max-width: 400px;
  width: 100%;
  margin-left: 50px;
  margin-right: 50px;
}

.ESS-content {
  flex: 1;
  text-align: left;
  margin-left: 50px;
  margin-right: 50px;
}

.ESS-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: black;
}

.ESS-content h3 span {
  color: #A500E6; /* highlight color */
}

.ESS-content ul {
  list-style: none;
  padding-left: 0;
}

.ESS-content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.ESS-content ul li i {
  color: #A500E6; /* icon color */
  margin-right: 10px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .ESS-item {
    flex-direction: column;
    text-align: center;
  }
  .ESS-item.reverse {
    flex-direction: column;
  }
  .ESS-content h3 {
    text-align: center;
  }
}

/* UdyogERP.html */

/** logo-section **/

#page-header {
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.udyogerp-service-box  {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -50px;
  z-index: 10;
  width: 100%;
  background: rgba(255,255,255,0.05);
}

.udyogerp-service-box .card {
  background: radial-gradient(circle at center, #1a1a3b, #0a0a1a);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.udyogerp-service-box .card img {
  height: 60px;
  margin-bottom: 0;
}

.udyogerp-service-box .card h1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 0;
}

.udyogerp-service-box .card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.udyogerp-service-box .demo-btn {
  display: inline-block;
  padding: 12px 30px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.udyogerp-service-box .demo-btn:hover {
  background: #ff7b54;
}

html {
  scroll-behavior: smooth;
}

/* Responsive */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width:768px) {
  .udyogerp-service-box  .card {
    padding: 25px 20px;
    width: 95%;
  }
}

/** hero-info **/

.hero {
  position: relative;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
  background-color: #f9f9ff;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto 0;
}

.hero .highlight {
  color: #ff7b54;
}

.mockups {
  position: relative;
  margin: 50px auto;
  display: inline-block;
}

.mockups .laptop {
  margin-top: 20px;
  width: 1000px;
  max-width: 100%;
  align-items: center;
}

/** Udyog ERP Solutions **/

.erp-section {
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  background: #f9f9ff;
}

.erp-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #1d1d1d;
}
.erp-section h2 span {
  color: #ff7b54;
}

/* Carousel */
.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.erp-cards {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}

.erp-card {
  flex: 0 0 calc(33.333% - 20px);
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: left;
  transition: 0.3s;
}
.erp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.erp-card .icon img {
  height: 40px;
  width: 40px;
  margin-bottom: 10px;
}

.erp-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #009688;
}

.erp-card hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 15px 0;
}

.erp-card .features-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.erp-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.erp-card ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
  color: black;
}

.erp-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #009688;
  font-size: 16px;
}

.demo-btn {
  
  background: #009688;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}
.demo-btn:hover {
  background: #ff7b54;
  color: #fff;
}

/** Arrows **/
.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #ff7b54;
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}
.carousel-btn:hover {
  background: #e95e3b;
}
.prev { left: 10px; }
.next { right: 10px; }

/* Responsive */
@media (max-width: 992px) {
  .erp-card { flex: 0 0 calc(50% - 20px); }
}
@media (max-width: 768px) {
  .erp-card { flex: 0 0 100%; }
  .prev, .next { display: none; }
}

/** udyogerp benefits **/

.benefits-section {
  text-align: center;
  padding: 60px 20px;
  background: #f7f9fc;
}

.benefits-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #1d1d1d;
}

.benefits-section h2 span {
  color: #ff6b5b; /* Highlight color for 'Benefits' */
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out;
}

.benefit-card img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.benefit-card p {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* Bizanalyst.html */

#page-header {
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.biz-service-box  {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -50px;
  z-index: 10;
  width: 100%;
  background: rgba(255,255,255,0.05);
}

.biz-service-box .card {
  background: whitesmoke;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.biz-service-box .card img {
  height: 60px;
  margin-bottom: 0;
}

.biz-service-box .card h1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 0;
}

.biz-service-box .card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.biz-service-box .demo-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #f44e03;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.biz-service-box .demo-btn:hover {
  background: #dd7c4f;
  color: black;
  border: none;
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width:768px) {
  .biz-service-box.card {
    padding: 25px 20px;
    width: 95%;
  }
}

/* biz-section */

.biz-section {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
  background: #f9fafc; /* soft background */
  border-radius: 10px;
}

.biz-section h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.biz-section h2 span {
  color: #ff6600; /* highlight color */
}

.biz-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
  gap: 40px;
  padding: 20px;
}

.biz-item.reverse {
  flex-direction: row-reverse;
}

.biz-image img {
  max-width: 400px;
  width: 100%;
  margin-left: 50px;
  margin-right: 50px;
}

.biz-content {
  flex: 1;
  text-align: left;
  margin-left: 50px;
  margin-right: 50px;
}

.biz-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: black;
}

.biz-content ul {
  list-style: none;
  padding-left: 0;
}

.biz-content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.biz-content ul li i {
  color: #ff6600; /* icon color */
  margin-right: 10px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .biz-item {
    flex-direction: column;
    text-align: center;
  }
  .biz-item.reverse {
    flex-direction: column;
  }
  .biz-content h3 {
    text-align: center;
  }
}

/** cta-section **/

.cta-section {
  background: #0096ff;
  padding: 20px 10px;
}

.cta-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 600;
  color: white;
}

.cta-text p {
  font-size: 16px;
  opacity: 0.9;
  color: white;
}

.cta-button {
  background: #ff4500; /* Orange button */
  color: white;
  padding: 14px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #e03e00; /* Darker orange on hover */
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
}

/** More Reasons **/

.reasons-section {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
}

.reasons-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

.reasons-section h2 span {
  color: #0094ff;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.reason-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.reason-card img {
  color: #0094ff;
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.reason-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #009688;
}

.reason-card p {
  font-size: 15px;
  margin-bottom: 15px;
  color: #555;
}

.reason-card a {
  font-size: 14px;
  color: #009688;
  text-decoration: none;
  font-weight: 500;
}

.reason-card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .reason-card {
    flex-direction: column;
    text-align: center;
  }
}

/* TallyPrime.html */

/** logo-section **/

#page-header {
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.tally-service-box  {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -50px;
  z-index: 10;
  width: 100%;
}

.tally-service-box .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
  background: white;
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tally-service-box .card img {
  height: 60px;
  margin-bottom: 0;
}

.tally-service-box .card h1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 0;
}

.tally-service-box .card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.tally-service-box .demo-btn {
  display: inline-block;
  padding: 12px 30px;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.tally-service-box .demo-btn:hover {
  background: #333;
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width:768px) {
  .tally-service-box .card {
    padding: 25px 20px;
    width: 95%;
    text-align: center;
  }
}

/** tally-services-heading **/

.tally-service-heading {
  width: 100%;
  background: linear-gradient(135deg, #F5C518, #5bc0eb); /* Yellow to Dark Blue */
  color: white;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tally-service-heading h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Segoe UI', sans-serif;
}

/** Tss-info **/

.tss-info {
  padding: 60px 20px;
  background-color: #fffbe6;
  font-family: 'Segoe UI', sans-serif;
  color: #1f2937;
}

.tss-info .container {
  max-width: 960px;
  margin: 0 auto;
}

.tss-info h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.tss-info .underline {
  border-bottom: 2px solid #facc15;
  padding-bottom: 4px;
}

.tss-info p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
}

.tss-info .highlight {
  color: #0075c9;
  font-weight: 500;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width:768px) {
  .tss-info h2 {
    text-align: center;
  }
}

/** Key-benefits **/

.benefits-section {
  background: #fffbe6;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.benefits-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.benefits-left {
  flex: 1;
}

.benefits-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: start;
}

.benefits-right img {
  max-width: 100%;
  height: auto;
}

.benefits-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
  position: relative;
}

.benefits-heading::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background-color: #f4c542;
  margin-top: 5px;
}

.accordion .accordion-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.accordion-title {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
}

.accordion-title .icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.accordion-content {
  display: none;
  padding: 10px 0 0;
  font-size: 16px;
  color: #444;
}

.accordion-content ul {
  padding-left: 20px;
}

.accordion-content ul li {
  margin-bottom: 8px;
  list-style: disc;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width:768px) {
  .benefits-heading h2 {
    text-align: center;
  }
}

/** Active styles **/
.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .accordion-title .icon {
  content: "-";
  transform: rotate(180deg);
}

/** pricing-section **/

.pricing-section {
  background: #fffbea;
  padding: 40px;
  text-align: center;
}

.pricing-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px; 
}

.toggle-buttons {
  margin-bottom: 30px;
}

.toggle-btn {
  padding: 10px 20px;
  margin: 0 5px;
  border: 1px solid #009688;
  background: transparent;
  cursor: pointer;
  font-weight: bold;
}

.toggle-btn.active {
  background: #009688;
  color: #fff;
}

.pricing-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  width: 300px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.ribbon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #009688;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
}

.price {
  font-size: 1.8rem;
  font-weight: bold;
}

.effective, .gst {
  font-size: 0.9rem;
  color: #777;
}

.renew-btn {
  margin: auto;
  padding: 10px;
  border: 1px solid #f5a623;
  background: #009688;
  font-weight: bold;
  cursor: pointer;
}

.features {
  list-style: none;
  padding: none;
  text-align: left;
  margin-top: 30px;
  font-size: 15px;
}

.features li::before {
  content: "\2713";
  color: green;
  margin-right: 8px;
}

.note {
  font-size: 0.8rem;
  color: #888;
  margin-top: 10px;
}

/* vyapar.html */

/** logo-section **/

#page-header {
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.vyapar-service-box  {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -50px;
  z-index: 10;
  width: 100%;
  background: rgba(255,255,255,0.05);
}

.vyapar-service-box .card {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.vyapar-service-box .card img {
  height: 60px;
  margin-bottom: 0;
}

.vyapar-service-box .card h1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 0;
}

.vyapar-service-box .card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.vyapar-service-box .demo-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #E53935;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.vyapar-service-box .demo-btn:hover {
  background: #ff7b54;
  color: #000;
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width:768px) {
  .vyapar-service-box  .card {
    padding: 25px 20px;
    width: 95%;
  }
}

/** vyapar-info **/

.vyapar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.vyapar-head.reverse {
  flex-direction: row-reverse;
}

.vyapar-head .vyapar-image {
  flex: 1;
  text-align: center;
}

.vyapar-head .vyapar-image img {
  max-width: 500px;
  width: 100%;
  margin-right: 50px;
  margin-left: 50px;
}

.vyapar-head .vyapar-content {
  flex: 1;
  min-width: 300px;
  padding: 20px 30px;
}

.vyapar-head .vyapar-content h2 {
  font-size: 44px;
  margin-bottom: 20px;
  color: #314253;
}

.vyapar-head .vyapar-content p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.vyapar-head .vyapar-content h2,
.vyapar-head .vyapar-content p {
  margin-left: 50px;
  margin-right: 50px;
}

@media (max-width: 768px) {
  .vyapar-head {
    flex-direction: column;
    text-align: center;
  }

  .vyapar-head.reverse {
    flex-direction: column;
  }

  .vyapar-head .vyapar-image img {
    margin: 0 auto;
  }

  .vyapar-head .vyapar-content {
    margin-left: 0;
  }
}

/** vyapar features **/

.vyapar-features {
  background: #f5f9ff;
  padding: 60px 30px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.vyapar-features h2 {
  font-size: 28px;
  color: black;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.icon img {
  width: 60px;
  height: 60px;
  flex-wrap: wrap;
}

.feature-card h3 {
  font-size: 18px;
  color: #009688;
  margin-top: 20px;
}

.feature-card p {
  font-size: 14px;
  color: #444;
  margin-top: 20px;
}

.info-more-btn {
  align-self: flex-start;
  padding: 8px 18px;
  background-color: red;
  color: white;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 30px;
}

.info-more-btn:hover {
  background-color: #550c1e;
}

/* sangamcrm.html */

/** logo-section **/

#page-header {
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.sangamcrm-service-box  {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -50px;
  z-index: 10;
  width: 100%;
}

.sangamcrm-service-box .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
  background: white;
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sangamcrm-service-box .card img {
  height: 60px;
  margin-bottom: 0;
}

.sangamcrm-service-box .card h1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 0;
}

.sangamcrm-service-box .card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.sangamcrm-service-box .demo-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #003c80;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.sangamcrm-service-box .demo-btn:hover {
  background: #333;
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width:768px) {
  .sangamcrm-service-box  .card {
    padding: 25px 20px;
    width: 95%;
    text-align: center;
  }
}

/** sub-heading **/

.crm-heading {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 50px;
}

.crm-heading h2 {
  font-size: 28px;
  color: #003c80;
  padding: 20px 30px;
}

.crm-heading p {
  background-color: #f5f9ff;
  color: #555;
  font-size: 16px;
  line-height: 2inch;
  margin-top: -10px;
  padding: 60px 70px;
  text-align: center;
}

/** crm-section **/

.crm-section {
  background-color: #f5f9ff;
  padding: 60px 20px;
  max-width: 1300px;
  margin-inline-start: 0%;
}

.crm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.crm-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.crm-card.reverse {
  flex-direction: row-reverse;
}

.crm-image img {
  max-width: 250px;
  width: 100%;
  border-radius: 10px;
}

.crm-content h3 {
  font-size: 20px;
  color: #003c80;
  margin-bottom: 10px;
}

.crm-content p {
  color: #444;
  margin-bottom: 10px;
}

.crm-content ul {
  list-style: none;
  padding: 0;
}

.crm-content ul li::before {
  content: "✔ ";
  color: #0070c0;
  margin-right: 5px;
}

.crm-content ul li {
  margin-bottom: 5px;
}

.crm-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.crm-heading {
  text-align: center;
  margin-bottom: 50px;
}

.crm-heading h2 {
  background-color: #003c80 ;
  font-size: 28px;
  color: white;
  margin-bottom: 10px;
}

.crm-heading p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.crm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(1000px, 1fr));
  gap: 40px;
}

.crm-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.crm-card.reverse {
  flex-direction: row-reverse;
}

.crm-image img {
  max-width: 250px;
  width: 100%;
  border-radius: 10px;
}

.crm-content h3 {
  font-size: 20px;
  color: #003c80;
  margin-bottom: 10px;
}

.crm-content p {
  color: #444;
  margin-bottom: 10px;
}

.crm-content ul {
  list-style: none;
  padding: 0;
  color: black;
}

.crm-content ul li::before {
  content: "✔ ";
  color: #0070c0;
  margin-right: 5px;
}

.crm-content ul li {
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .crm-card,
  .crm-card.reverse {
  flex-direction: column;
  text-align: center;
}
.crm-image img {
  margin-bottom: 15px;
  }
}

/** why-choose-crm **/

.why-choose {
  background: #f5f9ff;
  padding: 60px 30px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.why-choose h2 {
  font-size: 28px;
  color: #003c80;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 36px;
  color: #003c80;
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 18px;
  color: #009688;
  margin-top: 20px;
}

.feature-card p {
  font-size: 14px;
  color: #444;
  margin-top: 20px;
}

.read-more-btn {
  align-self: flex-start;
  padding: 8px 18px;
  background-color: #003c80;
  color: white;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 30px;
}

.read-more-btn:hover {
  background-color: #130a4a;
}

/* contact.html */

/** contact-details **/

#contact-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#contact-details .details {
  width: 40%;
}

#contact-details .details h2 {
  font-size: 26px;
  line-height: 35px;
  padding: 20px 0;
  color: #00796b;
}

#contact-details .details h3 {
  font-size: 16px;
  padding-bottom: 15px;
  color: black;
}

#contact-details .details li {
  list-style: none;
  display: flex;
  padding: 10px 0;
}

#contact-details .details li i {
  font-size: 14px;
  padding-right: 22px;
  color: #f01d1d;
}

#contact-details .details li p {
  margin: 0;
  font-size: 14px;
}

#contact-details .map {
  width: 55%;
  height: 400px;
}

#contact-details .map iframe {
  width: 100%;
  height: 100%;
}

#contact-form {
  max-width: 600px;
  margin: 60px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#contact-form h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 25px;
  color: #088178;
}

#contact-form form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

#contact-form form .form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  font-size: 14px;
}

#contact-form form input,
#contact-form form select,
#contact-form form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
  transition: border-color 0.3s;
}

#contact-form form input:focus,
#contact-form form select:focus,
#contact-form form textarea:focus {
  border-color: #088178;
  outline: none;
}

#contact-form button {
  width: 100%;
  padding: 15px;
  background-color: #088178;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contact-form button:hover {
  background-color: #06685f;
}