/* --- Marketing Page Custom Styles --- */
.hover-shadow:hover {
  box-shadow: 0 8px 24px rgba(237,43,41,0.15), 0 1.5px 4px rgba(0,0,0,0.06);
  transform: translateY(-4px) scale(1.03);
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card {
  background: #f8fafc;
  border-left: 4px solid #ed2b29;
}
.step-circle {
  width: 44px;
  height: 44px;
  background: #ed2b29;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto;
  font-weight: bold;
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  z-index: 9999;
  transition: background 0.2s;
}
.whatsapp-float:hover {
  background: #128C7E;
  color: #fff;
  text-decoration: none;
}
.counter {
  transition: all 0.5s;
}
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.7s;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}
@media (max-width: 600px) {
  .step-circle {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  .whatsapp-float {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    bottom: 16px;
    right: 16px;
  }
}
/* --- End Marketing Page Custom Styles --- */

/* Team Card Styles - Force Center Alignment */
.team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.team-card .card-body {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 1rem !important;
}

.team-card .card-title {
  text-align: center !important;
  margin: 0 auto 0.5rem auto !important;
  display: block !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}

.team-card .card-text {
  text-align: center !important;
  margin: 0 auto !important;
  display: block !important;
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}

.team-card img {
  margin: 0 auto !important;
  display: block !important;
}

/* Override Bootstrap and any other conflicting styles */
section .team-card .card-title,
section .team-card .card-text {
  text-align: center !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  position: static !important;
}

/* Force center for all text elements in team cards */
.team-card h5,
.team-card p,
.team-card .card-title,
.team-card .card-text {
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  left: 0 !important;
  right: 0 !important;
}

/* Additional override for any remaining alignment issues */
.text-center .card-title,
.text-center .card-text {
  text-align: center !important;
}

/* Most specific selector to override everything */
body section .team-card .card-body .card-title,
body section .team-card .card-body .card-text {
  text-align: center !important;
  margin: 0 auto !important;
  display: block !important;
  width: 100% !important;
}

/* Timeline Styles */
.timeline-horizontal-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.timeline-horizontal-wrapper::-webkit-scrollbar {
  display: none;
}
.timeline-horizontal {
  display: flex;
  align-items: flex-end;
  gap: 48px;
  min-width: 700px;
  padding: 24px 0 16px 0;
  position: relative;
  transition: box-shadow .2s;
  user-select: none;
}
.timeline-horizontal::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 4px;
  background: linear-gradient(90deg, #ed2b29 0%, #f6f8fa 100%);
  z-index: 0;
  border-radius: 2px;
  transform: translateY(-50%);
}
.timeline-event {
  position: relative;
  min-width: 120px;
  flex: 0 0 160px;
  z-index: 1;
  text-align: center;
  cursor: grab;
  opacity: 0;
  transform: translateY(40px);
  animation: timelineFadeIn .8s forwards;
}
.timeline-event:nth-child(1) { animation-delay: 0.1s; }
.timeline-event:nth-child(2) { animation-delay: 0.3s; }
.timeline-event:nth-child(3) { animation-delay: 0.5s; }
.timeline-event:nth-child(4) { animation-delay: 0.7s; }
.timeline-event:nth-child(5) { animation-delay: 0.9s; }
.timeline-event:nth-child(6) { animation-delay: 1.1s; }
.timeline-event:nth-child(7) { animation-delay: 1.3s; }
.timeline-dot {
  width: 22px; height: 22px;
  background: #ed2b29;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto 10px auto;
  box-shadow: 0 2px 8px rgba(237,43,41,0.12);
  position: relative;
  z-index: 2;
  transition: box-shadow .2s;
}
.timeline-year {
  font-weight: 700;
  color: #ed2b29;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 1rem;
  color: #22223b;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-top: 6px;
  padding: 8px 10px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-horizontal.active {
  cursor: grabbing;
  box-shadow: 0 4px 18px rgba(237,43,41,0.08);
}
@media (max-width: 900px) {
  .timeline-horizontal {
    min-width: 600px;
    gap: 32px;
  }
  .timeline-event {
    flex: 0 0 120px;
  }
}
@media (max-width: 600px) {
  .timeline-horizontal {
    min-width: 400px;
    gap: 16px;
  }
  .timeline-event {
    flex: 0 0 90px;
    font-size: 0.9rem;
  }
  .timeline-desc {
    font-size: 0.95rem;
    padding: 6px 6px;
  }
}
@keyframes timelineFadeIn {
  to { opacity: 1; transform: none; }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root {
  --primary-color: #ed2b29;
  --secondary-color: #22223b;
  --accent-color: #ed2b29;
  --background: #fff;
  --background-alt: #f6f8fa;
  --text-color: #22223b;
  --text-light: #6b7280;
  --border-color: #ed2b29;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Poppins', Arial, sans-serif;
  background: var(--background);
  color: var(--text-color);
  line-height: 1.6;
}
.header {
  background: var(--background);
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.07);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
}
.logo a {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color .2s;
  font-family: 'Poppins', Arial, sans-serif;
}
.logo a:hover {
  color: var(--accent-color);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: 1.5rem;
  position: relative;
}
.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  padding: 0.7rem 1.2rem;
  border-radius: 28px;
  transition: background .2s, color .2s;
  position: relative;
  font-family: 'Poppins', Arial, sans-serif;
}
.nav-links a:hover,
.nav-links a:focus,
.cta-button:hover {
  background: var(--primary-color);
  color: #fff;
  outline: none;
}
.cta-button {
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 1.3rem;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(237,43,41,0.08);
  transition: background .2s, color .2s;
}
.mega-menu-wrapper {
  position: relative;
}
.mega-menu-trigger {
  cursor: pointer;
  font-weight: 500;
  position: relative;
}
.mega-menu {
  position: fixed;
  left: 10%;
  top: 70px;
  transform: translateX(-50%);
  width: min(1100px, 95vw);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(30,64,175,0.13), 0 2px 8px rgba(0,0,0,0.05);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 2rem 2.2rem 1.5rem 2.2rem;
  z-index: 9999;
  border: 1px solid var(--border-color);
  font-family: 'Poppins', Arial, sans-serif;
}
.mega-menu::before,
.mega-menu::after {
  display: none !important;
}
@media (max-width: 900px) {
  .mega-menu {
    width: 100vw !important;
    left: 0 !important;
    transform: none !important;
    min-width: 0 !important;
    border-radius: 0 0 16px 16px;
    top: 70px;
  }
}

.mega-menu::before {
  content: '';
  display: block;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 12px;
  background: transparent;
}
.mega-menu::after {
  content: '';
  display: block;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: #fff;
  border-left: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -2px 6px rgba(30,64,175,0.06);
  border-radius: 4px 0 0 0;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  padding: 0.4rem 0;
  margin-left: auto;
  margin-right: auto;
  min-width: 750px;
}
.mega-menu-column h3 {
  color: var(--primary-color);
  font-size: 1.13rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-family: 'Poppins', Arial, sans-serif;
}
.mega-menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-menu-column ul li,
.mega-menu-column ul li a {
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  padding: 0.28rem 0.2rem;
  border-radius: 5px;
  transition: var(--transition);
  font-weight: 500;
  cursor: pointer;
  font-family: 'Poppins', Arial, sans-serif;
}
.mega-menu-column ul li:hover,
.mega-menu-column ul li a:hover,
.mega-menu-column ul li:focus,
.mega-menu-column ul li a:focus {
  background: var(--background-alt);
  color: var(--primary-color);
  outline: none;
}
.mega-menu-wrapper:hover .mega-menu,
.mega-menu-wrapper:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.hero {
  background: linear-gradient(90deg, #fff 60%, #f7b801 100%);
  padding: 5rem 0 3rem 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
}
.hero p {
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.footer {
  background: var(--background-alt);
  padding: 2rem 0 1.2rem 0;
  margin-top: 3rem;
  color: var(--text-color);
  text-align: center;
  font-size: 1rem;
}
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 1rem;
  }
  .mega-menu {
    min-width: 500px;
  }
}
@media (max-width: 900px) {
  .mega-menu-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .mega-menu {
    min-width: 0;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
}
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 0 0.5rem;
  }
  .logo {
    margin: 1rem 0;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.7rem;
  }
  .mega-menu {
    position: fixed;
    top: 0;
    left: 100vw;
    right: 0;
    min-width: 0;
    width: 100vw;
    height: 100vh;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: var(--background);
    z-index: 1000;
    transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
    border: none;
    display: block;
  }
  .mega-menu.active {
    left: 0;
  }
  .mega-menu-content {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 2.5rem 1.2rem 1.2rem 1.2rem;
  }
  .mega-menu-wrapper {
    width: 100%;
  }
  .mega-menu-wrapper .mega-menu {
    display: none;
  }
  .mega-menu-wrapper .mega-menu.active {
    display: block;
  }
  .mega-menu-wrapper:hover .mega-menu,
  .mega-menu-wrapper:focus-within .mega-menu {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .footer {
    font-size: 0.95rem;
  }
  .nav-links a {
    font-size: 0.95rem;
    padding: 0.5rem 0.7rem;
  }
}


.about-content {
  max-width: 900px;
  margin: 0 auto 2rem auto;
  padding: 2.5rem 1.2rem 1.2rem 1.2rem;
  text-align: center;
}

.vision-values-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2.5rem 0 1.5rem 0;
}
@media (max-width: 900px) {
  .vision-values-expertise {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
}

.vision-card, .values-card, .expertise-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px rgba(30,64,175,0.08);
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.vision-card h2, .values-card h2, .expertise-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #2241a6;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.vision-card h2::before {
  content: '\1F441'; /* eye icon */
  font-size: 1.15em;
}
.values-card h2::before {
  content: '\1F4AA'; /* flexed biceps icon */
  font-size: 1.15em;
}
.expertise-card h2::before {
  content: '\1F4BB'; /* laptop icon */
  font-size: 1.15em;
}
.vision-card p, .values-card ul, .expertise-card ul {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 0.7rem;
}
.values-card ul, .expertise-card ul {
  padding-left: 1.2rem;
  margin-bottom: 0.3rem;
}
.values-card li, .expertise-card li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.2em;
  list-style: none;
  color: #2241a6;
  font-weight: 500;
}
.values-card li::before, .expertise-card li::before {
  content: '\2022';
  color: #2241a6;
  position: absolute;
  left: 0;
  font-size: 1.1em;
  top: 0.1em;
}

