html {
  scroll-behavior: smooth;
}

/* ===================== GLOBAL RESET ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 100px;
  /* Space for fixed header */
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  background-color: #fff;
  color: #000;
  scroll-behavior: smooth;
}

/* ===================== HEADER ===================== */
header {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(35deg, #ffffff, #ffffff, #fc5d02);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 10px rgba(115, 115, 115, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

section {
  scroll-margin-top: 100px;
  /* header ki height ke barabar */
}

/* ===================== LOGO ===================== */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 70px;
  object-fit: contain;
}

/* ===================== NAV LINKS ===================== */
.nav-links {
  display: flex;
  gap: 45px;
}

.nav-links a {
  color: #000;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #000;
}

/* ===== SUBMENU ===== */
.has-submenu {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(to bottom right, #fff5e1, #ffffff);
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  min-width: 180px;
  z-index: 999;
}

.submenu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}

.submenu a:hover {
  background-color: #f97316;
  color: #fff;
  border-radius: 6px;
}

@media (min-width: 769px) {
  .has-submenu:hover .submenu {
    display: block;
  }
}

/* ===================== HERO SLIDER ===================== */
.hero {
  width: 100%;
  height: 90vh;
  position: relative;
}

.slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide-content-1 {
  position: absolute;
  top: 45%;
  right: 9%;
  transform: translateY(-50%);
  text-align: right;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.slide-content-2 {
  position: absolute;
  top: 45%;
  left: 8%;
  transform: translateY(-50%);
  text-align: left;
  color: black;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.slide-content-3 {
  position: absolute;
  top: 45%;
  right: 12%;
  transform: translateY(-50%);
  text-align: right;
  color: black;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.slide-content-1 h1 {
  font-size: 55px;
}

.slide-content-1 p {
  font-size: 24px;
}

.slide-content-2 h1 {
  font-size: 50px;
}

.slide-content-2 p {
  font-size: 22px;
}

.slide-content-3 h1 {
  font-size: 48px;
}

.slide-content-3 p {
  font-size: 20px;
}

.slide-content-1,
.slide-content-2,
.slide-content-3 {
  position: relative;
  z-index: 10;
  /* Bring content above overlays */
}

.hero-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  background: #a4151c;
  /* Dark Red */
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 20;
  /* Ensure button stays on top */
  cursor: pointer;
}

.hero-btn:hover {
  background: #7d0f14;
  transform: scale(1.05);
}

/* ===================== CONTENT SECTIONS ===================== */
.content-section {
  padding: 50px 20px;
  text-align: center;
}

.content-section.alt {
  background: #f7f7f7;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  width: 300px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  padding: 50px 20px;
  text-align: center;
  background: #f97316;
  color: white;
}

.cta-button {
  background: white;
  color: #fc5d02;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
  transition: 0.3s;
}

.cta-button:hover {
  background: #ffd700;
  color: #000;
}

/* ===================== PRODUCT SLIDER ===================== */
.product-section {
  padding: 40px 20px;
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

.product-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.product-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* Section Header Styling */

.section-header {
  text-align: center;
  padding: 50px 25px 30px;
  background: linear-gradient(135deg, #ecc9c9, #fe9292);
  background-image:
    url('https://www.toptal.com/designers/subtlepatterns/uploads/dot-grid.png'),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 240, 0.95));
  background-size: 120px 120px, cover;
  background-position: center;
  background-blend-mode: overlay;
  border-radius: 14px;
  margin: 0 auto 35px;
  max-width: 900px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(25px) scale(0.98);
  animation: fadeScaleUp 1.2s ease-out forwards;
}

.section-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #a4151c;
  letter-spacing: 0.6px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #a4151c, #d61f2f);
  border-radius: 50px;
  animation: underlineGrow 1s ease-out forwards;
  animation-delay: 0.4s;
}

.section-header p {
  font-size: 15px;
  max-width: 650px;
  margin: 0 auto;
  color: #666;
  opacity: 0.95;
  line-height: 1.6;
}

/* Animation keyframes */
@keyframes fadeScaleUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes underlineGrow {
  to {
    width: 60%;
  }
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .section-header {
    padding: 35px 15px 20px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .section-header p {
    font-size: 14px;
  }
}

/* ===================== SIDEBAR & CONTENT ===================== */
.container {
  display: flex;
}

/* Sidebar */
.sidebar {
  width: 25%;
  padding: 20px;
  background-color: #fff7f7;
  /* Light pink-beige */
  border-right: 1px solid #e4dcdc;
  position: sticky;
  top: 100px;
  height: calc(100vh - 100px);
  overflow-y: auto;
  font-family: 'Poppins', sans-serif;
}

.sidebar div {
  font-size: 16px;
  margin: 14px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px 12px;
  border-radius: 6px;
  color: #5a3e3e;
  /* Soft brown for text */
  font-weight: 500;
}

.sidebar div:hover {
  background: #a4151c;
  /* Dark red from logo */
  color: #ffffff;
  transform: translateX(3px);
}

.sidebar div.active {
  font-weight: 600;
  color: #ffffff;
  background: #a4151c;
  border-left: 4px solid #d4a017;
  /* Gold accent */
}

/* Content */
.content {
  flex: 1;
  padding: 20px;
  background: #fdfdfd;
  /* Very light background */
}

.section {
  min-height: 100vh;
  padding: 20px;
  border-bottom: 1px solid #ddd;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #000000;
  font-weight: bold;
}

.section p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  font-family: 'Poppins', sans-serif;
}

/* ====== Footer ====== */
.site-footer {
  background: radial-gradient(1200px 600px at 70% -200px, rgba(252, 93, 2, 0.08), transparent 60%),
    #101216;
  color: #d6d8de;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}


.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 10px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 28px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 14px;
  letter-spacing: .3px;
}

.footer-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  background: #fff;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-name {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}

.brand-tagline {
  margin: 10px 0 14px;
  color: #b9bcc6;
  line-height: 1.6;
  font-size: .95rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #cfd2da;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
  color: #ffd28f;
  transform: translateX(4px);
}

.contact-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.contact-list a {
  color: #d6d8de;
  text-decoration: none;
}

.contact-list a:hover {
  color: #ffd28f;
}

.ci {
  margin-right: 6px;
  filter: grayscale(20%);
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.newsletter input {
  flex: 1;
  background: #161a21;
  border: 1px solid #242934;
  color: #e6e8ee;
  border-radius: 10px;
  padding: 10px 12px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

.newsletter input:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(252, 93, 2, .18);
}

.newsletter button {
  background: linear-gradient(90deg, #fc5d02, #ff7a2b);
  border: none;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease;
}

.newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(252, 93, 2, .35);
}

/* Socials */
.social-row {
  display: flex;
  gap: 10px;
}

.social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #161a21;
  border: 1px solid #242934;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.social svg {
  width: 18px;
  fill: #e6e8ee;
}

.social:hover {
  transform: translateY(-3px);
  background: #1b2130;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .35),
    0 0 0 2px rgba(252, 93, 2, .25) inset;
}

/* Bottom strip */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin-top: 20px;
  padding: 14px 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  color: #aeb3bf;
  font-size: .92rem;
}

.bottom-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.bottom-links a {
  color: #cfd2da;
  text-decoration: none;
}

.bottom-links a:hover {
  color: #ffd28f;
}

/* Responsive */
@media (max-width: 980px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {

  /* Hamburger Menu */
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px 20px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease, color 0.3s ease;
  }

  .nav-links a:hover {
    background: #a4151c;
    color: #fff;
  }

  /* Container Layout Mobile */
  .container {
    flex-direction: column;
  }

  /* Sidebar Horizontal Scroll on Mobile */
  .sidebar {
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px;
    gap: 12px;
    background: #fafafa;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
  }

  .sidebar::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
  }

  .sidebar div {
    flex: 0 0 auto;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    background: #f3f3f3;
    color: #444;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: nowrap;
  }

  .sidebar div:hover {
    background: #e2e2e2;
  }

  .sidebar div.active {
    background: #a4151c;
    color: white;
    font-weight: bold;
    border-radius: 20px;
    padding: 10px 18px;
  }
}