.about-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.01em;
  font-family: 'Poppins', Arial, sans-serif;
}
.about-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-family: 'Poppins', Arial, sans-serif;
}
.about-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-content ul li {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  font-family: 'Poppins', Arial, sans-serif;
}

.expertise-content {
  max-width: 650px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem;
  text-align: center;
}
.expertise-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.01em;
  font-family: 'Poppins', Arial, sans-serif;
} 
.expertise-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-family: 'Poppins', Arial, sans-serif;
}
.expertise-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.expertise-content ul li {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  font-family: 'Poppins', Arial, sans-serif;
}

/* HERO BANNER STYLES */
#hero-banner-inner {
  position: relative;
  min-height: 340px;
  height: 340px;
  background: url('images/marketing-banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
#hero-banner-inner .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30,30,30,0.45);
  z-index: 1;
}
#hero-banner-inner .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
#hero-banner-inner h1,
#hero-banner-inner p,
#hero-banner-inner a {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  #hero-banner-inner {
    min-height: 220px;
    height: 220px;
    padding: 32px 0;
  }
  #hero-banner-inner .container {
    padding-top: 40px;
  }
  #hero-banner-inner h1 {
    font-size: 2rem;
  }
  #hero-banner-inner p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  #hero-banner-inner {
    min-height: 140px;
    height: 140px;
    padding: 16px 0;
  }
  #hero-banner-inner .container {
    padding-top: 16px;
  }
  #hero-banner-inner h1 {
    font-size: 1.2rem;
  }
}

#hero-banner {
  padding-top: 440px;
  background: #fff url(images/bg.png) no-repeat 100% bottom;
}

#hero-banner {
  overflow: hidden;
  height: 650px;
  color: #4C4C4C;
  border-bottom: 1px solid #BDBDBD;
}

/* Elegant Solutions Section Styles */
.solutions {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.solutions::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0, #e0e7ff 0%, transparent 70%);
  opacity: 0.25;
  z-index: -1;
}
.solutions h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.5px;
  margin-bottom: 0.7rem;
  position: relative;
}
.solutions-divider {
  width: 70px;
  height: 4px;
  background: #ed2b29;
  border-radius: 2px;
  margin-bottom: 0.7rem;
}
.solutions-subtitle {
  color: #ed2b29;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1px;
}

.solutions p.text-center {
  color: #5a5a7a;
  font-size: 1.08rem;
  margin-bottom: 2.8rem;
}

.solution-card {
  border: 1.5px solid #ed2b29;
  border-radius: 1.5rem;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s cubic-bezier(.4,0,.2,1), border-color 0.22s;
  background: #fff;
  box-shadow: 0 4px 28px rgba(44,62,80,0.08), 0 1.5px 6px rgba(44,62,80,0.04);
  margin-bottom: 28px;
  padding: 2.5rem 1.6rem 2.2rem 1.6rem;
  position: relative;
  overflow: hidden;
}
.solution-card:hover {
  transform: translateY(-12px) scale(1.035);
  box-shadow: 0 12px 36px rgba(44,62,80,0.14), 0 2px 8px rgba(44,62,80,0.08);
  border-color: #111;
  z-index: 2;
}