/* =====Slider Inside content======*/
/* ===== Busy Accounting Software Section ===== */
/* Container styling */
.busy-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 50px 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  margin-top: 100px;
}

/* ================== LEFT CONTENT ================== */
.busy-left {
  flex: 1;
}

.busy-left h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #1a1a1a;
}

.busy-tagline {
  font-size: 1.1rem;
  color: #b71c1c;
  margin-bottom: 18px;
  font-weight: 500;
}

.busy-desc {
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ================== FEATURES LIST ================== */
.busy-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.busy-features li {
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.busy-features li strong {
  margin-left: 6px;
}

/* ================== CTA BUTTON ================== */
.btn-cta {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(90deg, #d32f2f, #b71c1c);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(183, 28, 28, 0.3);
}

.contact-small {
  display: block;
  font-size: 0.9rem;
  margin-top: 8px;
  color: #777;
}

/* ================== RIGHT SECTION ================== */
.busy-right {
  flex: 1;
  text-align: center;
}

.busy-right img {
  width: 90%;
  max-width: 380px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.busy-right img:hover {
  transform: scale(1.02);
}

/* ================== ICONS ROW ================== */
.busy-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.busy-icons span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #f4f4f4, #fafafa);
  border-radius: 8px;
  font-size: 0.95rem;
  color: #444;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.busy-icons span:hover {
  background: linear-gradient(135deg, #fff5f5, #ffeaea);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(183, 28, 28, 0.1);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
  .busy-section {
    flex-direction: column-reverse;
    /* image upar, text niche */
    text-align: center;
    padding: 30px 20px;
  }

  .busy-left h3 {
    font-size: 1.6rem;
  }

  .busy-desc {
    font-size: 0.95rem;
  }

  .busy-right img {
    max-width: 300px;
    margin-bottom: 20px;
  }

  .btn-cta {
    margin: 2px;
  }

  .contact-small {
    text-align: center;
  }

  .busy-icons {
    justify-content: center;
  }
}


/*======Tally Section=======*/
.tally-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 50px 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  margin-top: 100px;
}

.tally-left {
  flex: 1;
}

.tally-left h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #004c97;
}

.tally-tagline {
  font-size: 1.1rem;
  color: #ffb300;
  margin-bottom: 18px;
  font-weight: 500;
}

.tally-desc {
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.tally-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.tally-features li {
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.tally-features li strong {
  margin-left: 6px;
}

.btn-cta-tally {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(90deg, #004c97, #002f5f);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-tally:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 76, 151, 0.3);
}

.contact-small {
  display: block;
  font-size: 0.9rem;
  margin-top: 8px;
  color: #777;
}

.tally-right {
  flex: 1;
  text-align: center;
}

.tally-right img {
  width: 90%;
  max-width: 380px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.tally-right img:hover {
  transform: scale(1.02);
}

.tally-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.tally-icons span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #f4faff, #eaf3ff);
  border-radius: 8px;
  font-size: 0.95rem;
  color: #004c97;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.tally-icons span:hover {
  background: linear-gradient(135deg, #fff9e6, #ffefd0);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 76, 151, 0.1);
}

/* ====== Responsive Design ====== */
@media (max-width: 992px) {
  .tally-section {
    gap: 25px;
    padding: 40px 20px;
  }

  .tally-left h3 {
    font-size: 1.6rem;
  }

  .tally-tagline {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .tally-section {
    flex-direction: column;
    text-align: center;
  }

  .tally-left {
    order: 1;
  }

  .tally-right {
    order: 2;
  }

  .tally-left h3 {
    font-size: 1.5rem;
  }

  .tally-desc {
    font-size: 0.95rem;
  }

  .btn-cta-tally {
    padding: 9px 18px;
    font-size: 0.9rem;
    margin: 2px;
    ;
  }

  .tally-right img {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .tally-left h3 {
    font-size: 1.3rem;
  }

  .tally-tagline {
    font-size: 0.9rem;
  }

  .tally-desc {
    font-size: 0.9rem;
  }

  .btn-cta-tally {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
  }

  .tally-icons {
    flex-direction: column;
    gap: 8px;
  }
}


/*========Marg ERP ==== */

/* ===== Marg ERP Section (modern, responsive) ===== */
:root {
  --marg-dark: #0f4d2f;
  /* deep green */
  --marg-accent: #f57c00;
  /* warm orange */
  --card-bg: #ffffff;
  --muted: #6b7280;
  --radius: 14px;
}

/* Container */
.marg-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 44px 30px;
  background: linear-gradient(180deg, rgba(15, 77, 47, 0.03), rgba(245, 124, 0, 0.01));
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(7, 18, 15, 0.06);
  margin-top: 100px;
}


/* Left column */
.marg-left {
  flex: 1;
  min-width: 260px;

}

.marg-left h3 {
  font-size: 1.9rem;
  color: var(--marg-dark);
  margin: 0 0 8px 0;
  font-weight: 700;
}

.marg-tagline {
  display: block;
  font-size: 1.05rem;
  color: var(--marg-accent);
  margin-bottom: 14px;
  font-weight: 600;
}

.marg-desc {
  color: #333;
  line-height: 1.6;
  margin-bottom: 18px;
  font-size: 0.98rem;
}

/* Features list */
.marg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 10px 18px;
}

.marg-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.96rem;
  color: #213129;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 250, 250, 0.9));
  padding: 8px 10px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(7, 18, 15, 0.03);
}

/* CTA */
.btn-cta-marg {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, var(--marg-accent), #ef6c00);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}

.btn-cta-marg:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245, 124, 0, 0.18);
}

.contact-small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Right column (image + icons) */
.marg-right {
  flex: 1;
  text-align: center;
  min-width: 240px;
}

.marg-right img {
  width: 88%;
  max-width: 380px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(7, 18, 15, 0.06);
  transition: transform .28s ease, filter .28s ease;
  background: #fff;
  object-fit: cover;
}

.marg-right img:hover {
  transform: translateY(-6px) scale(1.01);
  filter: saturate(1.03);
}

.marg-icons {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.marg-icons span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(180deg, #f9fff8, #f2fff3);
  color: var(--marg-dark);
  border-radius: 10px;
  font-size: 0.95rem;
  box-shadow: 0 3px 8px rgba(7, 18, 15, 0.03);
  transition: transform .18s ease, box-shadow .18s ease;
}

.marg-icons span:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(15, 77, 47, 0.10);
}

/* Mobile / small screens */
@media (max-width: 820px) {
  .marg-section {
    flex-direction: column;
    text-align: center;
    padding: 28px 18px;
    gap: 18px;
  }

  .marg-features {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .marg-right img {
    width: 100%;
    max-width: 360px;
  }

  .btn-cta-marg {
    margin: 2px;
  }
}

/* Tiny screens */
@media (max-width: 420px) {
  .marg-left h3 {
    font-size: 1.4rem;
  }

  .marg-tagline {
    font-size: 1rem;
  }

  .marg-desc {
    font-size: 0.95rem;
  }

  .marg-features li {
    font-size: 0.92rem;
    padding: 7px 8px;
  }
}

/* ===== Vyapar Section (Service Card Style) ===== */
.vyapar-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 20px;
  background: #f4feec;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 100px;
}

.vyapar-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Left Side */
.vyapar-left {
  flex: 1;
}

.vyapar-left h3 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.vyapar-tagline {
  font-size: 18px;
  font-weight: 600;
  color: #16a085;
  margin-bottom: 16px;
}

.vyapar-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.vyapar-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.vyapar-features li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #333;
}

/* Buttons */
.btn-cta-vyapar {
  display: inline-block;
  background: #16a085;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  margin-right: 10px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-cta-vyapar:hover {
  background: #138d75;
}

.contact-small {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #777;
}

/* Right Side */
.vyapar-right {
  flex: 1;
  text-align: center;
}

.vyapar-right img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Icons */
.vyapar-icons {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
}

.vyapar-icons span {
  background: #ecf0f1;
  padding: 6px 10px;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .vyapar-section {
    flex-direction: column;
    text-align: center;
  }

  .vyapar-left {
    order: 2;
  }

  .vyapar-right {
    order: 1;
  }

  .btn-cta-vyapar {
    margin: 2px;
  }
}


/* ================= CLOUD SOLUTIONS ================= */
.service-card.cloud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, #e6f4ff, #cde8ff);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 100px;
}

.service-card.cloud:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card.cloud .service-left {
  flex: 1;
}

.service-card.cloud h3 {
  font-size: 26px;
  color: #0077cc;
  /* Cloud blue */
  margin-bottom: 10px;
}

.service-card.cloud .tagline {
  font-size: 18px;
  font-weight: 500;
  color: #3399ff;
  margin-bottom: 15px;
}

.service-card.cloud .desc {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.service-card.cloud .cloud-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-card.cloud .cloud-features li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card.cloud .btn-service {
  display: inline-block;
  padding: 10px 20px;
  background: #3399ff;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-right: 10px;
}

.service-card.cloud .btn-service:hover {
  background: #0077cc;
}

.service-card.cloud .btn-service.secondary {
  background: #fff;
  color: #0077cc;
  border: 1px solid #0077cc;
}

.service-card.cloud .btn-service.secondary:hover {
  background: #0077cc;
  color: #fff;
}

.service-card.cloud .contact-small {
  display: block;
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

.service-card.cloud .service-right {
  flex: 1;
  text-align: center;
}

.service-card.cloud .service-right img {
  max-width: 90%;
}

.service-card.cloud .cloud-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.service-card.cloud .cloud-icons span {
  background: #f0f8ff;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: #0077cc;
  border: 1px solid #cce6ff;
}

/* WhatsApp API Integration Section */
.service-card.whatsapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, #e7fff3, #caffea);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card.whatsapp .service-left {
  flex: 1;
}

.service-card.whatsapp h3 {
  font-size: 26px;
  color: #128c7e;
  /* WhatsApp green */
  margin-bottom: 10px;
}

.service-card.whatsapp .tagline {
  font-size: 18px;
  font-weight: 500;
  color: #25d366;
  /* lighter WhatsApp green */
  margin-bottom: 15px;
}

.service-card.whatsapp .desc {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.service-card.whatsapp .service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-card.whatsapp .service-features li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card.whatsapp .btn-service {
  display: inline-block;
  padding: 10px 20px;
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.service-card.whatsapp .btn-service:hover {
  background: #128c7e;
}

.service-card.whatsapp .service-right {
  flex: 1;
  text-align: center;
}

.service-card.whatsapp .service-right img {
  max-width: 90%;
}


/* Customization & Validation Section */
.service-card.customization {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, #fff8f0, #ffe8d6);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.customization:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card.customization .service-left {
  flex: 1;
}

.service-card.customization h3 {
  font-size: 26px;
  color: #b84c00;
  margin-bottom: 10px;
}

.service-card.customization .tagline {
  font-size: 18px;
  font-weight: 500;
  color: #e65100;
  margin-bottom: 15px;
}

.service-card.customization .desc {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.service-card.customization .customization-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-card.customization .customization-features li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card.customization .btn-service {
  display: inline-block;
  padding: 10px 20px;
  background: #e65100;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.service-card.customization .btn-service:hover {
  background: #b84c00;
}

.service-card.customization .service-right {
  flex: 1;
  text-align: center;
}

.service-card.customization .service-right img {
  max-width: 90%;
}

/* Busy support Section Styling */
.service-card.erp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, #f8faff, #e9f2ff);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.erp:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card.erp .service-left {
  flex: 1;
}

.service-card.erp h3 {
  font-size: 26px;
  color: #004aad;
  margin-bottom: 10px;
}

.service-card.erp .tagline {
  font-size: 18px;
  font-weight: 500;
  color: #0066cc;
  margin-bottom: 15px;
}

.service-card.erp .desc {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.service-card.erp .service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-card.erp .service-features li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card.erp .btn-service {
  display: inline-block;
  padding: 10px 20px;
  background: #004aad;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.service-card.erp .btn-service:hover {
  background: #003580;
}

.service-card.erp .service-right {
  flex: 1;
  text-align: center;
}

.service-card.erp .service-right img {
  max-width: 90%;
}

/* Barocode & Invoice Designing Section */
.service-card.graphics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, #fff8f5, #ffeae1);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.graphics:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card.graphics .service-left {
  flex: 1;
}

.service-card.graphics h3 {
  font-size: 26px;
  color: #e85c00;
  margin-bottom: 10px;
}

.service-card.graphics .tagline {
  font-size: 18px;
  font-weight: 500;
  color: #ff6600;
  margin-bottom: 15px;
}

.service-card.graphics .desc {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.service-card.graphics .service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-card.graphics .service-features li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card.graphics .btn-service {
  display: inline-block;
  padding: 10px 20px;
  background: #ff6600;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.service-card.graphics .btn-service:hover {
  background: #cc5200;
}

.service-card.graphics .service-right {
  flex: 1;
  text-align: center;
}

.service-card.graphics .service-right img {
  max-width: 90%;
}

/* Web Development Section */
.service-card.webdev {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, #f0f8ff, #e6f0ff);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.webdev:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card.webdev .service-left {
  flex: 1;
}

.service-card.webdev h3 {
  font-size: 26px;
  color: #004aad;
  margin-bottom: 10px;
}

.service-card.webdev .tagline {
  font-size: 18px;
  font-weight: 500;
  color: #0073e6;
  margin-bottom: 15px;
}

.service-card.webdev .desc {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.service-card.webdev .service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-card.webdev .service-features li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card.webdev .btn-service {
  display: inline-block;
  padding: 10px 20px;
  background: #0073e6;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.service-card.webdev .btn-service:hover {
  background: #005bb5;
}

.service-card.webdev .service-right {
  flex: 1;
  text-align: center;
}

.service-card.webdev .service-right img {
  max-width: 90%;
}


/* ===== About Section Web Style ===== */
.about-section-web {
  width: 100%;
  padding: 80px 20px;
  background: #f9fafa;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.about-intro {
  font-size: 18px;
  color: #16a085;
  margin-bottom: 20px;
  font-weight: 500;
}

.about-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.about-stats div {
  text-align: center;
}

.about-stats strong {
  display: block;
  font-size: 28px;
  color: #16a085;
  font-weight: bold;
}

.about-stats span {
  font-size: 14px;
  color: #555;
}

.button {
  display: inline-block;
  background: #f97316;   /* Gold background */
  color: #fff;           /* White text */
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.button:hover {
  background: #cc5200;  
}

.about-image {
  flex: 1;
  text-align: right;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }
}

/* ========= Achievements Section ========= */
.achievements {
  width: 100%;
  padding: 60px 20px;
  background: #ffffff;
}

.achievements .achv-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.achievements .achv-header {
  text-align: center;
  margin-bottom: 30px;
}

.achievements .achv-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #f97316;
  background: #fff3e8;
  border: 1px solid #ffd8bb;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.achievements .achv-title {
  font-size: 28px;
  line-height: 1.3;
  color: #111827;
  margin: 0;
}

.achievements .achv-sub {
  color: #6b7280;
  font-size: 15px;
  margin-top: 8px;
}

/* Grid Layout */
.achievement-grid {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.achievement-card {
  flex: 1 1 calc(25% - 16px);
  max-width: 260px;
  background: #fff;
  border-radius: 14px;
  padding: 24px 18px;
  border: 1px solid #eef0f3;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.08);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.12);
}

/* Icon */
.achievement-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff7ed, #ffe8d6);
  border: 1px solid #ffd8bb;
  font-size: 20px;
}

/* Numbers */
.achievement-value {
  font-weight: 800;
  font-size: 30px;
  color: #111827;
  line-height: 1;
  margin-top: 5px;
}

.counter-suffix,
.counter-prefix {
  font-weight: 700;
  font-size: 0.7em;
  color: #f97316;
}

.achievement-label {
  margin-top: 6px;
  color: #4b5563;
  font-size: 14px;
}

/* Mobile responsive */
@media (max-width: 992px) {
  .achievement-card {
    flex: 1 1 calc(45% - 16px);
  }
}

@media (max-width: 600px) {
  .achievement-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .achievements .achv-title {
    font-size: 22px;
  }
}


/*--------- industries we served------------*/

.industries-section {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.industries-section h2 {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.industries-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.industry-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px 10px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-card span {
  font-size: 32px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.industry-card:hover {
  background: #e8f6f3;
  color: #16a085;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.industry-card:hover span {
  transform: scale(1.2);
}



/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px 0;
    gap: 12px;
  }

  .sidebar div {
    flex: 0 0 auto;
    padding: 10px 16px;
    font-size: 14px;
    border-left: none;
    border-radius: 20px;
    background: #f3f3f3;
  }

  .sidebar div.active {
    background: #a4151c;
    color: white;
    font-weight: bold;
    border-radius: 20px;
    padding: 10px 16px;
  }
}

/* =====Slider Inside content======*/
/* ===== Busy Accounting Software Section ===== */
/* Container styling */
.busy-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 50px 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* Left content */
.busy-left {
  flex: 1;
}

.busy-left h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #1a1a1a;
}

.busy-tagline {
  font-size: 1.1rem;
  color: #b71c1c;
  margin-bottom: 18px;
  font-weight: 500;
}

.busy-desc {
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Features list */
.busy-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.busy-features li {
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.busy-features li strong {
  margin-left: 6px;
}

/* CTA button */
.btn-cta {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(90deg, #d32f2f, #b71c1c);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(183, 28, 28, 0.3);
}

.contact-small {
  display: block;
  font-size: 0.9rem;
  margin-top: 8px;
  color: #777;
}

/* Right section */
.busy-right {
  flex: 1;
  text-align: center;
}

.busy-right img {
  width: 90%;
  max-width: 380px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.busy-right img:hover {
  transform: scale(1.02);
}

/* Icons row */
.busy-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.busy-icons span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #f4f4f4, #fafafa);
  border-radius: 8px;
  font-size: 0.95rem;
  color: #444;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.busy-icons span:hover {
  background: linear-gradient(135deg, #fff5f5, #ffeaea);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(183, 28, 28, 0.1);
}

/*======Tally Section=======*/
.tally-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 50px 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
  /* ensures wrapping */
}

.tally-left {
  flex: 1;
}

.tally-left h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #004c97;
}

.tally-tagline {
  font-size: 1.1rem;
  color: #ffb300;
  margin-bottom: 18px;
  font-weight: 500;
}

.tally-desc {
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.tally-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.tally-features li {
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.tally-features li strong {
  margin-left: 6px;
}

.btn-cta-tally {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(90deg, #004c97, #002f5f);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-tally:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 76, 151, 0.3);
}

.contact-small {
  display: block;
  font-size: 0.9rem;
  margin-top: 8px;
  color: #777;
}

.tally-right {
  flex: 1;
  text-align: center;
}

.tally-right img {
  width: 90%;
  max-width: 380px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.tally-right img:hover {
  transform: scale(1.02);
}

.tally-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.tally-icons span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #f4faff, #eaf3ff);
  border-radius: 8px;
  font-size: 0.95rem;
  color: #004c97;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.tally-icons span:hover {
  background: linear-gradient(135deg, #fff9e6, #ffefd0);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 76, 151, 0.1);
}

/* ===== Responsive Fix ===== */
@media (max-width: 768px) {
  .tally-section {
    flex-direction: column;
    /* stack layout */
    text-align: center;
    padding: 30px 20px;
  }

  .tally-left {
    order: 2;
    /* text below image */
  }

  .tally-right {
    order: 1;
    /* image above */
  }

  .tally-left h3 {
    font-size: 1.6rem;
  }

  .tally-tagline {
    font-size: 1rem;
  }

  .tally-desc {
    font-size: 0.95rem;
  }

  .btn-cta-tally {
    padding: 9px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .tally-left h3 {
    font-size: 1.4rem;
  }

  .tally-tagline {
    font-size: 0.9rem;
  }

  .tally-icons {
    gap: 8px;
  }

  .tally-icons span {
    font-size: 0.85rem;
    padding: 5px 10px;
  }
}


/*========Marg ERP ==== */

/* ===== Marg ERP Section (modern, responsive) ===== */
:root {
  --marg-dark: #0f4d2f;
  /* deep green */
  --marg-accent: #f57c00;
  /* warm orange */
  --card-bg: #ffffff;
  --muted: #6b7280;
  --radius: 14px;
}

/* Container */
.marg-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 44px 30px;
  background: linear-gradient(180deg, rgba(15, 77, 47, 0.03), rgba(245, 124, 0, 0.01));
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(7, 18, 15, 0.06);
}

/* Left column */
.marg-left {
  flex: 1;
  min-width: 260px;
}

.marg-left h3 {
  font-size: 1.9rem;
  color: var(--marg-dark);
  margin: 0 0 8px 0;
  font-weight: 700;
}

.marg-tagline {
  display: block;
  font-size: 1.05rem;
  color: var(--marg-accent);
  margin-bottom: 14px;
  font-weight: 600;
}

.marg-desc {
  color: #333;
  line-height: 1.6;
  margin-bottom: 18px;
  font-size: 0.98rem;
}

/* Features list */
.marg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 10px 18px;
}

.marg-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.96rem;
  color: #213129;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 250, 250, 0.9));
  padding: 8px 10px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(7, 18, 15, 0.03);
}

/* CTA */
.btn-cta-marg {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, var(--marg-accent), #ef6c00);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}

.btn-cta-marg:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245, 124, 0, 0.18);
}

.contact-small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Right column (image + icons) */
.marg-right {
  flex: 1;
  text-align: center;
  min-width: 240px;
}

.marg-right img {
  width: 88%;
  max-width: 380px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(7, 18, 15, 0.06);
  transition: transform .28s ease, filter .28s ease;
  background: #fff;
  object-fit: cover;
}

.marg-right img:hover {
  transform: translateY(-6px) scale(1.01);
  filter: saturate(1.03);
}

.marg-icons {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.marg-icons span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(180deg, #f9fff8, #f2fff3);
  color: var(--marg-dark);
  border-radius: 10px;
  font-size: 0.95rem;
  box-shadow: 0 3px 8px rgba(7, 18, 15, 0.03);
  transition: transform .18s ease, box-shadow .18s ease;
}

.marg-icons span:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(15, 77, 47, 0.10);
}

/* Mobile / small screens */
@media (max-width: 820px) {
  .marg-section {
    flex-direction: column;
    text-align: center;
    padding: 28px 18px;
    gap: 24px;
  }

  /* order: image first, then text */
  .marg-right {
    order: 1;
  }

  .marg-left {
    order: 2;
  }

  .marg-features {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 12px;
  }

  .marg-right img {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .btn-cta-marg {
    display: inline-block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* Tiny screens */
@media (max-width: 420px) {
  .marg-left h3 {
    font-size: 1.35rem;
  }

  .marg-tagline {
    font-size: 0.95rem;
  }

  .marg-desc {
    font-size: 0.9rem;
  }

  .marg-features li {
    font-size: 0.9rem;
    padding: 7px 8px;
  }

  .marg-icons {
    gap: 8px;
  }

  .marg-icons span {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
}


/* ===== Vyapar Section (Service Card Style) ===== */
.vyapar-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 20px;
  background: #f4feec;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.vyapar-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Left Side */
.vyapar-left {
  flex: 1;
}

.vyapar-left h3 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.vyapar-tagline {
  font-size: 18px;
  font-weight: 600;
  color: #16a085;
  margin-bottom: 16px;
}

.vyapar-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.vyapar-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.vyapar-features li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #333;
}

/* Buttons */
.btn-cta-vyapar {
  display: inline-block;
  background: #16a085;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  margin-right: 10px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-cta-vyapar:hover {
  background: #138d75;
}

.contact-small {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #777;
}

/* Right Side */
.vyapar-right {
  flex: 1;
  text-align: center;
}

.vyapar-right img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Icons */
.vyapar-icons {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
}

.vyapar-icons span {
  background: #ecf0f1;
  padding: 6px 10px;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .vyapar-section {
    flex-direction: column;
    text-align: center;
  }

  .vyapar-left {
    order: 2;
  }

  .vyapar-right {
    order: 1;
  }
}


/* ================= CLOUD SOLUTIONS ================= */
.service-card.cloud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, #e6f4ff, #cde8ff);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.cloud:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card.cloud .service-left {
  flex: 1;
}

.service-card.cloud h3 {
  font-size: 26px;
  color: #0077cc;
  /* Cloud blue */
  margin-bottom: 10px;
}

.service-card.cloud .tagline {
  font-size: 18px;
  font-weight: 500;
  color: #3399ff;
  margin-bottom: 15px;
}

.service-card.cloud .desc {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.service-card.cloud .cloud-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-card.cloud .cloud-features li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card.cloud .btn-service {
  display: inline-block;
  padding: 10px 20px;
  background: #3399ff;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-right: 10px;
}

.service-card.cloud .btn-service:hover {
  background: #0077cc;
}

.service-card.cloud .btn-service.secondary {
  background: #fff;
  color: #0077cc;
  border: 1px solid #0077cc;
}

.service-card.cloud .btn-service.secondary:hover {
  background: #0077cc;
  color: #fff;
}

.service-card.cloud .contact-small {
  display: block;
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

.service-card.cloud .service-right {
  flex: 1;
  text-align: center;
}

.service-card.cloud .service-right img {
  max-width: 90%;
}

.service-card.cloud .cloud-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.service-card.cloud .cloud-icons span {
  background: #f0f8ff;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: #0077cc;
  border: 1px solid #cce6ff;
}

/* Responsive */
@media (max-width: 900px) {
  .service-card.cloud {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  /* Image pehle dikhana hai */
  .service-card.cloud .service-right {
    order: 1;
    margin-bottom: 20px;
  }

  /* Text baad me dikhana hai */
  .service-card.cloud .service-left {
    order: 2;
  }

  .service-card.cloud h3 {
    font-size: 22px;
  }

  .service-card.cloud .tagline {
    font-size: 16px;
  }

  .service-card.cloud .desc {
    font-size: 14px;
  }

  .service-card.cloud .btn-service {
    padding: 8px 16px;
    font-size: 14px;
    margin: 5px 5px;
  }

  .service-card.cloud .cloud-icons span {
    font-size: 12px;
    padding: 4px 8px;
  }
}



/* WhatsApp API Integration Section */
.service-card.whatsapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, #e7fff3, #caffea);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card.whatsapp .service-left {
  flex: 1;
}

.service-card.whatsapp h3 {
  font-size: 26px;
  color: #128c7e;
  /* WhatsApp green */
  margin-bottom: 10px;
}

.service-card.whatsapp .tagline {
  font-size: 18px;
  font-weight: 500;
  color: #25d366;
  /* lighter WhatsApp green */
  margin-bottom: 15px;
}

.service-card.whatsapp .desc {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.service-card.whatsapp .service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-card.whatsapp .service-features li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card.whatsapp .btn-service {
  display: inline-block;
  padding: 10px 20px;
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.service-card.whatsapp .btn-service:hover {
  background: #128c7e;
}

.service-card.whatsapp .service-right {
  flex: 1;
  text-align: center;
}

.service-card.whatsapp .service-right img {
  max-width: 90%;
}

/* Responsive */
@media (max-width: 900px) {
  .service-card.whatsapp {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    gap: 20px;
  }

  /* Image pehle dikhani ho */
  .service-card.whatsapp .service-right {
    order: 1;
    margin-bottom: 20px;
  }

  /* Text baad me dikhana ho */
  .service-card.whatsapp .service-left {
    order: 2;
  }

  .service-card.whatsapp h3 {
    font-size: 22px;
  }

  .service-card.whatsapp .tagline {
    font-size: 16px;
  }

  .service-card.whatsapp .desc {
    font-size: 14px;
  }

  .service-card.whatsapp .btn-service {
    padding: 9px 16px;
    font-size: 14px;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .service-card.whatsapp h3 {
    font-size: 20px;
  }

  .service-card.whatsapp .tagline {
    font-size: 15px;
  }

  .service-card.whatsapp .desc {
    font-size: 13.5px;
  }

  .service-card.whatsapp .btn-service {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
}

/* Customization & Validation Section */
.service-card.customization {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, #fff8f0, #ffe8d6);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.customization:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card.customization .service-left {
  flex: 1;
}

.service-card.customization h3 {
  font-size: 26px;
  color: #b84c00;
  margin-bottom: 10px;
}

.service-card.customization .tagline {
  font-size: 18px;
  font-weight: 500;
  color: #e65100;
  margin-bottom: 15px;
}

.service-card.customization .desc {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.service-card.customization .customization-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-card.customization .customization-features li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card.customization .btn-service {
  display: inline-block;
  padding: 10px 20px;
  background: #e65100;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.service-card.customization .btn-service:hover {
  background: #b84c00;
}

.service-card.customization .service-right {
  flex: 1;
  text-align: center;
}

.service-card.customization .service-right img {
  max-width: 90%;
}

/* Responsive */
@media (max-width: 900px) {
  .service-card.customization {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    gap: 20px;
  }

  .service-card.customization .service-right {
    order: 1;
    margin-bottom: 20px;
  }

  /* Text baad me dikhana */
  .service-card.customization .service-left {
    order: 2;
  }

  .service-card.customization h3 {
    font-size: 22px;
  }

  .service-card.customization .tagline {
    font-size: 16px;
  }

  .service-card.customization .desc {
    font-size: 14px;
  }

  .service-card.customization .btn-service {
    padding: 9px 16px;
    font-size: 14px;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .service-card.customization h3 {
    font-size: 20px;
  }

  .service-card.customization .tagline {
    font-size: 15px;
  }

  .service-card.customization .desc {
    font-size: 13.5px;
  }

  .service-card.customization .btn-service {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
}

/* ===================== ERP Section Styling ===================== */
.service-card.erp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, #f8faff, #e9f2ff);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.erp:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card.erp .service-left {
  flex: 1;
}

.service-card.erp h3 {
  font-size: 26px;
  color: #004aad;
  margin-bottom: 10px;
}

.service-card.erp .tagline {
  font-size: 18px;
  font-weight: 500;
  color: #0066cc;
  margin-bottom: 15px;
}

.service-card.erp .desc {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.service-card.erp .service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-card.erp .service-features li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card.erp .btn-service {
  display: inline-block;
  padding: 10px 20px;
  background: #004aad;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.service-card.erp .btn-service:hover {
  background: #003580;
}

.service-card.erp .service-right {
  flex: 1;
  text-align: center;
}

.service-card.erp .service-right img {
  max-width: 90%;
  border-radius: 10px;
}

/* ===================== Tablet Responsive ===================== */
@media (max-width: 992px) {
  .service-card.erp {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .service-card.erp .service-left {
    margin-bottom: 20px;
  }

  .service-card.erp h3 {
    font-size: 22px;
  }

  .service-card.erp .tagline {
    font-size: 16px;
  }

  .service-card.erp .desc {
    font-size: 14px;
  }

  .service-card.erp .btn-service {
    font-size: 14px;
    padding: 8px 16px;
  }

  .service-card.erp .service-right img {
    order: 1;
    max-width: 100%;
  }

  .service-card.erp .service-left {
        order: 2;
    max-width: 100%;
  }

}

/* ===================== Mobile Responsive ===================== */
@media (max-width: 576px) {
  .service-card.erp {
    padding: 20px 15px;
    gap: 20px;
  }

  .service-card.erp h3 {
    font-size: 20px;
  }

  .service-card.erp .tagline {
    font-size: 15px;
  }

  .service-card.erp .desc {
    font-size: 13px;
  }

  .service-card.erp .service-features li {
    font-size: 13px;
  }

  .service-card.erp .btn-service {
    font-size: 13px;
    padding: 6px 12px;
  }

  .service-card.erp .service-right img {
    order: 1;
    max-width: 100%;
  }

  .service-card.erp .service-left {
        order: 2;
    max-width: 100%;
  }

}


/* Graphics Designing Section */
.service-card.graphics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, #fff8f5, #ffeae1);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.graphics:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card.graphics .service-left {
  flex: 1;
}

.service-card.graphics h3 {
  font-size: 26px;
  color: #e85c00;
  margin-bottom: 10px;
}

.service-card.graphics .tagline {
  font-size: 18px;
  font-weight: 500;
  color: #ff6600;
  margin-bottom: 15px;
}

.service-card.graphics .desc {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.service-card.graphics .service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-card.graphics .service-features li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card.graphics .btn-service {
  display: inline-block;
  padding: 10px 20px;
  background: #ff6600;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.service-card.graphics .btn-service:hover {
  background: #cc5200;
}

.service-card.graphics .service-right {
  flex: 1;
  text-align: center;
}

.service-card.graphics .service-right img {
  order: 1;
  max-width: 90%;
}

.service-card.graphics .service-left {
        order: 2;
    max-width: 100%;
  }

/* Web Development Section */
.service-card.webdev {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, #f0f8ff, #e6f0ff);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.webdev:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card.webdev .service-left {
  flex: 1;
}

.service-card.webdev h3 {
  font-size: 26px;
  color: #004aad;
  margin-bottom: 10px;
}

.service-card.webdev .tagline {
  font-size: 18px;
  font-weight: 500;
  color: #0073e6;
  margin-bottom: 15px;
}

.service-card.webdev .desc {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.service-card.webdev .service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-card.webdev .service-features li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card.webdev .btn-service {
  display: inline-block;
  padding: 10px 20px;
  background: #0073e6;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.service-card.webdev .btn-service:hover {
  background: #005bb5;
}

.service-card.webdev .service-right {
  flex: 1;
  text-align: center;
}

.service-card.webdev .service-right img {
  max-width: 90%;
}

/* ===== Responsive Fix for Services Section ===== */
@media (max-width: 992px) {

  .service-card.graphics,
  .service-card.webdev {
    flex-direction: column;
    /* Stack text & image */
    text-align: center;
    padding: 25px;
  }

  .service-card.graphics .service-left,
  .service-card.webdev .service-left,
  .service-card.graphics .service-right,
  .service-card.webdev .service-right {
    flex: unset;
    width: 100%;
  }

  .service-card.graphics .service-right img,
  .service-card.webdev .service-right img {
    max-width: 70%;
    margin: 20px auto 0;
  }
}

@media (max-width: 576px) {

  .service-card.graphics h3,
  .service-card.webdev h3 {
    font-size: 22px;
  }

  .service-card.graphics .tagline,
  .service-card.webdev .tagline {
    font-size: 16px;
  }

  .service-card.graphics .desc,
  .service-card.webdev .desc,
  .service-card.graphics .service-features li,
  .service-card.webdev .service-features li {
    font-size: 14px;
  }

  .service-card.graphics .btn-service,
  .service-card.webdev .btn-service {
    padding: 8px 16px;
    font-size: 14px;
  }

  .service-card.webdev .service-right img {
  order: 1;
  max-width: 90%;
}

.service-card.webdev .service-left {
        order: 2;
    max-width: 100%;
  }
}


/* ===== About Section Web Style ===== */
.about-section-web {
  width: 100%;
  padding: 80px 20px;
  background: #f5f2ed;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.about-intro {
  font-size: 18px;
  color: #16a085;
  margin-bottom: 20px;
  font-weight: 500;
}

.about-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.about-stats div {
  text-align: center;
}

.about-stats strong {
  display: block;
  font-size: 28px;
  color: #16a085;
  font-weight: bold;
}

.about-stats span {
  font-size: 14px;
  color: #555;
}

.btn-know-more {
  display: inline-block;
  background: #16a085;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-know-more:hover {
  background: #138d75;
}

.about-image {
  flex: 1;
  text-align: right;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }
}

/* ========= Achievements Section ========= */
.achievements {
  width: 100%;
  padding: 70px 20px;
  background: #ffffff;
}

.achievements .achv-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.achievements .achv-header {
  text-align: center;
  margin-bottom: 40px;
}

.achievements .achv-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f97316;
  background: #fff3e8;
  border: 1px solid #ffd8bb;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.achievements .achv-title {
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.2;
  color: #111827;
  margin: 0;
}

.achievements .achv-sub {
  color: #6b7280;
  font-size: 16px;
  margin-top: 10px;
}

/* Grid */
.achievement-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 18px;
}

@media (max-width: 992px) {
  .achievement-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .achievement-grid {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.achievement-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px 20px;
  border: 1px solid #eef0f3;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease, opacity .6s ease;
  /* animation start */
  opacity: 0;
  transform: translateY(14px) scale(0.98);
}

.achievement-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.10);

}

.achievement-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Icon */
.achievement-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff7ed, #ffe8d6);
  border: 1px solid #ffd8bb;
  font-size: 22px;
}

/* Number + suffix/prefix */
.achievement-value {
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 40px);
  color: #111827;
  line-height: 1;
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
}

.counter {
  display: inline-block;
  min-width: 2ch;
  /* prevents layout shift at 0 -> 10, etc. */
}

.counter-suffix,
.counter-prefix {
  font-weight: 700;
  font-size: 0.7em;
  color: #f97316;
}

.achievement-label {
  margin-top: 8px;
  color: #4b5563;
  font-size: 15px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  .achievement-card,
  .achievement-card.visible {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/*--------- industries we served------------*/

.industries-section {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.industries-section h2 {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.industries-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.industry-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px 10px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-card span {
  font-size: 32px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.industry-card:hover {
  background: #e8f6f3;
  color: #16a085;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.industry-card:hover span {
  transform: scale(1.2);
}

/*--------- Phone call button--------*/

.contact-small {
  font-size: 16px;
  font-weight: 500;
  color: #444;
}

.phone-text {
  color: #000000;
  /* Brand color */
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.phone-text:hover {
  color: #e65c00;
  border-bottom: 2px solid #e65c00;
  /* underline hover effect */
}

/*---Mobile togle-------*/
.hamburger div {
  transition: all 0.3s ease;
}

.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


@media (max-width: 768px) {
  .has-submenu .submenu {
    position: static;   /* dropdown full width le */
    box-shadow: none;
    border-radius: 0;
    display: none;
  }

  .has-submenu.active .submenu {
    display: block;
  }

  .submenu a {
    padding-left: 40px; /* thoda indent dikhane ke liye */
  }
}

/*--Flooting button----*/

.floating-enquiry {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff8c00, #ff4500);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.3s ease;
  overflow: visible;
}

.floating-enquiry:hover {
  transform: scale(1.1);
}

/* ✨ Pulse effect sirf hover par */
.floating-enquiry:hover::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.4);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* 🏷 Tooltip for Enquiry */
.tooltip {
  position: absolute;
  right: 70px;  /* Button ke left side */
  background: #333;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-enquiry:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}