/* Unique color accents for each solution card */
.solutions .solution-card:nth-child(1) .solution-icon { background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%); }
.solutions .solution-card:nth-child(1) .solution-icon i { color: #ed2b29; }
.solutions .solution-card:nth-child(2) .solution-icon { background: linear-gradient(135deg, #d1fae5 0%, #f8fafc 100%); }
.solutions .solution-card:nth-child(2) .solution-icon i { color: #10b981; }
.solutions .solution-card:nth-child(3) .solution-icon { background: linear-gradient(135deg, #cffafe 0%, #f8fafc 100%); }
.solutions .solution-card:nth-child(3) .solution-icon i { color: #0ea5e9; }
.solutions .solution-card:nth-child(4) .solution-icon { background: linear-gradient(135deg, #fef3c7 0%, #f8fafc 100%); }
.solutions .solution-card:nth-child(4) .solution-icon i { color: #f59e42; }
.solutions .solution-card:nth-child(5) .solution-icon { background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%); }
.solutions .solution-card:nth-child(5) .solution-icon i { color: #ed2b29; }
.solutions .solution-card:nth-child(6) .solution-icon { background: linear-gradient(135deg, #d1fae5 0%, #f8fafc 100%); }
.solutions .solution-card:nth-child(6) .solution-icon i { color: #10b981; }
.solutions .solution-card:nth-child(7) .solution-icon { background: linear-gradient(135deg, #cffafe 0%, #f8fafc 100%); }
.solutions .solution-card:nth-child(7) .solution-icon i { color: #0ea5e9; }
.solutions .solution-card:nth-child(8) .solution-icon { background: linear-gradient(135deg, #fef3c7 0%, #f8fafc 100%); }
.solutions .solution-card:nth-child(8) .solution-icon i { color: #f59e42; }
.solutions .solution-card:nth-child(9) .solution-icon { background: linear-gradient(135deg, #ede9fe 0%, #f8fafc 100%); }
.solutions .solution-card:nth-child(9) .solution-icon i { color: #8b5cf6; }

.solution-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 2;
}
.solution-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 22px auto;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 4px 16px rgba(44,62,80,0.08);
  transition: box-shadow 0.22s, background 0.22s;
  font-size: 2.3rem;
}
.solution-card:hover .solution-icon {
  box-shadow: 0 8px 28px rgba(44,62,80,0.14);
  background: #ed2b29;
}

.solution-icon i {
  line-height: 1;
  color: #fff !important;
  transition: color 0.2s;
}
.solution-card:hover .solution-icon i {
  color: #fff !important;
}

.solution-card .card-title {
  font-size: 1.16rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: #111;
  letter-spacing: 0.1px;
}

.solution-card .card-text {
  font-size: 1.01rem;
  color: #5a5a7a;
  margin-bottom: 0;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .solutions .col-lg-3 {
    margin-bottom: 24px;
  }
}

/* About Us Section Styles */
#about h2 {
  color: #111;
  font-weight: 700;
  letter-spacing: 0.5px;
}
#about h3 {
  color: #ed2b29;
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
}
#about p.lead {
  font-size: 1.13rem;
  color: #22223b;
}
.about-hero {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.about-hero-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ed2b29;
  box-shadow: 0 6px 32px rgba(44,62,80,0.10);
  background: #fff;
}
.about-hero-desc {
  font-size: 1.09rem;
  color: #22223b;
  max-width: 600px;
}
.about-card {
  border: 1.5px solid #ed2b29;
  border-radius: 1.3rem;
  box-shadow: 0 4px 24px rgba(44,62,80,0.07);
  background: #fff;
  transition: box-shadow 0.22s, border-color 0.22s;
}
.about-card:hover {
  box-shadow: 0 12px 32px rgba(44,62,80,0.13);
  border-color: #111;
}
.about-icon {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 2.5px solid #ed2b29;
  background: #fff;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
  margin-bottom: 0.7rem;
}
.about-list {
  padding-left: 1.3rem;
  margin-bottom: 1.2rem;
  list-style: disc inside;
}
.about-list li {
  margin-bottom: 0.6rem;
  color: #22223b;
  font-size: 1.01rem;
  line-height: 1.65;
  position: relative;
}
.about-list li strong {
  color: #ed2b29;
}
#about ul.about-list.row {
  list-style: none;
  padding-left: 0;
}
#about ul.about-list.row li {
  padding-left: 0;
  margin-bottom: 0.7rem;
}
#about .row > [class^='col'] {
  margin-bottom: 1.2rem;
}
@media (max-width: 991px) {
  .about-hero-img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 767px) {
  .about-card {
    margin-bottom: 1.2rem;
  }
  .about-hero {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .why-choose-img {
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.why-choose-img {
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(44,62,80,0.08);
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  background: #fff;
}

.about-vision-img,
.about-mission-img {
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(44,62,80,0.08);
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: cover;
  margin-top: 1.1rem;
  margin-bottom: 0.3rem;
  background: #fff;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Expertise Section Styles */
.expertise-section {
  padding: 0.5rem 0 0.5rem 0;
}
.expertise-grid {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.expertise-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(44,62,80,0.07);
  border: 1.5px solid #f3f3f3;
  padding: 1.8rem 1.2rem 1.4rem 1.2rem;
  text-align: center;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 210px;
}
.expertise-card:hover {
  box-shadow: 0 8px 32px rgba(237,43,41,0.12), 0 2px 8px rgba(44,62,80,0.09);
  transform: translateY(-8px) scale(1.03);
  border-color: #ed2b29;
  z-index: 2;
}
.expertise-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem auto;
  border-radius: 50%;
  font-size: 2rem;
  color: #fff;
  transition: background 0.22s, transform 0.22s, color 0.22s;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}
.bg-red { background: #ed2b29; }
.bg-black { background: #111; }
.expertise-card:hover .expertise-icon {
  background: #fff;
  color: #ed2b29;
  transform: scale(1.12) rotate(-6deg);
  border: 2px solid #ed2b29;
}
.expertise-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.3rem;
}
.expertise-desc {
  font-size: 0.99rem;
  color: #555;
  line-height: 1.6;
}
/* Portfolio Carousel Custom Styles */
#portfolioCarousel {
  margin-top: 2rem;
}
#portfolioCarousel .carousel-inner {
  padding-bottom: 2.5rem;
}
#portfolioCarousel .carousel-control-prev,
#portfolioCarousel .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(237,43,41,0.85);
  border-radius: 50%;
  opacity: 0.85;
  transition: background 0.18s;
}
#portfolioCarousel .carousel-control-prev:hover,
#portfolioCarousel .carousel-control-next:hover {
  background: #c71f1d;
  opacity: 1;
}
#portfolioCarousel .carousel-control-prev-icon,
#portfolioCarousel .carousel-control-next-icon {
  filter: invert(1) grayscale(1);
}
#portfolioCarousel .carousel-item .card {
  transition: transform 0.18s, box-shadow 0.18s;
}
#portfolioCarousel .carousel-item .card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(44,62,80,0.13);
  border-color: #ed2b29;
  z-index: 2;
}
@media (max-width: 767px) {
  #portfolioCarousel .carousel-inner {
    padding-bottom: 1.2rem;
  }
  #portfolioCarousel .carousel-control-prev,
  #portfolioCarousel .carousel-control-next {
    width: 38px;
    height: 38px;
  }
}

/* Fade-in Animation */
.animate-fadein {
  opacity: 0;
  animation: fadeInUpExpertise 0.7s forwards;
}
@keyframes fadeInUpExpertise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

/* Fade-in animation for solution cards */

/* Brand override for Bootstrap primary button */
.btn-primary {
  background-color: #ed2b29 !important;
  border-color: #ed2b29 !important;
  color: #fff !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #c71f1d !important;
  border-color: #c71f1d !important;
  color: #fff !important;
}

/* Brand override for all links */
a {
  color: #ed2b29;
  text-decoration: underline;
  transition: color 0.15s;
}
a:hover, a:focus, a:active {
  color: #c71f1d;
  text-decoration: underline;
}


.solutions .row > [class*='col-'] {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s forwards;
  animation-delay: calc(var(--solution-index, 1) * 0.1s);
}
.solutions .row > [class*='col-']:nth-child(1) { --solution-index: 1; }
.solutions .row > [class*='col-']:nth-child(2) { --solution-index: 2; }
.solutions .row > [class*='col-']:nth-child(3) { --solution-index: 3; }
.solutions .row > [class*='col-']:nth-child(4) { --solution-index: 4; }
.solutions .row > [class*='col-']:nth-child(5) { --solution-index: 5; }
.solutions .row > [class*='col-']:nth-child(6) { --solution-index: 6; }
.solutions .row > [class*='col-']:nth-child(7) { --solution-index: 7; }
.solutions .row > [class*='col-']:nth-child(8) { --solution-index: 8; }
.solutions .row > [class*='col-']:nth-child(9) { --solution-index: 9; }
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}


/* Elegant Services Section Styles */
.services-section {
  background: #f8fafc;
  padding-top: 60px;
  padding-bottom: 60px;
}

.service-card {
  border: none;
  border-radius: 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  z-index: 2;
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.service-icon i {
  line-height: 1;
  transition: color 0.2s;
}
.service-card:hover .service-icon i {
  color: #ed2b29 !important;
}
.service-card .card-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.service-card .card-text {
  font-size: 0.98rem;
  color: #555;
}

footer a:hover {
  color: #0d6efd;
  text-decoration: underline;
  transition: color 0.3s ease;
}


.marketing-card {
  border-radius: 1.5rem;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 16px rgba(44,62,80,0.07);
}
.marketing-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 10px 32px rgba(237,43,41,0.12);
  border: 1.5px solid #ed2b29;
}
.marketing-card .card-title {
  color: #ed2b29;
}
.marketing-card a.link-dark {
  text-decoration: none;
  transition: color 0.2s;
}
.marketing-card a.link-dark:hover {
  color: #ed2b29;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .marketing-card {
    margin-bottom: 1.5rem;
  }
}


.service-card-hover {
  border-radius: 1.5rem;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 16px rgba(44,62,80,0.07);
}
.service-card-hover:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 10px 32px rgba(237,43,41,0.12);
  border: 1.5px solid #ed2b29;
  z-index: 2;
}
.service-link {
  color: #222;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  margin-bottom: 0.25rem;
}
.service-link:hover {
  color: #ed2b29;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .service-card-hover {
    margin-bottom: 1.5rem;
  }
}



/* Container Styling */
.hire-container,
.software-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.software-container.reverse {
  flex-direction: row-reverse;
}

/* Image Styling */
.hire-image img,
.software-image img {
  max-width: 100%;
  height: auto;

  flex: 1 1 400px;
}

/* Content Styling */
.hire-content,
.software-content {
  flex: 1 1 400px;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  font-weight: 600;
  color: #1457FF;
  text-decoration: none;
  gap: 8px;
  transition: color 0.3s;
}

.learn-more:hover {
  color: #003cc5;
}

.learn-more svg {
  fill: currentColor;
}

/* Tag/Label Styling */
.tech-tags,
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.tech-tags a,
.service-tags a {
  background-color: #f0f4ff;
  color: #1457FF;
  text-decoration: none;
  padding: 8px 14px;
  font-size: 0.9rem;
  border-radius: 20px;
  transition: background-color 0.3s, color 0.3s;
}

.tech-tags a:hover,
.service-tags a:hover {
  background-color: #1457FF;
  color: #fff;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .hire-container,
  .software-container {
    flex-direction: column;
    text-align: center;
  }

  .learn-more {
    justify-content: center;
  }

  .tech-tags,
  .service-tags {
    justify-content: center;
  }
}


.transition:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.step-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.text-primary {
  color: #007bff !important;
}

.text-muted {
  color: #6c757d !important;
}

.fs-5 {
  font-size: 1.125rem;
}

.shadow-lg {
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.portfolio-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


/* Mobile Development Life Cycle Styling */
section.bg-light {
  background-color: #f8f9fa;
  padding: 60px 0;
}

section.bg-light h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #212529;
}

.card {
  border: none;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-body {
  padding: 25px;
  background-color: #fff;
  border-radius: 1rem;
}

.card-text {
  font-size: 0.95rem;
  color: #555;
}

@media (max-width: 768px) {
  section.bg-light h2 {
      font-size: 1.75rem;
  }

  .card-title {
      font-size: 1rem;
  }

  .card-text {
      font-size: 0.9rem;
  }
}

.portfolio-card:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-shadow:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.object-fit-cover {
  object-fit: cover;
}

.btn-custom {
  color: #fff;
  background-color: #ed2b29;
  border: none;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #c9221f;
  color: #fff;
}


#benefits i {
  color: #ed2b29; /* use brand red for icons */
}

.card:hover {
  transform: translateY(-4px);
  transition: all 0.3s ease;
}


#approach .card {
  transition: all 0.3s ease;
}
#approach .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
#approach .card i {
  color: #0ea5e9;
}

#services .card {
  transition: all 0.3s ease;
}
#services .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
#services .card i {
  color: #0ea5e9;
}
#services .card-title {
  font-size: 1.25rem;
  font-weight: 600;
}
#services .card-text {
  font-size: 1rem;
  color: #6c757d;
}


    .wheel-container {
        position: relative;
        width: 500px;
        height: 600px;
        margin: 0 auto;
    }

    .wheel-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #0d6efd;
        color: #fff;
        padding: 40px;
        border-radius: 50%;
        z-index: 10;
        text-align: center;
        font-weight: bold;
        font-size: 1.2rem;
        width: 380px;
        height: 380px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }

    .wheel-item {
        position: absolute;
        width: 140px;
        text-align: center;
        transform-origin: center center;
        transition: transform 0.3s ease;
    }

    .wheel-item .card {
        border: none;
        padding: 10px;
        border-radius: 15px;
        background: white;
        box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }

    /* Positioning the wheel items */
    .wheel-item:nth-child(1) { top: 0%; left: 50%; transform: translate(-50%, -50%) rotate(0deg); }
    .wheel-item:nth-child(2) { top: 20%; left: 85%; transform: translate(-50%, -50%) rotate(45deg); }
    .wheel-item:nth-child(3) { top: 50%; left: 100%; transform: translate(-50%, -50%) rotate(90deg); }
    .wheel-item:nth-child(4) { top: 80%; left: 85%; transform: translate(-50%, -50%) rotate(135deg); }
    .wheel-item:nth-child(5) { top: 100%; left: 50%; transform: translate(-50%, -50%) rotate(180deg); }
    .wheel-item:nth-child(6) { top: 80%; left: 15%; transform: translate(-50%, -50%) rotate(225deg); }
    .wheel-item:nth-child(7) { top: 50%; left: 0%; transform: translate(-50%, -50%) rotate(270deg); }
    .wheel-item:nth-child(8) { top: 20%; left: 15%; transform: translate(-50%, -50%) rotate(315deg); }



    .feature-card {
      transition: all 0.3s ease-in-out;
      padding: 30px;
      background-color: #fff;
      border: 2px solid #f5f5f5;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      transform: translateY(0);
  }

  .feature-card:hover {
      transform: translateY(-10px); /* Slightly lift the card on hover */
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Make the shadow more pronounced */
  }

  .feature-card .icon-container {
      transition: transform 0.3s ease-in-out;
  }

  .feature-card:hover .icon-container {
      transform: scale(1.1); /* Increase the size of the icon on hover */
  }

  .feature-card .card-title {
      font-size: 1.25rem;
      margin-bottom: 15px;
      font-weight: 600;
  }

  .feature-card .card-text {
      font-size: 1rem;
      color: #666;
  }

  .feature-card i {
      transition: transform 0.3s ease-in-out;
  }

  .feature-card:hover i {
      transform: rotate(15deg); /* Rotate the icon on hover */
  }

  @media (max-width: 767px) {
      .feature-card {
          padding: 20px;
      }
  }

  #intro-cms {
    background-color: #f8f9fa;
}

#intro-cms .container {
    max-width: 1200px;
}

#intro-cms .display-4 {
    font-weight: 700;
    color: #0ea5e9;
}

#intro-cms .lead {
    font-size: 1.1rem;
    color: #6c757d;
}

#intro-cms ul {
    margin-top: 20px;
}

#intro-cms ul li {
    font-size: 1.05rem;
    color: #343a40;
    padding-left: 1.5rem;
    position: relative;
}

#intro-cms ul li::before {
    content: "\2022";
    font-size: 1.5rem;
    color: #0ea5e9;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive Design */
@media (max-width: 767px) {
    #intro-cms .row {
        text-align: center;
    }

    #intro-cms .col-md-6 {
        margin-bottom: 20px;
    }

    #intro-cms img {
        margin-top: 20px;
    }
}


#cms-frameworks {
  background-color: #f8f9fa;
}

#cms-frameworks .display-4 {
  font-weight: 700;
  color: #0ea5e9;
}

#cms-frameworks .lead {
  font-size: 1.1rem;
  color: #6c757d;
}

#cms-frameworks .cms-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  border: 2px solid #ddd;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

#cms-frameworks .cms-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#cms-frameworks img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 767px) {
  #cms-frameworks .row {
      text-align: center;
  }

  #cms-frameworks .col-md-3 {
      margin-bottom: 20px;
  }
}

.hover-zoom {
  transition: transform 0.3s ease-in-out;
}
.hover-zoom:hover {
  transform: translateY(-8px) scale(1.02);
}


.approach-box {
  transition: all 0.3s ease;
  cursor: pointer;
}
.approach-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.icon-wrapper i {
  transition: transform 0.4s ease;
}
.approach-box:hover .icon-wrapper i {
  transform: scale(1.2) rotate(6deg);
}


.step-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-circle {
  width: 60px;
  height: 60px;
  font-size: 28px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #f1f5f9;
  display: inline-block;
  transition: all 0.3s ease;
}
.step-box:hover .icon-circle {
  background-color: #e0f2fe;
  transform: scale(1.1);
}

.arrow-animate {
  animation: pulseArrow 1.5s infinite ease-in-out;
}

@keyframes pulseArrow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}


.timeline {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 100%;
  max-width: 90%;
  background-color: #e2e8f0;
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 240px;
}

.circle-icon {
  width: 70px;
  height: 70px;
  font-size: 32px;
  background-color: #f1f5f9;
  border-radius: 50%;
  line-height: 70px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.timeline-step:hover .circle-icon {
  background-color: #e0f2fe;
  transform: scale(1.1);
}


.accordion-button {
  font-weight: 600;
  color: #0d6efd;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-body {
  font-size: 0.95rem;
  color: #555;
}


.testimonial-box {
  border-left: 5px solid #2563eb; /* Blue left border for emphasis */
}

.testimonial-box p {
  font-style: italic;
  color: #555;
}

.testimonial-box h4 {
  font-weight: bold;
  color: #333;
}


.arrow-right {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}


.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.hover-effect:hover {
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}


.step-card {
  width: 260px;
  min-height: 280px;
  transition: transform 0.3s ease;
}
.step-card:hover {
  transform: translateY(-5px);
}

.arrow {
  width: 40px;
  justify-content: center;
}


.integration-step {
  width: 220px;
  transition: transform 0.3s ease;
}
.integration-step:hover {
  transform: translateY(-8px);
}

.tech-icon {
  transition: transform 0.2s cubic-bezier(.4,2,.6,1), box-shadow 0.2s;
  outline: none;
}
.tech-icon:hover, .tech-icon:focus {
  transform: scale(1.13);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
  z-index: 2;
}
.tech-icon:focus {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
}

.arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .arrow-icon {
    display: none !important;
  }
  .integration-step {
    width: 100%;
  }
}


.tech-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.tech-icon {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.tech-card:hover .tech-icon {
  filter: grayscale(0%);
}


