body {
  margin: 0;
  font-family: Arial, sans-serif;
}
.logo-img {
  height: 60px !important;
  max-height: none !important;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-shadow {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.navbar-brand {
  display: flex;
  align-items: center;
}

i {
  font-size: 18px;
  cursor: pointer;

}

.hiring {
  font-size: 20px;
  padding-right: 20px;
}

.dot1 {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: green;
  border-radius: 50%;
  margin-left: 5px;

  animation: blink 1.5s infinite;
}
div a {
  text-decoration: none;   /* removes underline */
  color: #ffffff;             /* text color */
  font-size: 20px;
}
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.2; }
  100% { opacity: 1; }
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  color: rgb(0, 0, 0);
  cursor: pointer;
}

/* SIDEBAR PANEL */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;

  background: #2b2bd9;
  padding: 70px 25px 30px;
  transition: 0.4s ease;
  z-index: 999;

  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  box-shadow: -10px 0 30px rgba(0,0,0,0.3);

  display: flex;
  flex-direction: column;

  /* ✅ ADD THIS */
  overflow-y: auto;
}

.service-dropdown a {
  text-decoration: none;
  color: #fff;
  display: block;
  width: 100%;
  transition: 0.3s;
}

.service-dropdown a:hover {
  opacity: 0.7;
  transform: translateX(5px);
}

/* HIDE DEFAULT */
.industries-dropdown {
  display: none;
  margin-top: 10px;
}

/* SHOW */
.industries-dropdown.show {
  display: block;
}

/* ARROW ROTATE */
.arrow {
  transition: 0.3s;
}
.arrow.rotate {
  transform: rotate(90deg);
}


.sidebar .arrow {
  position: static;
  transform: none;
}
.sidebar.active {
  right: 0;
}
/* DROPDOWN HIDDEN */
.service-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding-left: 10px;
}

/* OPEN STATE */
.service-dropdown.active {
  max-height: 500px; /* enough height */
}

/* ITEMS */
.service-dropdown div {
  font-size: 16px;
  color: #fff;
  margin: 10px 0;
  opacity: 0.9;
}

/* ARROW ROTATE */
#serviceArrow {
  transition: 0.3s;
}

#serviceArrow.rotate {
  transform: rotate(180deg);
}

/* TOP SECTION */
.sidebar-top {
  margin-bottom: 30px;
}

.sidebar-top .social-icons {
  display: flex;
  flex-direction: row; /* ✅ horizontal */
  gap: 15px;
  color: white;
  margin-bottom: 20px;

}

.email {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 15px;
}

/* MENU */
.menu div {
  font-size: 20px;
  color: white;
  margin: 14px 0;
  letter-spacing: 1px;
  transition: 0.3s;
  cursor: pointer;
}

/* HIGHLIGHT BLOCK (like your image yellow card feel) */
.arrow {
  font-size: 14px;
  transition: 0.3s;
}
.highlight span{
    font-weight: bold;
}

/* hover pe thoda move */
.highlight:hover .arrow {
  transform: translateX(5px);
}
/* CAREER DOT */
.dot1 {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #00c853;
  border-radius: 50%;
  margin-left: 6px;
}

/* HOVER */
.menu div:hover {
  transform: translateX(6px);
}



.hero {
  position: relative;
  height: 80vh;
  background: url('../images/backg.jpg') center/cover no-repeat;
  color: #000;
}
/* 📱 MOBILE */
@media (max-width: 767px) {
  .hero {
    min-height: 60vh;
    padding: 60px 15px;
    background-position: center ;
  }
}

/* 📲 TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero {
    min-height: 70vh;              /* thoda balanced height */
    padding: 80px 30px;
    background-position: center;   /* image properly visible */
  }
}
/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);
}

/* EXACT POSITION LIKE IMAGE */
.hero-content {
  position: absolute;
  top: 140px;   /* adjust for exact spacing */
  left: 60px;   /* left gap like image */

  max-width: 650px;
  z-index: 2;
}

.hero-heading {
  font-size: 82px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;  /* 🔥 THIS IS THE KEY */
}

/* Keep both lines visually tight */
.hero-heading span {
  display: inline-block;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(90deg, rgb(47, 105, 223), rgb(30, 31, 102));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.hero p {
  font-size: 22px;
  color: #555;
  margin: 20px 0;
  margin-left: 10px;
  margin-top: 5%;
}

.hero p strong {
  color: #000;
}

/* CTA BUTTON */
.cta-btn1 {
  padding: 12px 30px;
  border-radius: 30px;
  border: none;

  background: linear-gradient(90deg, #4f46e5, #06b6d4);
  color: #fff;

  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;

  cursor: pointer;
  transition: all 0.3s ease;

  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* HOVER */
.cta-btn1:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* CLICK EFFECT */
.cta-btn1:active {
  transform: scale(0.97);
}

/* OPTIONAL FADE ANIMATION */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* SOCIAL BAR */
.social-bar {
  position: absolute;
  right: 130px;
  top: 40%;
  transform: translateY(-50%);
  text-align: center;

}

.social-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 14px;
  margin-bottom: 20px;
  display: inline-block;
  
}

/* Icons */
.social-icons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #000;
}

.social-icons i {
  font-size: 18px;
  cursor: pointer;
}

#changing-text::after {
  content: "|";
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}
@media (max-width: 768px) {

  /* HERO SECTION */
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 80px 20px 40px;
  }

  /* CONTENT POSITION FIX */
  .hero-content {
    position: relative;   /* 🔥 remove absolute for mobile */
    top: 0;
    left: 0;
    right: 0;
    max-width: 100%;
  }

  /* HEADING */
  .hero-heading {
    font-size: 34px;
    line-height: 1.2;
    white-space: normal; /* allow wrapping */
  }

  /* FORCE LINE BREAK LIKE IMAGE */
  .gradient-text {
    display: block;
    margin-top: 5px;
  }

  /* PARAGRAPH */
  .hero p {
    font-size: 14px;
    margin: 15px 0;
  }

  /* BUTTON */
  .cta-btn {
    font-size: 14px;
    padding: 10px 16px;
    margin: 10px 0;
  }

  /* NAVBAR */
  .navbar {
    padding: 8px 15px;
  }

  .logo-img {
    height: 40px !important;
  }

  .hiring {
    display: none; /* clean mobile */
  }

  /* SIDEBAR FIX */
  .sidebar {
    width: 85%;
    max-width: 280px;
    padding: 60px 20px;
  }

  .menu div {
    font-size: 18px;
  }

  /* SOCIAL BAR HIDE */
  .social-bar {
    display: none;
  }

}
@media (max-width: 1024px) {

  /* HERO FIX */
  .hero {
    padding: 60px 30px;
    height: auto;
    min-height: 100vh;
  }

  /* CONTENT FIX */
  .hero-content {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    max-width: 100%;
  }

  /* HEADING */
  .hero-heading {
    font-size: 48px;
    line-height: 1.2;
    white-space: normal; /* 🔥 IMPORTANT */
  }

  /* GRADIENT LINE */
  .gradient-text {
    display: block;
    margin-top: 5px;
  }

  /* TEXT */
  .hero p {
    font-size: 16px;
    margin-left: 0;
  }

  /* BUTTON */
  .cta-btn {
    font-size: 16px;
    padding: 12px 20px;
    margin-left: 0;
  }

  /* SOCIAL BAR */
  .social-bar {
    right: 20px;
  }

}


.awards-section {
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}

/* HEADING */
.award-heading {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* IMAGE */
.award-img {
  max-height: 400px;
}

/* STATS */
.stats-row h2 {
  color: #431ed8;
  font-size: 42px;
  font-weight: bold;
}

.stats-row p {
  font-size: 14px;
  color: #000000;
}
@media (max-width: 768px) {

  .award-heading {
    font-size: 36px;
    text-align: center;
  }

  .award-img {
    max-height: 250px;
  }

  .stats-row h2 {
    font-size: 28px;
  }

  .stats-row p {
    font-size: 12px;
  }

}
.about-section1 {
  background: #f5f5f5;
}

/* HEADING */
.about-heading1 {
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.about-content1 p {
  color: #555;
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 15px;
  margin-left: 20px;
  margin-right: 20px;
}

/* READ MORE */
.read-more {
  color: rgb(68, 0, 255);
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
  margin-left: 20px;
}
/* SECTION */
.showreel-section {
  overflow: hidden;
}

/* LEFT PANEL */
.left-panel {
  background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
  padding: 80px 60px;
  position: relative;

  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

/* TITLE */
.title1 {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.1;
  padding-left: 20px;
}

/* STATS */
.stats h3 {
  font-size: 48px;
  font-weight: bold;
  padding-left: 20px;
}

.stats p {
  font-size: 14px;
  padding-left: 20px;
}

/* RIGHT PANEL */
.right-panel {
  background: #ffffff;
  padding: 60px;
}

/* VIDEO */
.video-box {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 9;
  margin: auto;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
}

/* ========================= */
/* 📱 MOBILE FIX 🔥 */
/* ========================= */

@media (max-width: 768px) {

  /* REMOVE ANGLE */
  .left-panel {
    clip-path: none;
    padding: 40px 20px;
    text-align: center;
  }

  /* FIX TITLE (important 🔥) */
  .title1 {
    font-size: 32px;
    line-height: 1.2;
    padding-left: 0;
  }

  /* STATS */
  .stats h3 {
    font-size: 24px;
    padding-left: 0;
  }

  .stats p {
    font-size: 13px;
    padding-left: 0;
  }

  /* RIGHT SIDE */
  .right-panel {
    padding: 30px 15px;
    text-align: center;
  }

  /* VIDEO */
  .video-box {
    max-width: 100%;
    margin-top: 20px;
  }

  /* PLAY BUTTON */
  .play-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
.core-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.heading {
  font-size: 28px;
  font-weight: bold;
  background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub {
  color: #888;
  font-size: 14px;
}

/* CENTER DIVIDER */
.divider {
  position: absolute;
  top: 0;
  bottom: 0;   /* 🔥 little spacing top/bottom */
  left: 50%;
  transform: translateX(-50%);
  border-left: 1px solid black;
  width: 1px;
}
/* BOX */
.core-box {
  max-width: 300px;
  margin: auto;
}

/* ICON */
.icon {
  font-size: 40px;
  background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 15px;

  transition: 0.3s;
}

/* HOVER ANIMATION */
.core-box:hover .icon {
  transform: scale(1.2) rotate(5deg);
}

/* TEXT */
.core-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.core-box p {
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {

  .core-section {
    padding: 50px 15px;
  }

  .heading {
    font-size: 22px;
  }

  .divider {
    display: none; /* hide center line */
  }

}
@media (max-width: 1024px) {

  .core-section {
    padding: 60px 20px;
  }

  .heading {
    font-size: 24px;
  }

  .core-box {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .icon {
    font-size: 32px;
  }

  .core-box h5 {
    font-size: 16px;
  }

  .core-box p {
    font-size: 13px;
  }

  
}

.services-section {
  padding: 60px 20px;
  background: #f8f8f8;
}

/* TITLE */
.title {
  color: #1f32ff;
  font-weight: bold;
}

.subtitle {
  color: #777;
  margin-bottom: 30px;
}

/* WRAPPER */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

/* TRACK */
.carousel-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

/* SMOOTH LOOP */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* PAUSE */
.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

/* BOX */
.service-box {
  min-width: 140px;
  text-align: center;
}

.service-box i {
  font-size: 36px;
  background: linear-gradient(90deg, #0055ff, #64728e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.service-box p {
  font-size: 14px;
  margin-top: 8px;
}

.social-icons-right {
  display: flex;
  flex-direction: column; /* 🔥 vertical */
  gap: 10px; /* spacing between icons */
}

/* SECTION */
.about-section {
  padding: 80px 20px;
    background: linear-gradient(90deg, #0055ff, #64728e);
  
  color: #fff;
}

/* IMAGE */
.about-img {
  border-radius: 20px;
  max-width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: 0.4s;
}

.about-img:hover {
  transform: scale(1.05);
}

/* CONTENT */
.about-content {
  padding-left: 30px;
}

/* TITLE */
.about-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* TEXT */
.about-text {
  font-size: 16px;
  color: #cbd5f5;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 15px;
  background: linear-gradient(45deg, #6366f1, #4f46e5);
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-3px);
}

/* TABLET */
@media (max-width: 992px) {

  .about-section {
    text-align: center;
  }

  .about-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .about-title {
    font-size: 28px;
  }
}

/* MOBILE */
@media (max-width: 576px) {

  .about-title {
    font-size: 22px;
  }

  .about-text {
    font-size: 14px;
  }

  .about-btn {
    width: 100%;
    max-width: 220px;
  }
}

/* HIDE TEXT INITIALLY */
.card-more-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.4s ease;
  font-size: 14px;
  margin-top: 10px;
  color: #555;
}

/* WHEN ACTIVE */
.press-card.active .card-more-text {
  max-height: 200px;
  opacity: 1;
}

.press-card img {
  display: block;
  margin: 0 auto;
}

/* BUTTON STYLE */
.read-more-btn1 {
  display: inline-block;
  margin-top: 10px;
  color: #6366f1;
  cursor: pointer;
  text-decoration: none;
}


.arrow.left { left: 0; }
.arrow.right { right: 0; }
/* DOTS */
.dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  display: inline-block;
  margin: 0 4px;
  border-radius: 50%;
}
.dots .active {
  background: #555;
}

/* VIEW ALL */
.view-all {
  color: #000;
  text-decoration: none;
}

.view-all::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #000;
  margin: 5px auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .services-scroll {
    width: 100%;
    gap: 30px;
  }

  .service-icon {
    font-size: 28px;
  }
}
/* CTA SECTION */
.cta-section {
  background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
  padding: 40px 20px;
}

.cta-btn {
  margin-top: 15px;
  padding: 10px 25px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  letter-spacing: 2px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #fff;
  color: #000;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .service-icon {
    font-size: 30px;
  }

  .service-box p {
    font-size: 12px;
  }
}




/* TITLE */
.title {
  color: #2f2fff;
  font-weight: 700;
}

/* CLIENT IMAGE */
.client-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid rgb(0, 21, 255);
  object-fit: cover;
  margin-bottom: 15px;
}

/* NAME */
.client-name {
  font-weight: 600;
}

.client-role {
  font-size: 14px;
  color: #666;
}

/* QUOTES */
.quote {
  font-size: 40px;
  color: rgb(60, 0, 255);
}

.quote.right {
  text-align: right;
}

/* TEXT */
.testimonial-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/*dots*/
.dots-wrapper {
  overflow: hidden;
  width: 120px;   /* 🔥 small window like video */
  margin: 20px auto;
}

.dots-track {
  display: flex;
  gap: 10px;
  transition: transform 0.5s ease;
}

.dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot.active {
  background: #000;
  transform: scale(1.5);
}

/* RIGHT SIDE */
.clients-title {
  color: #2f47ff;
  font-weight: 600;
}

/* GRID */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  justify-items: center;
  margin-top: 20px;
}

.clients-grid img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  transition: 0.3s;
}

.clients-grid img:hover {
  transform: scale(1.1);
}

/* BUTTON */
.video-btn {
  background: rgb(51, 0, 255);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.video-btn:hover {
  background: #000;
}

/* MOBILE */
@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-img {
    width: 100px;
    height: 100px;
  }

  .testimonial-text {
    font-size: 13px;
  }
}

.press-section {
  background: #f5f5f5;
}

/* TITLE */
.press-title {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}

/* CARD */
.press-card {
  max-width: 600px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* HOVER EFFECT */
.press-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.press-card img {
  margin-bottom: 15px;
}

/* TEXT */
.press-card h4 {
  font-size: 20px;
  color: #555;
}

.press-card a {
  color: rgb(17, 0, 255);
  font-size: 14px;
  text-decoration: none;
}

/* DOTS */
.carousel-indicators [data-bs-target] {
  background-color: #ccc;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}


.carousel-indicators .active {
  background-color: rgb(25, 0, 255);
}

/* ARROWS */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}
.press-cta {
  background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: white;
  padding: 40px 10px;
}

.press-cta p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* BUTTON */
.cta-btn {
  padding: 12px 30px;
  border: 1px solid white;
  background: transparent;
  color: white;
  letter-spacing: 2px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: white;
  color: black;
}


/* MOBILE */
@media (max-width: 768px) {
  .press-card {
    padding: 20px;
  }

  .press-title {
    font-size: 24px;
  }

  .press-card h4 {
    font-size: 16px;
  }
  .press-cta p {
    font-size: 14px;
  }
}

.ai-section {
  background: #f5f5f5;
}

.ai-title {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  
}

.ai-sub {
  color: #777;
  margin-bottom: 40px;
  text-align: center;
}

/* WRAPPER */
.ai-wrapper {
  position: relative;
  padding: 0 50px; /* 🔥 arrows ke liye space */
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
margin-left: 20px;
margin-right: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}


/* CAROUSEL */
.ai-carousel {
  overflow: hidden;
}

/* TRACK */
.ai-track {
  display: flex;
  gap: 20px;
  transition: 0.4s ease;
}


/* CARD */
.ai-card {
  flex: 0 0 calc(25% - 15px);
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  text-align: left;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

/* HOVER */
.ai-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: #654dff;
}

/* ICON */
.ai-card:hover .icon {
  background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
}

.icon1 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: 0.3s;
}

.icon1 i {
  font-size: 22px;
}

/* TEXT */
.ai-card h5 {
  color: rgb(60, 0, 255);
  font-weight: 600;
}

.ai-card p {
  color: #666;
  font-size: 14px;
}

/* ARROWS */
/* .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
} */

.left { left: -10px; }
.right { right: -10px; }

/* MOBILE */
@media (max-width: 768px) {
  .ai-card {
    flex: 0 0 80%; /* 1 card mobile */
  }
}

.ai-track {
  display: flex;
  transition: transform 0.4s ease;
}


/* TABLET */
@media (max-width: 992px) {
  .ai-card {
    min-width: 50%;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .ai-card {
    min-width: 100%;
  }
}
.section-title {
      text-align: center;
      margin-top: 40px;
    }

.section-title h2 {
      color: #2d5eff;
      font-weight: 600;
    }



    .spacer {
      height: 60px;
    }

.card-custom img {
  width: 100%;        /* full width */
  height: 450px;      /* fixed height */
  border-radius: 10px;
}

.section-title {
  color: #422dff;
  font-weight: 700;
}

/* ICON GRID */
.vertical-box {
  margin-bottom: 35px;
  transition: 0.3s;
}

.vertical-box i {
  font-size: 40px;
  color: #001aff;
  display: block;
  margin-bottom: 10px;
}

.vertical-box p {
  font-size: 14px;
  color: #555;
}

/* HOVER EFFECT */
.vertical-box:hover {
  transform: translateY(-5px);
}

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
  padding: 40px 20px;
}

.cta-strip p {
  font-size: 16px;
  margin-bottom: 15px;
}

.cta-btn {
  padding: 10px 25px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  letter-spacing: 2px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #fff;
  color: #000;
}    

/* TEXT */
.text-block p {
  color: #666;
  margin-top: 10px;
  font-size: 15px;
}

/* LIST */
.work-points {
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
}

.work-points li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* LINK */
.link {
  display: inline-block;
  margin-top: 15px;
  color: #6366f1;
  text-decoration: none;
  font-weight: 500;
}

.link:hover {
  text-decoration: underline;
}


.main-title {
  color: #542eff;
  font-weight: 700;
}

.desc {
  color: #666;
  max-width: 700px;
  margin: 10px auto;
  text-align: left;     /* text left aligned */


}

.read-more-btn {
  color: blue;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  margin-top: 5px;
}

.sub-title {
  color: #0026ff;
  font-weight: 600;
}

.sub-desc {
  color: #777;
}

/* CAROUSEL */
.carousel-box {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 60px;
  animation: scroll 18s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* CARD */
.value-card {
  min-width: 180px;
  text-align: center;
}

.value-card i {
  font-size: 40px;
  color: #0004ff;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: #555;
}

/* HOVER PAUSE */
.carousel-box:hover .carousel-track {
  animation-play-state: paused;
}

.connect-section {
  background: #f5f6fa url('../images/smm.png') no-repeat center;
  background-size: cover;   /* 🔥 image full dikhegi, stretch nahi hogi */
}

/* TITLE */
.connect-title {
  color: #362fff;
  font-weight: 700;
  margin-bottom: 15px;
}

/* LIST */
.connect-list {
  padding-left: 18px;
}

.connect-list li {
  margin-bottom: 10px;
  color: #444;
  font-size: 15px;
}

/* BUTTON BASE */
.connect-btn {
  padding: 10px 18px;
  font-size: 14px;
  color: #fff;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  text-decoration: none;
}

/* LINKEDIN */
.linkedin-btn {
  background: #0a66c2;
}

.linkedin-btn:hover {
  background: #084c94;
}

/* INSTAGRAM GRADIENT */
.insta-btn {
  background: linear-gradient(45deg, #4a00e0, #8e2de2);
}

.insta-btn:hover {
  opacity: 0.9;
}


/* MOBILE */
@media (max-width: 768px) {
  .connect-title {
    text-align: center;
  }

  .connect-list {
    text-align: left;
  }

  .connect-btn {
    width: 100%;
    justify-content: center;
  }
}

/* SECTION */
.verified-section {
  background: #f4f4f4;
}

/* TITLE */
.verified-title {
  display: inline-block;
  padding: 5px 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #2515d7;
  font-size: 30px;
}

/* LOGO BOX */
.logo-box {
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

/* IMAGE */
.logo-box img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

/* HOVER EFFECT 🔥 */
.logo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.footer {
  background: linear-gradient(rgba(10,10,30,0.9), rgba(10,10,30,0.95)),
              url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df');
  background-size: cover;
  color: #ddd;
  padding: 60px 0 20px;
}

/* Headings */
.footer h5 {
  color: #fff;
  margin-bottom: 20px;
}

/* Links */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #342dff;
}

/* Form */
.footer-form input,
.footer-form select {
  margin-bottom: 10px;
  border-radius: 5px;
  border: none;
  padding: 10px;
  width: 100%;
}

.footer-btn {
  background: #2d42ff;
  border: none;
  padding: 10px;
  color: #fff;
  width: 100%;
  border-radius: 5px;
  transition: 0.3s;
}

.footer-btn:hover {
  background: #1900ff;
}
.social-icons {
  display: flex;
  flex-direction: row;        /* ensure horizontal */
  justify-content: flex-start; /* left align (use center if needed) */
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;         /* prevent wrapping */
}

/* ICON STYLE */
.social-icons a {
  width: 40px;
  height: 40px;

  display: inline-flex;      /* better alignment */
  align-items: center;
  justify-content: center;

  background: #111;
  color: #fff;
  border-radius: 50%;

  font-size: 14px;
  transition: 0.3s;
}

/* HOVER */
.social-icons a:hover {
  background: #6366f1;
  transform: translateY(-3px);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  text-align: center;
}

/* Mobile Responsive */
@media(max-width:768px) {
  .footer {
    text-align: center;
  }

  .social-icons a {
    margin: 5px;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}
.bg-color1{
  background: #f5f5f5;
}
section {
  padding: 60px 0;
}
.section-title {
  font-weight: 700;
  margin-bottom: 20px;
}
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.process-step {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}
.process-step:hover {
  transform: scale(1.05);
}
.process-step i {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 10px;
}
.tools i {
  font-size: 3rem;
  margin: 15px;
  color: #0d6efd;
}
.benefit {
  text-align: center;
  padding: 20px;
}
.benefit i {
  font-size: 2rem;
  color: #198754;
  margin-bottom: 10px;
}

/* What is UI/UX Design Section */
.uiux-section {
  padding: 60px 0;
}

.uiux-section h3 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #0d6efd;
}

.uiux-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.uiux-section img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 50%;
  width: 50%;
}

.uiux-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.ux-tools-section {
  padding: 60px 0;
}

.ux-tools-wrapper {
  margin-top: 20px;
  gap: 50px; /* control spacing exactly */
}

.ux-tool-item {
  text-align: center;
  transition: 0.3s ease;
}

.ux-tool-item i {
  font-size: 32px;
  color: #6366f1;
  margin-bottom: 6px;
}

.ux-tool-item p {
  font-size: 14px;
  color: #000000;
}

.ux-tool-item:hover {
  transform: translateY(-5px);
}

section { 
  padding: 60px 0; 
}

/* SECTION */
.seo-hero-section {
  min-height: 90vh;
  padding: 80px 0;
 background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.seo-hero-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  filter: blur(120px);
  top: -80px;
  right: -80px;
  opacity: 0.4;
}

/* TEXT */
.seo-hero-text h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
}

.seo-hero-text p {
  font-size: 18px;
  margin-top: 15px;
  color: #cbd5f5;
}


/* IMAGE */
.seo-hero-img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: 0.4s;
}

.seo-hero-img:hover {
  transform: scale(1.05);
}

.benefit-card {
  background: #fff;
  padding: 25px 15px;
  border-radius: 12px;
  transition: 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.benefit-card i {
  color: #4f46e5;
  margin-bottom: 10px;
}

.benefit-card h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.benefit-card p {
  font-size: 14px;
  color: #666;
}

/* Hover effect 🔥 */
.benefit-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #fff;
}

.benefit-card:hover p {
  color: #e0f2fe;
}

.benefit-card:hover i {
  color: #fff;
}


/* RESPONSIVE 🔥 */
@media (max-width:992px) {

  .seo-hero-section {
    text-align: center;
    padding: 60px 20px;
  }

  .seo-hero-text h1 {
    font-size: 28px;
  }

  .seo-hero-text p {
    font-size: 15px;
  }



  .seo-hero-img {
    margin-top: 30px;
    max-width: 85%;
  }
}

/* MOBILE */
@media (max-width:576px) {

  .seo-btn-primary,
  .seo-btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

.intro h2{
    color: #172ebf;
    font-size: 35px;
}


.services h2{
    color: #172ebf;
    font-size: 35px;
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.card:hover { 
  transform: translateY(-8px); 
}

.process h2{
  color: #172ebf;
    font-size: 35px;
}
.step i{
  color: #0055ff;
  font-size: 30px;

}
/* Timeline */
.timeline {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.tools h2{
  color: #172ebf;
    font-size: 35px;
}
/* Tools Section */
.tools .tool-item img {
  width: 80px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}
.tools .tool-item:hover img {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.tools .tool-item p {
  margin-top: 10px;
  font-weight: 500;
}

.stats h2{
  color: #172ebf;
    font-size: 35px;
}
.benefits h2{
  color: #172ebf;
    font-size: 35px;
}
/* Stats Section */
.staters .stat-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.staters .stat-box:hover {
  transform: translateY(-5px);
}
.staters p {
  margin-top: 10px;
  font-size: 1rem;
  color: #000000;
}


.case-study h2{
  color: #172ebf;
    font-size: 35px;
}


/* SECTION */
.smm-hero {
  min-height: 90vh;
  padding: 80px 0;
 background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.smm-hero::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #484dec;
  filter: blur(120px);
  top: -80px;
  left: -80px;
  opacity: 0.4;
}

/* TEXT */
.smm-hero .hero-text h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.smm-hero .hero-text p {
  font-size: 18px;
  margin-top: 15px;
  color: #cbd5f5;
}


/* IMAGE */
.smm-img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: 0.4s;
}

.smm-img:hover {
  transform: scale(1.05);
}

/* BUTTONS */
.smm-btn-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.smm-btn-primary {
 background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.smm-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.smm-btn-outline {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.smm-btn-outline:hover {
  background: #fff;
  color: #000;
}

/* TABLET */
@media (max-width:992px) {

  .smm-hero {
    text-align: center;
    padding: 60px 20px;
  }

  .smm-hero .hero-text h1 {
    font-size: 28px;
  }

  .smm-hero .hero-text p {
    font-size: 15px;
  }

  .smm-btn-wrap {
    justify-content: center;
  }

  .smm-img {
    margin-bottom: 20px;
    max-width: 85%;
  }
}

/* MOBILE */
@media (max-width:576px) {

  .smm-btn-wrap {
    flex-direction: column;
    align-items: center;
  }

  .smm-btn-primary,
  .smm-btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* Services */
.service-card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.services2 h2{
  color: blue;
}

.platforms h2{
    color: blue;
} 
.socialicons i {
  transition: transform 0.3s ease;
  cursor: pointer;
  padding: 5%;
  font-size:3rem;
}

.socialicons i:hover {
  transform: scale(1.2);
}

/* Brand Colors */
.facebook { color: #1877F2; }   /* Facebook Blue */
.instagram { 
  color: #E1306C;              /* Instagram Pink */
}
.twitter { color: #1DA1F2; }   /* Twitter Blue */
.linkedin { color: #0A66C2; }  /* LinkedIn Blue */
.youtube { color: #FF0000; }   /* YouTube Red */


.process-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.process-card i {
  color: #0400ff; /* Accent color */
}
.theme-text {
  color: #222dff;
  
}

/* SECTION */
.email-hero {
  min-height: 90vh;
  padding: 80px 0;
 background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.email-hero::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #e6dfd3;
  filter: blur(120px);
  top: -80px;
  right: -80px;
  opacity: 0.4;
}

/* TEXT */
.email-text h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: white;
}

.email-text p {
  font-size: 18px;
  margin-top: 15px;
  color: #cbd5f5;
}


/* IMAGE */
.email-img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: 0.4s;
}

.email-img:hover {
  transform: scale(1.05);
}

/* BUTTON */
.email-btn-wrap {
  display: flex;
  flex-wrap: wrap;
}

.email-btn-primary {
 background: linear-gradient(90deg, rgb(0, 85, 255), rgb(209, 211, 214));
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.email-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245,158,11,0.5);
}

/* TABLET */
@media (max-width:992px) {
  .email-hero {
    text-align: center;
    padding: 60px 20px;
  }

  .email-text h1 {
    font-size: 28px;
  }

  .email-text p {
    font-size: 15px;
  }

  .email-btn-wrap {
    justify-content: center;
  }

  .email-img {
    margin-bottom: 20px;
    max-width: 85%;
  }
}

/* MOBILE */
@media (max-width:576px) {
  .email-btn-primary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* SECTION SPACING */
.section-padding {
  padding: 80px 0;
}

/* TITLE */
.theme-text {
  font-size: 32px;
  font-weight: 700;
}

/* CARD DESIGN */
.card-custom {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
}

/* ICON */
.card-custom .icon {
  font-size: 40px;
  color: #6366f1;
  margin-bottom: 15px;
}

/* TEXT */
.card-custom h5 {
  font-size: 18px;
  font-weight: 600;
}

/* HOVER EFFECT */
.card-custom:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ========================= */
/* TABLET (<=992px) */
/* ========================= */
@media (max-width: 992px) {

  .section-padding {
    padding: 60px 20px;
  }

  .theme-text {
    font-size: 26px;
  }

  .card-custom {
    padding: 25px 15px;
  }

  .card-custom .icon {
    font-size: 32px;
  }

  .card-custom h5 {
    font-size: 16px;
  }
}

/* ========================= */
/* MOBILE (<=576px) */
/* ========================= */
@media (max-width: 576px) {

  .section-padding {
    padding: 50px 15px;
  }

  .theme-text {
    font-size: 22px;
  }

  /* 1 card per row feel */
  .card-custom {
    padding: 20px 15px;
  }

  .card-custom .icon {
    font-size: 28px;
  }

  .card-custom h5 {
    font-size: 15px;
  }

  /* spacing between cards */
  .row.g-4 > div {
    margin-bottom: 10px;
  }
}

/* SECTION */
.section-padding {
  padding: 80px 0;
}

.bg-color1 {
  background: #f8fafc;
}

/* TITLE */
.theme-text {
  font-size: 32px;
  font-weight: 700;
}

/* CARD */
.card-custom {
  background: #fff;
  padding: 20px 15px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  height: 100%;
}

/* HOVER */
.card-custom:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}


/* ========================= */
/* TABLET FIX 🔥 */
/* ========================= */
@media (min-width: 577px) and (max-width: 992px) {

  .card1 {
    justify-content: center;
  }

  /* 3 cards per row */
  .card1 .col-md-2 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }

  /* spacing */
  .card1 .card-custom {
    margin-bottom: 10px;
  }
}

/* ========================= */
/* MOBILE 🔥 */
/* ========================= */
@media (max-width: 576px) {

  .section-padding {
    padding: 50px 15px;
  }

  .theme-text {
    font-size: 22px;
  }

  /* horizontal scroll */
  .card1 {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
  }

  .card1::-webkit-scrollbar {
    height: 6px;
  }

  .card1::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
  }

  .card1 .col-md-2 {
    flex: 0 0 70%;
    max-width: 70%;
  }
}

h2 {
  font-weight: 700;
}


/* CARDS */
.card-custom {
  border: none;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* ICON */
.icon-box {
  font-size: 35px;
  color: #3f22ff;
  margin-bottom: 15px;
}

/* TWO COLUMN */
.img-fluid {
  max-width: 100%;
}

/* CTA */
.cta {
  background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta button {
  background: white;
  color: #2231ff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.cta button:hover {
  background: black;
  color: white;
}

/* TOOLS */
.tool-logo {
  max-width: 120px;
  transition: 0.3s;
}

.tool-logo:hover {
  transform: scale(1.1);
}

.section-padding {
  padding: 80px 0;
}
h2 {
  font-weight: 700;
}

/* SECTION */
.influencer-hero {
  min-height: 90vh;
  padding: 80px 0;
 background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.influencer-hero::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #d0c9ca;
  filter: blur(120px);
  top: -80px;
  left: -80px;
  opacity: 0.4;
}

/* TEXT */
.influencer-text h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.influencer-text p {
  font-size: 18px;
  margin-top: 15px;
  color: #cbd5f5;
}



/* IMAGE */
.influencer-img {
  max-width: 70%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: 0.4s;
}

.influencer-img:hover {
  transform: scale(1.05);
}

/* BUTTON */
.influencer-btn-wrap {
  display: flex;
  flex-wrap: wrap;
}

.influencer-btn {
 background: linear-gradient(90deg, rgb(0, 85, 255), rgb(161, 173, 196));
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.influencer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(244,63,94,0.5);
}

/* TABLET */
@media (max-width:992px) {

  .influencer-hero {
    text-align: center;
    padding: 60px 20px;
  }

  .influencer-text h1 {
    font-size: 28px;
  }

  .influencer-text p {
    font-size: 15px;
  }

  .influencer-btn-wrap {
    justify-content: center;
  }

  .influencer-img {
    margin-bottom: 20px;
    max-width: 80%;
  }
}

/* MOBILE */
@media (max-width:576px) {

  .influencer-btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}

/* CARDS */
.card-custom {
  border: none;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}
.card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
/* Process Cards */
.process-card {
  background: #fff;
  padding: 25px 15px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

/* Icons */
.process-card i {
  font-size: 30px;
  color: #3122ff;
  margin-bottom: 10px;
}

/* Hover Effect */
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Text */
.process-card h6 {
  font-weight: 600;
  margin-top: 10px;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .process-card {
    width: 90%;
    margin: auto;
  }
}
/* ICON */
.icon {
  font-size: 35px;
  color: #0051ff;
  margin-bottom: 15px;
}

/* PLATFORMS */
.platform i {
  font-size: 40px;
  margin: 15px;
  transition: 0.3s;
}
.platform i:hover {
  transform: scale(1.2);
  color: #000dff;
}
/* STATS */

.stat-number {
  font-size: 40px;
  font-weight: bold;
  color: #6a11cb;
}


/* CTA */
.cta {
  background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: white;
  text-align: center;
  padding: 70px 20px;
}
.cta button {
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  background: white;
  color: #6a11cb;
  font-weight: bold;
}
.cta button:hover {
  background: black;
  color: white;
}

.section-padding {
  padding: 80px 0;
}
h2 {
  font-weight: 700;
}

/* SECTION */
.content-hero {
  min-height: 90vh;
  padding: 80px 0;
 background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.content-hero::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #c8c1d8;
  filter: blur(120px);
  top: -80px;
  right: -80px;
  opacity: 0.4;
}

/* TEXT */
.content-text h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.content-text p {
  font-size: 18px;
  margin-top: 15px;
  color: #cbd5f5;
}

/* IMAGE */
.content-img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: 0.4s;
}

.content-img:hover {
  transform: scale(1.05);
}

/* BUTTON */
.content-btn-wrap {
  display: flex;
  flex-wrap: wrap;
}

.content-btn {
  background: linear-gradient(45deg, #2a26a1, #a78bfa);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.content-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139,92,246,0.5);
}

/* TABLET */
@media (max-width:992px) {

  .content-hero {
    text-align: center;
    padding: 60px 20px;
  }

  .content-text h1 {
    font-size: 28px;
  }

  .content-text p {
    font-size: 15px;
  }

  .content-btn-wrap {
    justify-content: center;
  }

  .content-img {
    margin-bottom: 20px;
    max-width: 80%;
  }
}

/* MOBILE */
@media (max-width:576px) {

  .content-btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}

/* CARDS */
.card-custom {
  border: none;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}
.card1{
  margin-left: 15%;
}
.card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* ICON */
.icon {
  font-size: 35px;
  color: #8e2de2;
  margin-bottom: 15px;
}

/* TOOLS */
.tool img {
  max-width: 200px;
  margin: 15px;
  transition: 0.3s;
}
.tool img:hover {
  transform: scale(1.1);
}


.section-padding {
  padding: 80px 0;
}
h2 {
  font-weight: 700;
}
/* SECTION */
.ppc-hero {
  min-height: 90vh;
  padding: 80px 0;
 background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.ppc-hero::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #2116f9;
  filter: blur(120px);
  top: -80px;
  left: -80px;
  opacity: 0.4;
}

/* TEXT */
.ppc-text h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.ppc-text p {
  font-size: 18px;
  margin-top: 15px;
  color: #cbd5f5;
}


/* IMAGE */
.ppc-img {
  max-width: 70%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: 0.4s;
}

.ppc-img:hover {
  transform: scale(1.05);
}

/* BUTTON */
.ppc-btn-wrap {
  display: flex;
  flex-wrap: wrap;
}

.ppc-btn {
 background: linear-gradient(90deg, rgb(0, 85, 255), rgb(151, 162, 184));
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.ppc-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(249,115,22,0.5);
}

/* TABLET */
@media (max-width:992px) {

  .ppc-hero {
    text-align: center;
    padding: 60px 20px;
  }

  .ppc-text h1 {
    font-size: 28px;
  }

  .ppc-text p {
    font-size: 15px;
  }

  .ppc-btn-wrap {
    justify-content: center;
  }

  .ppc-img {
    margin-bottom: 20px;
    max-width: 80%;
  }
}

/* MOBILE */
@media (max-width:576px) {

  .ppc-btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}

/* SECTION */
.webdev-hero {
  min-height: 90vh;
  padding: 80px 0;
 background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.webdev-hero::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #3b82f6;
  filter: blur(120px);
  top: -80px;
  right: -80px;
  opacity: 0.4;
}

/* TEXT */
.webdev-text h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.webdev-text p {
  font-size: 18px;
  margin-top: 15px;
  color: #cbd5f5;
}



/* IMAGE */
.webdev-img {
  max-width: 70%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: 0.4s;
}

.webdev-img:hover {
  transform: scale(1.05);
}

/* BUTTON */
.webdev-btn-wrap {
  display: flex;
  flex-wrap: wrap;
}

.webdev-btn {
  background: linear-gradient(45deg, #3b82f6, #60a5fa);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.webdev-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(59,130,246,0.5);
}

/* TABLET */
@media (max-width:992px) {

  .webdev-hero {
    text-align: center;
    padding: 60px 20px;
  }

  .webdev-text h1 {
    font-size: 28px;
  }

  .webdev-text p {
    font-size: 15px;
  }

  .webdev-btn-wrap {
    justify-content: center;
  }

  .webdev-img {
    margin-bottom: 20px;
    max-width: 80%;
  }
}

/* MOBILE */
@media (max-width:576px) {

  .webdev-btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}

/* SECTION */
.process-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.process-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* ROW */
.process-row {
  justify-content: center;
  gap: 10px;
}

/* CARD */
.process-card {
  background: #fff;
  padding: 25px 15px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ICON */
.process-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

/* TEXT */
.process-card h6 {
  font-size: 15px;
  font-weight: 600;
}

/* HOVER */
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* DESKTOP LINE CONNECTOR 🔥 */
@media (min-width: 992px) {
  .process-col {
    position: relative;
  }

  .process-col::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 20px;
    height: 2px;
    background: #3b82f6;
  }

  .process-col:last-child::after {
    display: none;
  }
}

/* TABLET */
@media (max-width: 992px) {

  .process-title {
    font-size: 26px;
  }

  .process-card {
    padding: 20px;
  }

  .process-icon {
    font-size: 32px;
  }
}

/* MOBILE 🔥 */
@media (max-width: 576px) {

  .process-section {
    padding: 50px 15px;
  }

  .process-title {
    font-size: 22px;
  }

  /* horizontal scroll */
  .process-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
  }

  .process-col {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .process-row::-webkit-scrollbar {
    height: 6px;
  }

  .process-row::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
  }
}

/* ========================= */
/* MOBILE FIX (NO SCROLL) 🔥 */
/* ========================= */
@media (max-width: 576px) {

  .process-section {
    padding: 50px 15px;
  }

  .process-title {
    font-size: 22px;
  }

  /* NORMAL GRID (no scroll) */
  .process-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* 2 cards per row */
  .process-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 5px;
  }

  /* CARD */
  .process-card {
    padding: 18px 10px;
    border-radius: 12px;
  }

  .process-icon {
    font-size: 28px;
  }

  .process-card h6 {
    font-size: 13px;
  }
}

/* ICON BASE */
.tech-section .icon-box {
  font-size: 45px;
  margin-bottom: 10px;
  display: inline-block;
  transition: 0.3s;
}

/* TEXT */
.tech-section p {
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
}

/* COLORS (each icon different 🔥) */
.tech-section .bi-filetype-html {
  color: #e34c26;
}

.tech-section .bi-filetype-css {
  color: #264de4;
}

.tech-section .bi-filetype-js {
  color: #f7df1e;
}

.tech-section .bi-bootstrap {
  color: #7952b3;
}

.tech-section .bi-wordpress {
  color: #21759b;
}

/* HOVER EFFECT 🔥 */
.tech-section .icon-box:hover {
  transform: scale(1.2);
}

/* CARD FEEL */
.tech-section .col {
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.tech-section .col:hover {
  background: #f1f5f9;
}



/* CARDS */
.card-custom {
  border: none;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}
.card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* ICON */
.icon {
  font-size: 35px;
  color: #0800ff;
  margin-bottom: 15px;
}

/* PLATFORM ICONS */
.platform i {
  font-size: 40px;
  margin: 15px;
  transition: 0.3s;
}
.platform i:hover {
  transform: scale(1.2);
  color: #0004ff;
}


/* Fade Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Glass */
.glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius:20px;
}

/* Timeline */
.timeline {display:flex; overflow-x:auto; gap:20px;}
.timeline-step {
    min-width:200px;
    text-align:center;
}

/* Tools */
.tool img {filter: grayscale(100%); transition:0.3s;}
.tool img:hover {filter: grayscale(0); transform:scale(1.1);}

/* Counter */
.counter {font-size:2rem;font-weight:bold;}

/* Sticky CTA */
.sticky-cta {
    position:fixed; bottom:20px; right:20px;
    background:#6366f1; padding:15px 25px;
    border-radius:50px;
    animation:pulse 2s infinite;
}

/* APPROACH SECTION CUSTOM */
.approach-section-custom {
  padding: 80px 0;
  background: #f9fbfd;
}

.approach-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.approach-subtitle {
  color: #777;
  max-width: 600px;
  margin: 0 auto;
  font-size: 20px;
}

/* CARDS */
.approach-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.approach-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.approach-card p {
  font-size: 20px;
  color: #666;
}

/* HOVER EFFECT */
.approach-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .approach-title {
    font-size: 28px;
  }
}
/* UVP SECTION CUSTOM */
.uvp-section-custom {
  padding: 80px 0;
 background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
}

.uvp-title {
  font-size: 36px;
  font-weight: 700;
}

.uvp-subtitle {
  max-width: 600px;
  margin: 10px auto 0;
  color: #ccc;
  font-size: 20px;
}

/* GLASS CARD */
.uvp-card {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* TITLE */
.uvp-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* DESCRIPTION */
.uvp-card p {
  font-size: 20px;
  color: #ddd;
}

/* HOVER EFFECT */
.uvp-card:hover {
  transform: translateY(-10px) scale(1.02);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* GLOW EFFECT */
.uvp-card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.405), transparent);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.5s;
}

.uvp-card:hover::before {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .uvp-title {
    font-size: 28px;
  }
}

/* PROCESS SECTION CUSTOM */
.process-section-custom {
  padding: 80px 0;
  background: #f4f7fb;
}

.process-title {
  font-size: 36px;
  font-weight: 700;
}

.process-subtitle {
  color: #777;
  max-width: 600px;
  margin: 10px auto 0;
}

/* TIMELINE */
.process-timeline {
  position: relative;
  margin-top: 50px;
  padding-left: 30px;
}

/* vertical line */
.process-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  width: 3px;
  height: 100%;
  background: #007bff;
}

/* STEP */
.process-step1 {
  position: relative;
  margin-bottom: 40px;
}

/* DOT */
.process-step1::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: #007bff;
  border-radius: 50%;
  border: 3px solid #fff;
}

/* CARD */
.process-content {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.process-content h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-content p {
  font-size: 16px;
  color: #666;
}

/* HOVER EFFECT */
.process-content:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .process-title {
    font-size: 28px;
  }

  .process-timeline {
    padding-left: 20px;
  }
}

/* SECTION */
.sem-hero {
  min-height: 90vh;
  padding: 80px 0;
  background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.sem-hero::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #0b1ff5;
  filter: blur(120px);
  top: -50px;
  left: -50px;
  opacity: 0.4;
}

/* TEXT */
.sem-text h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.sem-text p {
  font-size: 18px;
  margin-top: 15px;
  color: #d1d5db;
}



/* IMAGE */
.sem-img {
  max-width: 100%;
  transition: 0.4s;
}

.sem-img:hover {
  transform: scale(1.05);
}

/* BUTTON WRAP */
.sem-btn-wrap {
  display: flex;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.sem-btn-primary {
  background: linear-gradient(90deg, rgb(34, 0, 255), rgb(139, 149, 169));
  color: #000;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.sem-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245,158,11,0.5);
}

/* OUTLINE BUTTON */
.sem-btn-outline {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.sem-btn-outline:hover {
  background: #fff;
  color: #000;
}

/* TABLET */
@media (max-width: 992px) {

  .sem-hero {
    text-align: center;
    padding: 60px 20px;
  }

  .sem-text h1 {
    font-size: 28px;
  }

  .sem-text p {
    font-size: 15px;
  }

  .sem-btn-wrap {
    justify-content: center;
  }

  .sem-img {
    margin-bottom: 20px;
    max-width: 80%;
  }
}

/* MOBILE */
@media (max-width: 576px) {

  .sem-btn-primary,
  .sem-btn-outline {
    width: 100%;
    max-width: 260px;
    text-align: center;
    margin-bottom: 10px;
  }
}

/* SECTION */
.sem-process-section {
  padding: 80px 0;
  background: #f9fafb;
}

/* TITLE */
.sem-process-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* ROW */
.sem-process-row {
  justify-content: center;
  gap: 10px;
}

/* CARD */
.sem-card {
  background: #fff;
  padding: 25px 15px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* STEP NUMBER 🔥 */
.sem-card .step {
  position: absolute;
  top: -10px;
  left: 15px;
  font-size: 12px;
  background: #f59e0b;
  color: #000;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

/* ICON */
.sem-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

/* TEXT */
.sem-card h6 {
  font-size: 14px;
  font-weight: 600;
}

/* HOVER */
.sem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* DESKTOP LINE */
@media (min-width: 992px) {
  .sem-col {
    position: relative;
  }

  .sem-col::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 20px;
    height: 2px;
    background: #f59e0b;
  }

  .sem-col:last-child::after {
    display: none;
  }
}

/* TABLET */
@media (max-width: 992px) {

  .sem-process-title {
    font-size: 26px;
  }

  .sem-card {
    padding: 20px;
  }

  .sem-icon {
    font-size: 30px;
  }
}

/* MOBILE (CLEAN GRID 🔥) */
@media (max-width: 576px) {

  .sem-process-section {
    padding: 50px 15px;
  }

  .sem-process-title {
    font-size: 22px;
  }

  .sem-process-row {
    display: flex;
    flex-wrap: wrap;
  }

  /* 2 per row */
  .sem-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 5px;
  }

  .sem-card {
    padding: 18px 10px;
  }

  .sem-icon {
    font-size: 26px;
  }

  .sem-card h6 {
    font-size: 12px;
  }
}

/* ROW FIX */
.sem-platforms-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* DESKTOP: 5 IN ONE ROW 🔥 */
@media (min-width: 992px) {
  .sem-platforms-row .col-lg {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* CARD */
.platform-card {
  background: #fff;
  padding: 25px 15px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ICON */
.platform-card i {
  font-size: 40px;
  margin-bottom: 10px;
  transition: 0.3s;
}

/* TEXT */
.platform-card p {
  font-size: 14px;
  font-weight: 600;
}

/* COLORS */
.bi-google { color: #ea4335; }
.bi-youtube { color: #ff0000; }
.bi-facebook { color: #1877f2; }
.bi-instagram { color: #e1306c; }
.bi-linkedin { color: #0077b5; }

/* HOVER */
.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.platform-card:hover i {
  transform: scale(1.2);
}

/* MOBILE */
@media (max-width:576px){
  .platform-card i {
    font-size: 30px;
  }
  .platform-card p {
    font-size: 12px;
  }
}



/* SERVICES SECTION CUSTOM */
.services-section-custom {
  padding: 80px 0;
  background: #ffffff;
}

.services-title {
  font-size: 36px;
  font-weight: 700;
}

.services-subtitle {
  max-width: 600px;
  margin: 10px auto;
  color: #777;
  font-size: 16px;
}

/* CARD */
.services-card {
  background: #f8f9fc;
  padding: 30px 25px;
  border-radius: 15px;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

/* TITLE */
.services-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.services-card p {
  font-size: 16px;
  color: #666;
}

/* HOVER EFFECT */
.services-card:hover {
  transform: translateY(-10px);
  background: #ffffff;
  border: 1px solid #007bff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* GRADIENT BORDER EFFECT */
.services-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  transform: scaleX(0);
  transition: 0.4s;
}

.services-card:hover::before {
  transform: scaleX(1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-title {
    font-size: 28px;
  }
}
/* TOOLS SECTION CUSTOM */
.tools-section-custom {
  padding: 80px 0;
  background: #f8fafc;
}

.tools-title {
  font-size: 36px;
  font-weight: 700;
}

.tools-subtitle {
  max-width: 600px;
  margin: 10px auto;
  color: #777;
  font-size: 16px;

}

/* CARD FIXED SIZE */
.tools-card {
  padding: 20px;
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);

  height: 150px;              /* same height for all cards */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* IMAGE FIXED SIZE */
.tools-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;       /* image distort nahi hogi */
  margin-bottom: 10px;
  filter: grayscale(100%);
  transition: 0.3s;
}

/* TEXT */
.tools-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
  text-align: center;
}
/* TEXT */
.tools-card p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

/* HOVER EFFECT */
.tools-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.tools-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .tools-title {
    font-size: 28px;
  }
}

/* CTA SECTION */
.cta-section-custom {
  padding: 80px 20px;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
}

/* TITLE */
.cta-title {
  font-size: 36px;
  font-weight: 700;
}

/* SUBTITLE */
.cta-subtitle {
  max-width: 600px;
  margin: 15px auto 30px;
  font-size: 16px;
  color: #eaf6ff;
}

/* BUTTON */
.cta-btn-main {
  background: #fff;
  color: #007bff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

/* BUTTON HOVER */
.cta-btn-main:hover {
  background: #000;
  color: #fff;
  transform: scale(1.05);
}

/* STICKY CTA BUTTON */
.cta-sticky-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.cta-sticky-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-title {
    font-size: 26px;
  }
}

/* HERO SECTION */
.hero-section-custom {
  min-height: 60vh;
  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */
  text-align: center;

  padding: 60px 20px;       /* top-bottom spacing fix */
  background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
}

/* CONTENT WIDTH */
.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

/* TITLE */
.hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* SUBTITLE */
.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ddd;
}

/* BUTTON WRAP */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTONS */
.hero-btn-primary {
  background: #007bff;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  border: none;
}

.hero-btn-outline {
  background: transparent;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  border: 1px solid #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

/* WHAT WE BUILD SECTION */
.build-section-custom {
  padding: 80px 0;

  color: #fff;
}

.build-title {
  font-size: 36px;
  font-weight: 700;
}

.build-subtitle {
  max-width: 600px;
  margin: 10px auto;
  color: #090a0a;
}

/* CARD */
.build-card {
  padding: 30px 25px;
  border-radius: 15px;
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  
}

/* TITLE */
.build-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.build-card p {
  font-size: 16px;
  color: #000000;
}

/* HOVER EFFECT */
.build-card:hover {
  transform: translateY(-10px);
  border: 1px solid #38bdf8;
  box-shadow: 0 10px 30px rgba(56,189,248,0.2);
}

/* GLOW LINE */
.build-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
  transform: scaleX(0);
  transition: 0.4s;
}

.build-card:hover::before {
  transform: scaleX(1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .build-title {
    font-size: 28px;
  }
}


/* SECTION */
.tech-section-custom {
  padding: 80px 0;

}

/* TITLE */
.tech-title {
  font-size: 36px;
  font-weight: 700;
}

/* SUBTITLE */
.tech-subtitle {
  max-width: 600px;
  margin: 10px auto;
  color: #000000;
  font-size: 16px;
}

/* CARD */
.tech-card {
  height: 100px;                 /* same height */
  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* IMAGE */
.tech-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
 
}
/* HOVER */
.tech-card:hover {
  transform: translateY(-8px);
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .tech-title {
    font-size: 28px;
  }
}

/* SECTION */
.process-section-custom {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.process-title {
  font-size: 36px;
  font-weight: 700;
}

/* SUBTITLE */
.process-subtitle {
  max-width: 600px;
  margin: 10px auto;
  color: #000000;
}

/* EQUAL HEIGHT FIX */
.process-section-custom .row > div {
  display: flex;
}

/* CARD */
.process-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* NUMBER */
.process-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  font-weight: 700;
  color: rgba(0,0,0,0.05);
}

/* TITLE */
.process-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.process-card p {
  font-size: 14px;
  color: #000000;
}

/* HOVER */
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(13, 30, 180, 0.742);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .process-title {
    font-size: 28px;
  }
}

/* SECTION */
.features-section-custom {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.features-title {
  font-size: 36px;
  font-weight: 700;
}

/* SUBTITLE */
.features-subtitle {
  max-width: 600px;
  margin: 10px auto;
  color: #000000;
  font-size: 16px;
}

/* FEATURE ITEM */
.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;

  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 15px;

  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* ICON */
.feature-icon {
  font-size: 22px;
}

/* TEXT */
.feature-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

/* HOVER */
.feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .features-title {
    font-size: 28px;
  }
}

/* SECTION */
.workflow-section-custom {
  padding: 80px 20px;
  background: #ffffff;
}

/* TITLE */
.workflow-title {
  font-size: 36px;
  font-weight: 700;
}

/* SUBTITLE */
.workflow-subtitle {
  color: #000000;
  max-width: 600px;
  margin: 10px auto;
}

/* STEPS WRAPPER */
.workflow-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* STEP BOX */
.workflow-step {
  background: #f1f5f9;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
}

/* ARROW */
.workflow-arrow {
  font-size: 20px;
  color: #000000;
}

/* HOVER */
.workflow-step:hover {
  background: #007bff;
  color: #fff;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .workflow-title {
    font-size: 28px;
  }

  .workflow-arrow {
    display: none; /* mobile pe arrows hata do */
  }
}

/* SECTION */
.industries-section-custom {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.industries-title {
  font-size: 36px;
  font-weight: 700;
}

/* SUBTITLE */
.industries-subtitle {
  max-width: 600px;
  margin: 10px auto;
  color: #000000;
  font-size: 17px;
}

/* EQUAL HEIGHT FIX */
.industries-section-custom .row > div {
  display: flex;
}

/* CARD */
.industry-card {
  width: 100%;
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;

  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* HOVER */
.industry-card:hover {
  transform: translateY(-6px);
  background: #007bff;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .industries-title {
    font-size: 28px;
  }
}

/* SECTION */
.results-section-custom {
  padding: 80px 0;
  background: linear-gradient(45deg, #6366f1, #22d3ee);
  color: #fff;
}

/* CARD */
.result-card {
  padding: 20px;
  border-radius: 12px;

  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);

  transition: 0.3s;
}

/* NUMBER */
.result-number {
  font-size: 40px;
  font-weight: 700;
}

/* TEXT */
.result-card p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* HOVER */
.result-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .result-number {
    font-size: 30px;
  }
}

/* SECTION */
.faq-section-custom {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.faq-title {
  font-size: 36px;
  font-weight: 700;
}

/* SUBTITLE */
.faq-subtitle {
  max-width: 600px;
  margin: 10px auto;
  color: #000000;
  font-size: 16px;
}

/* ITEM */
.faq-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}

/* BUTTON */
.faq-btn {
  background: #ffffff;
  font-weight: 600;
  border: none;
  box-shadow: none;
}

/* REMOVE DEFAULT ARROW */
.faq-btn::after {
  filter: invert(1);
}

/* BODY */
.faq-body {
  background: #ffffff;
  color: #555;
  font-size: 14px;
}

/* HOVER */
.faq-btn:hover {
  background: #f1f5f9;
}

/* ACTIVE */
.accordion-button:not(.collapsed) {
  background: #007bff;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-title {
    font-size: 28px;
  }
}

/* SECTION */
.cta-section-custom {
  padding: 80px 20px;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
}

/* TITLE */
.cta-title {
  font-size: 36px;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 15px;
}

/* SUBTITLE */
.cta-subtitle {
  font-size: 16px;
  color: #eaf6ff;
  margin-bottom: 30px;
}

/* BUTTON */
.cta-btn-main {
  background: #fff;
  color: #007bff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.cta-btn-main:hover {
  background: #000;
  color: #fff;
  transform: scale(1.05);
}

/* WHATSAPP BUTTON */
.whatsapp-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 55px;
  height: 55px;

  background: #25D366;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 26px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 999;

  transition: 0.3s;
}

/* HOVER */
.whatsapp-sticky:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* PULSE ANIMATION 🔥 */
.whatsapp-sticky::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-title {
    font-size: 26px;
  }
}


/* HERO SECTION */
.hero-section-custom {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 60px 20px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #fff;
}

/* CONTENT */
.hero-content {
  max-width: 750px;
  margin: 0 auto;
}

/* TITLE */
.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* SUBTITLE */
.hero-subtitle {
  font-size: 18px;
  color: #e0f2fe;
  margin-bottom: 30px;
}

/* BUTTON WRAP */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.hero-btn-primary {
  background: #fff;
  color: #4f46e5;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.hero-btn-primary:hover {
  transform: scale(1.05);
  background: #000;
  color: #fff;
}

/* OUTLINE BUTTON */
.hero-btn-outline {
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  border: 1px solid #fff;
  transition: 0.3s;
}

.hero-btn-outline:hover {
  background: #fff;
  color: #000;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.5s; }
.fade-up:nth-child(3) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

/* SECTION */
.problems-section-custom {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.problems-title {
  font-size: 36px;
  font-weight: 700;
}

/* EQUAL HEIGHT FIX */
.problems-section-custom .row > div {
  display: flex;
}

/* CARD */
.sol-card {
  width: 100%;
  height: 100%;

  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ICON */
.sol-card .icon {
  font-size: 35px;
  margin-bottom: 15px;
}

/* TITLE */
.sol-card b {
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

/* TEXT */
.sol-card p {
  font-size: 14px;
  color: #000000;
  margin: 0;
}

/* HOVER */
.sol-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .problems-title {
    font-size: 28px;
  }
}

/* SECTION */
.solutions-section-custom {
  padding: 80px 0;
  background: #ffffff;
}

/* TITLE */
.solutions-title {
  font-size: 36px;
  font-weight: 700;
}

/* SUBTITLE */
.solutions-subtitle {
  max-width: 600px;
  margin: 10px auto;
  color: #000000;
}

/* EQUAL HEIGHT FIX */
.solutions-section-custom .row > div {
  display: flex;
}

/* CARD */
.solution-card {
  width: 100%;
  height: 100%;

  background: #f8fafc;
  padding: 30px 25px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border: 1px solid transparent;
}

/* ICON */
.solution-icon {
  font-size: 35px;
  margin-bottom: 15px;
}

/* TITLE */
.solution-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* TEXT */
.solution-card p {
  font-size: 16px;
  color: #010101;
}

/* HOVER */
.solution-card:hover {
  transform: translateY(-10px);
  background: #fff;
  border: 1px solid #4f46e5;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .solutions-title {
    font-size: 28px;
  }
}

/* SECTION */
.industry-section-custom {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.industry-title {
  font-size: 36px;
  font-weight: 700;
}

/* SUBTITLE */
.industry-subtitle-p {
  max-width: 600px;
  margin: 10px auto;
  color: #121010;
  font-size: 18px;
}

/* EQUAL HEIGHT FIX */
.industry-section-custom .row > div {
  display: flex;
}

/* CARD */
.industry-card {
  width: 100%;
  height: 100%;

  background: #fff;
  padding: 25px 15px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  box-shadow: 0 5px 15px rgba(0,0,0,0.05);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ICON */
.industry-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

/* TITLE */
.industry-card h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

/* TEXT */
.industry-card p {
  font-size: 16px;
  color: black;
  margin: 0;
}

/* HOVER */
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .industry-title {
    font-size: 28px;
  }
}

/* SECTION */
.strategy-section-custom {
  padding: 80px 0;
  background: #ffffff;
}

/* TITLE */
.strategy-title {
  font-size: 36px;
  font-weight: 700;
}

/* SUBTITLE */
.strategy-subtitle {
  max-width: 600px;
  margin: 10px auto;
  color: #000000;
  font-size: 16px;
}

/* EQUAL HEIGHT FIX */
.strategy-section-custom .row > div {
  display: flex;
}

/* CARD */
.step-card {
  width: 100%;
  height: 100%;

  background: #f8fafc;
  padding: 30px 25px;
  border-radius: 15px;

  position: relative;
  text-align: center;

  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* NUMBER */
.step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  font-weight: 700;
  color: rgba(0,0,0,0.05);
}

/* TITLE */
.step-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.step-card p {
  font-size: 16px;
  color: #000000;
}

/* HOVER */
.step-card:hover {
  transform: translateY(-10px);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: outset;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .strategy-title {
    font-size: 28px;
  }
}

/* SECTION */
.why-section-custom {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.why-title {
  font-size: 36px;
  font-weight: 700;
}

/* SUBTITLE */
.why-subtitle {
  max-width: 600px;
  margin: 10px auto;
  color: #000000;
}

/* EQUAL HEIGHT FIX */
.why-section-custom .row > div {
  display: flex;
}
.textsize{
  font-size: 20px;
}

/* CARD */
.why-card {
  width: 100%;
  height: 100%;

  background: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.why-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

/* TITLE */
.why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.why-card p {
  font-size: 14px;
  color: #000000;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-title {
    font-size: 28px;
  }
}

/* HERO */
.hero-trust-custom {
  min-height: 80vh; /* full screen nahi, thoda compact */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 60px 20px;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #fff;
}

/* CONTENT */
.hero-trust-content {
  max-width: 750px;
  margin: 0 auto;
}

/* TITLE */
.hero-trust-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* SUBTITLE */
.hero-trust-subtitle {
  font-size: 18px;
  color: #dbeafe;
  margin-bottom: 30px;
}

/* BUTTON WRAP */
.hero-trust-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* PRIMARY BTN */
.hero-btn-primary {
  background: #fff;
  color: #2563eb;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.hero-btn-primary:hover {
  transform: scale(1.05);
  background: #000;
  color: #fff;
}

/* OUTLINE BTN */
.hero-btn-outline {
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  border: 1px solid #fff;
  transition: 0.3s;
}

.hero-btn-outline:hover {
  background: #fff;
  color: #000;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.5s; }
.fade-up:nth-child(3) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-trust-title {
    font-size: 28px;
  }

  .hero-trust-subtitle {
    font-size: 16px;
  }
}

/* SECTION */
.industries-section-clean {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.industries-section-clean h2 {
  font-size: 36px;
  font-weight: 700;
}

/* SUBTITLE */
.industries-subtitle {
  max-width: 600px;
  margin: 10px auto;
  color: #777;
}

/* EQUAL HEIGHT FIX */
.industries-section-clean .row > div {
  display: flex;
}

/* CARD */
.card-clean {
  width: 100%;
  height: 100%;
  padding: 30px 20px;

  background: #ffffff;
  border-radius: 15px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.card-clean .icon {
  font-size: 32px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

/* 👇 THIS IS THE MAGIC */
.card-clean:hover .icon {
  filter: brightness(0) invert(1);
  transform: scale(1.2); /* optional */
}


/* TITLE */
.card-clean h5 {
  margin: 10px 0 5px;
  font-weight: 600;
}

/* TEXT */
.card-clean p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.card-clean:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.card-clean:hover p {
  color: #e0f2fe;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .industries-section-clean h2 {
    font-size: 28px;
  }
}

/* SECTION */
.why-clients-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.why-clients-title {
  font-size: 36px;
  font-weight: 700;
}

/* SUBTITLE */
.why-clients-subtitle {
  max-width: 600px;
  margin: 10px auto;
  color: #000000;
  font-size: 18px;
}

/* EQUAL HEIGHT FIX */
.why-clients-section .row > div {
  display: flex;
}

/* CARD */
.why-client-card {
  width: 100%;
  height: 100%;

  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.why-client-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

/* TITLE */
.why-client-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.why-client-card p {
  font-size: 16px;
  color: #000000;
}

/* HOVER */
.why-client-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-clients-title {
    font-size: 28px;
  }
}

/* SECTION */
.why-join-custom {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.why-join-title {
  font-size: 36px;
  font-weight: 700;
}

/* SUBTITLE */
.why-join-subtitle {
  max-width: 600px;
  margin: 10px auto;
  color: #020202;
  font-size: 16px;
}

/* ITEM */
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;

  background: #fff;
  padding: 20px;
  border-radius: 12px;

  margin-bottom: 15px;
  transition: 0.3s;

  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* NUMBER */
.why-number {
  font-size: 22px;
  font-weight: 700;
  color: #4f46e5;
  min-width: 40px;
}

/* TEXT */
.why-item h6 {
  margin: 0;
  font-weight: 600;
}

.why-item p {
  font-size: 13px;
  color: #000000;
  margin: 3px 0 0;
}

/* HOVER */
.why-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-join-title {
    font-size: 28px;
  }
}

/* HERO */
.career-hero-custom {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 60px 20px;
  text-align: center;

  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #fff;
}

/* CONTENT */
.career-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

/* TITLE */
.career-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* SUBTITLE */
.career-hero-subtitle {
  font-size: 18px;
  color: #e0f2fe;
  margin-bottom: 30px;
}

/* BUTTON */
.career-btn-primary {
  background: #fff;
  color: #4f46e5;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.career-btn-primary:hover {
  transform: scale(1.05);
  background: #000;
  color: #fff;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.5s; }
.fade-up:nth-child(3) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .career-hero-title {
    font-size: 30px;
  }

  .career-hero-subtitle {
    font-size: 16px;
  }
}

/* SECTION */
.culture-section-custom {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.culture-title {
  font-size: 36px;
  font-weight: 700;
}

/* SUBTITLE */
.culture-subtitle {
  max-width: 600px;
  margin: 10px auto;
  color: #000000;
  font-size: 16px;
}

/* EQUAL HEIGHT FIX */
.culture-section-custom .row > div {
  display: flex;
}

/* CARD */
.culture-card {
  width: 100%;
  height: 100%;

  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.culture-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* TITLE */
.culture-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.culture-card p {
  font-size: 14px;
  color: #000000;
}

/* HOVER */
.culture-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .culture-title {
    font-size: 28px;
  }
}

/* SECTION */
.career-block {
  padding: 80px 0;
  background: #f5f7f7;
}

/* ALT BG */
.bg-light-custom {
  background: #eef1f2;
}

/* IMAGE */
.career-img {
  width: 70%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Desktop */
.img-wrapper {
  display: flex;
  justify-content: flex-end; /* right side */
}

/* Tablet */
@media (max-width: 992px) {
  .img-wrapper {
    justify-content: center; /* center on tablet */
  }
}

/* Mobile */
@media (max-width: 576px) {
  .img-wrapper {
    justify-content: center; /* center on mobile */
  }

  .career-img {
    width: 100%; /* full width on mobile */
    max-width: 300px;
  }
}

/* TITLE */
.career-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* GRADIENT TEXT */
.gradient-text {
  background: linear-gradient(90deg, #1e00ff, #5900ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.career-text {
  font-size: 16px;
  color: #000000;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .career-title {
    font-size: 26px;
  }

  .career-block {
    padding: 50px 20px;
    text-align: center;
  }
}

/* HERO */
.contact-hero-custom {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 60px 20px;
  text-align: center;

  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #fff;
}

/* CONTENT */
.contact-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

/* TITLE */
.contact-hero-title {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* SUBTITLE */
.contact-hero-subtitle {
  font-size: 17px;
  color: #e0f2fe;
  line-height: 1.6;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.5s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 28px;
  }

  .contact-hero-subtitle {
    font-size: 15px;
  }
}

/* SECTION */
.contact-section-custom {
  padding: 80px 0;
  background: #f8fafc;
}

/* FORM BOX */
.form-box-custom {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TITLE */
.form-title {
  font-weight: 700;
  margin-bottom: 20px;
}

/* INPUT */
.form-control-custom {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;

  border-radius: 8px;
  border: 1px solid #ddd;

  font-size: 14px;
  transition: 0.3s;
}

/* FOCUS */
.form-control-custom:focus {
  border-color: #4f46e5;
  outline: none;
  box-shadow: 0 0 0 2px rgba(79,70,229,0.1);
}

/* BUTTON */
.contact-btn {
  width: 100%;
  padding: 12px;
  border-radius: 30px;

  background: linear-gradient(90deg, #4f46e5, #06b6d4);
  color: #fff;

  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: scale(1.03);
}

/* INFO BOX */
.contact-info-box {
  height: 100%;
  background: #fff;
  padding: 30px;
  border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TITLE */
.info-title {
  font-weight: 700;
  margin-bottom: 10px;
}

/* TEXT */
.info-text {
  color: #666;
  margin-bottom: 20px;
}

/* ITEM */
.info-item {
  margin-bottom: 15px;
  font-size: 15px;
}

/* LINK */
.info-item a {
  color: #4f46e5;
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-section-custom {
    padding: 50px 20px;
  }
}

/* INVALID INPUT */
.is-invalid {
  border-color: red !important;
}

/* ERROR TEXT */
.invalid-feedback {
  display: none;
  color: red;
  font-size: 13px;
  margin-top: -10px;
  margin-bottom: 10px;
}

/* SHOW ERROR */
.is-invalid + .invalid-feedback {
  display: block;
}


.about-hero-section{
  background:#f3f3f3;
  padding:80px 0;
}

/* TITLE */
.about-main-title{
  font-size:3.5rem;
  font-weight:700;
  background: linear-gradient(90deg, #1e00ff, #5900ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* CAROUSEL WRAPPER */
#aboutCarousel{
  max-width: 750px;   /* width kam */
  margin: 0 auto;
}

/* IMAGE SIZE CONTROL */
.carousel img{
  height: 350px;      /* height kam */
  object-fit: cover;
  border-radius: 10px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .carousel img{
    height: 250px;
  }
  .about-main-title{
    font-size: 2.2rem;
  }
}

/* CONTENT */
.about-content h3{
  font-weight:700;
  color:blue;
}

.about-content p{
  color:black;
  max-width:700px;
  margin:10px auto;
  line-height:1.7;
}

.email-text{
  margin-top:10px;
  font-weight:500;
  color:#ff8c00;
}

/* DOTS */
.carousel-indicators button{
  background-color:#ccc;
}
.carousel-indicators .active{
  background-color:blue;
}

/* SECTION FULL WIDTH */
.mv-section {
  padding: 100px 20px;
  text-align: center;

  background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
}

/* TITLE */
.mv-title {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 15px;
}

/* SUB HEADINGS */
.mv-sub {
  font-size: 15px;
  margin-top: 25px;
  margin-bottom: 5px;
}

/* TEXT */
.mv-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mv-title {
    font-size: 26px;
  }

  .mv-text {
    font-size: 13px;
  }
}

/* SECTION */
.values-section-custom {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.values-title {
  font-size: 36px;
  font-weight: 700;
}

/* SUBTITLE */
.values-subtitle {
  max-width: 600px;
  margin: 10px auto;
  color: #000;
}

/* EQUAL HEIGHT */
.values-section-custom .row > div {
  display: flex;
}

/* CARD */
.value-card {
  width: 100%;
  height: 100%;

  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.value-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* TITLE */
.value-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.value-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .values-title {
    font-size: 28px;
  }
}

/* SECTION */
.hero-pharma-custom {
  padding: 80px 0;
    background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));

}

/* TITLE */
.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: white;
}

/* SUBTITLE */
.hero-subtitle {
  font-size: 16px;
  color: white;

}

/* BUTTON */
.hero-btn-primary {
  background: linear-gradient(90deg, #4f46e5, #06b6d4);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
}

/* IMAGE */
.hero-img {
  max-width: 70%;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-pharma-custom {
    text-align: center;
  }
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.5s; }
.fade-up:nth-child(3) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }
}

/* SECTION */
.pharma-overview-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.pharma-title {
  font-size: 34px;
  font-weight: 700;
}

/* SUBTITLE */
.pharma-subtitle {
  max-width: 700px;
  margin: 10px auto;
  color: #666;
}

/* EQUAL HEIGHT */
.pharma-overview-section .row > div {
  display: flex;
}

/* CARD */
.pharma-card-custom {
  width: 100%;
  height: 100%;

  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.pharma-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* TITLE */
.pharma-card-custom h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.pharma-card-custom p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.pharma-card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.pharma-highlight {
 background: linear-gradient(90deg, #0f172a, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* SECTION */
.pharma-ads-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

/* CARD */
.pharma-ads-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  height: 100%;
  transition: 0.3s ease;
}

/* ICON */
.pharma-ads-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* BRAND COLORS */
.fa-google { color: #EA4335; }
.fa-facebook { color: #1877F2; }

/* HOVER */
.pharma-ads-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pharma-title {
    font-size: 26px;
  }
}

/* HERO */
.b2b-hero-custom {
  padding: 80px 0;
      background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));


}

/* TITLE */
.b2b-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: white;
}

/* SUBTITLE */
.b2b-hero-subtitle {
  font-size: 16px;
  color: white;
}

/* BUTTON */
.b2b-btn-primary {
  background: linear-gradient(90deg, #1e3a8a, #0284c7);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
}

/* IMAGE */
.b2b-hero-img {
  max-width: 90%;
}
.b2b-highlight {
  background: linear-gradient(90deg, #1e3a8a, #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
/* MOBILE */
@media (max-width: 768px) {
  .b2b-hero-title {
    font-size: 28px;
  }

  .b2b-hero-subtitle {
    font-size: 14px;
  }

  .b2b-hero-custom {
    text-align: center;
  }
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.5s; }
.fade-up:nth-child(3) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .b2b-hero-title {
    font-size: 28px;
  }

  .b2b-hero-subtitle {
    font-size: 15px;
  }
}

/* SECTION */
.b2b-overview-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.b2b-title {
  font-size: 34px;
  font-weight: 700;
}

/* SUBTITLE */
.b2b-subtitle {
  max-width: 700px;
  margin: 10px auto;
  color: #666;
}

/* EQUAL HEIGHT */
.b2b-overview-section .row > div {
  display: flex;
}

/* CARD */
.b2b-card-custom {
  width: 100%;
  height: 100%;

  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.b2b-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* TITLE */
.b2b-card-custom h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.b2b-card-custom p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.b2b-card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .b2b-title {
    font-size: 26px;
  }
}

/* SECTION */
.b2b-services-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.b2b-title {
  font-size: 34px;
  font-weight: 700;
}

/* SUBTITLE */
.b2b-subtitle {
  max-width: 700px;
  margin: 10px auto;
  color: #666;
  font-size: 18px;
}

/* EQUAL HEIGHT */
.b2b-services-section .row > div {
  display: flex;
}

/* CARD */
.b2b-service-card {
  width: 100%;
  height: 100%;

  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.b2b-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* TITLE */
.b2b-service-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.b2b-service-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.b2b-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .b2b-title {
    font-size: 26px;
  }
}
/* SECTION */
.mfg-hero-custom {
  padding: 80px 0;
  background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
}

/* TITLE */
.mfg-hero-title {
  font-size: 42px;
  font-weight: 700;
}

/* SUBTITLE */
.mfg-hero-subtitle {
  font-size: 16px;
  opacity: 0.9;
}

/* BUTTON */
.mfg-btn-primary {
  background: #fff;
  color: #0055ff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

/* IMAGE */
.mfg-hero-img {
  max-width: 70%;
}
.mfg-highlight {
  background: linear-gradient(90deg, #374151, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
/* SECTION */
.mfg-ads-section {
  padding: 60px 0;
  background: #f9fafb;
}

/* CARD */
.mfg-ads-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  height: 100%;
  transition: 0.3s ease;
}

/* ICON */
.mfg-ads-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* BRAND COLORS */
.fa-google { color: #EA4335; }
.fa-facebook { color: #1877F2; }

/* HOVER */
.mfg-ads-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .mfg-hero-title {
    font-size: 28px;
  }

  .mfg-hero-subtitle {
    font-size: 14px;
  }

  .mfg-hero-custom {
    text-align: center;
  }
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.5s; }
.fade-up:nth-child(3) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mfg-hero-title {
    font-size: 28px;
  }

  .mfg-hero-subtitle {
    font-size: 15px;
  }
}

/* SECTION */
.mfg-overview-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.mfg-title {
  font-size: 34px;
  font-weight: 700;
}

/* SUBTITLE */
.mfg-subtitle {
  max-width: 700px;
  margin: 10px auto;
  color: #666 ;
}

/* EQUAL HEIGHT */
.mfg-overview-section .row > div {
  display: flex;
}

/* CARD */
.mfg-card-custom {
  width: 100%;
  height: 100%;

  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.mfg-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* TITLE */
.mfg-card-custom h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.mfg-card-custom p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.mfg-card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mfg-title {
    font-size: 26px;
  }
}

/* SECTION */
.mfg-services-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.mfg-title {
  font-size: 34px;
  font-weight: 700;
}

/* SUBTITLE */
.mfg-subtitle {
  max-width: 700px;
  margin: 10px auto;
  color: #666;
}

/* EQUAL HEIGHT */
.mfg-services-section .row > div {
  display: flex;
}

/* CARD */
.mfg-service-card {
  width: 100%;
  height: 100%;

  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.mfg-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* TITLE */
.mfg-service-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.mfg-service-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.mfg-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mfg-title {
    font-size: 26px;
  }
}


/* HERO */
.health-hero-custom {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 60px 20px;
  text-align: center;

  background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
}

/* CONTENT */
.health-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

/* TITLE */
.health-hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}

/* SUBTITLE */
.health-hero-subtitle {
  font-size: 18px;
  color: #e0f2fe;
}

/* BUTTON WRAP */
.health-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* PRIMARY BTN */
.health-btn-primary {
  background: #ffffff;
  color: #0ea5e9;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  transition: 0.3s;
}

.health-btn-primary:hover {
  transform: scale(1.05);
  background: #f1f5f9;
}

/* OUTLINE BTN */
.health-btn-outline {
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  border: 1px solid #fff;
  transition: 0.3s;
}

.health-btn-outline:hover {
  background: #fff;
  color: #0ea5e9;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.5s; }
.fade-up:nth-child(3) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .health-hero-title {
    font-size: 28px;
  }

  .health-hero-subtitle {
    font-size: 15px;
  }
}

/* SECTION */
.health-overview-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.health-title {
  font-size: 34px;
  font-weight: 700;
}

/* SUBTITLE */
.health-subtitle {
  max-width: 700px;
  margin: 10px auto;
  color: #666;
}

/* EQUAL HEIGHT */
.health-overview-section .row > div {
  display: flex;
}

/* CARD */
.health-card-custom {
  width: 100%;
  height: 100%;

  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.health-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* TITLE */
.health-card-custom h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.health-card-custom p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.health-card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .health-title {
    font-size: 26px;
  }
}


/* SECTION */
.health-why-section {
  padding: 80px 0;
  background: #ffffff;
}

/* TITLE */
.health-title {
  font-size: 34px;
  font-weight: 700;
}

/* SUBTITLE */
.health-subtitle {
  max-width: 700px;
  margin: 10px auto;
  color: #666;
}

/* EQUAL HEIGHT */
.health-why-section .row > div {
  display: flex;
}

/* CARD */
.health-why-card {
  width: 100%;
  height: 100%;

  background: #f8fafc;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.health-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

/* TITLE */
.health-why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.health-why-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.health-why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  background: #e0f2fe;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .health-title {
    font-size: 26px;
  }
}

/* SECTION */
.real-hero-custom {
  padding: 80px 0;
    background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));

}

/* TITLE */
.real-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: white;
}

/* SUBTITLE */
.real-hero-subtitle {
  font-size: 16px;
  color: white;
}

.re-highlight {
  background: linear-gradient(90deg, #374151, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* IMAGE */
.real-hero-img {
  max-width: 90%;
}

/* MOBILE */
@media (max-width: 768px) {
  .real-hero-title {
    font-size: 28px;
  }

  .real-hero-subtitle {
    font-size: 14px;
  }

  .real-hero-custom {
    text-align: center;
  }
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.5s; }
.fade-up:nth-child(3) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .real-hero-title {
    font-size: 28px;
  }

  .real-hero-subtitle {
    font-size: 15px;
  }
}

/* SECTION */
.re-overview-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.re-title {
  font-size: 34px;
  font-weight: 700;
}

/* SUBTITLE */
.re-subtitle {
  max-width: 700px;
  margin: 10px auto;
  color: #666;
}

/* EQUAL HEIGHT */
.re-overview-section .row > div {
  display: flex;
}

/* CARD */
.re-card-custom {
  width: 100%;
  height: 100%;

  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.re-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* TITLE */
.re-card-custom h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.re-card-custom p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.re-card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .re-title {
    font-size: 26px;
  }
}

/* SECTION */
.re-why-section {
  padding: 80px 0;
  background: #ffffff;
}

/* TITLE */
.re-title {
  font-size: 34px;
  font-weight: 700;
}

/* SUBTITLE */
.re-subtitle {
  max-width: 700px;
  margin: 10px auto;
  color: #666;
}

/* EQUAL HEIGHT */
.re-why-section .row > div {
  display: flex;
}

/* CARD */
.re-why-card {
  width: 100%;
  height: 100%;

  background: #f8fafc;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.re-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

/* TITLE */
.re-why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.re-why-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.re-why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  background: #ecfdf5;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .re-title {
    font-size: 26px;
  }
}

/* SECTION */
.educate-hero-custom {
  padding: 80px 0;
    background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));

}

/* TITLE */
.educate-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: white;
}

/* SUBTITLE */
.educate-hero-subtitle {
  font-size: 16px;
  color: white;
}

.re-highlight {
  background: linear-gradient(90deg, #374151, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* IMAGE */
.educate-hero-img {
  max-width: 90%;
}
/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.5s; }
.fade-up:nth-child(3) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .edu-hero-title {
    font-size: 28px;
  }

  .edu-hero-subtitle {
    font-size: 15px;
  }
}

/* SECTION */
.edu-overview-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.edu-title {
  font-size: 34px;
  font-weight: 700;
}

/* SUBTITLE */
.edu-subtitle {
  max-width: 700px;
  margin: 10px auto;
  color: #666;
}

/* EQUAL HEIGHT */
.edu-overview-section .row > div {
  display: flex;
}

/* CARD */
.edu-card-custom {
  width: 100%;
  height: 100%;

  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.edu-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* TITLE */
.edu-card-custom h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.edu-card-custom p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.edu-card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .edu-title {
    font-size: 26px;
  }
}


/* SECTION */
.edu-why-section {
  padding: 80px 0;
  background: #ffffff;
}

/* TITLE */
.edu-title {
  font-size: 34px;
  font-weight: 700;
}

/* SUBTITLE */
.edu-subtitle {
  max-width: 700px;
  margin: 10px auto;
  color: #666;
}

/* EQUAL HEIGHT */
.edu-why-section .row > div {
  display: flex;
}

/* CARD */
.edu-why-card {
  width: 100%;
  height: 100%;

  background: #f8fafc;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.edu-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

/* TITLE */
.edu-why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.edu-why-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.edu-why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  background: #eef2ff;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .edu-title {
    font-size: 26px;
  }
}


/* SECTION */
.auto-hero-custom {
  padding: 80px 0;
    background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));

}

/* TITLE */
.auto-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: white;
}

/* SUBTITLE */
.auto-hero-subtitle {
  font-size: 16px;
  color: white;
}

.re-highlight {
  background: linear-gradient(90deg, #374151, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* IMAGE */
.auto-hero-img {
  max-width: 90%;
}
/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.5s; }
.fade-up:nth-child(3) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .auto-hero-title {
    font-size: 28px;
  }

  .auto-hero-subtitle {
    font-size: 15px;
  }
}

/* SECTION */
.auto-overview-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.auto-title {
  font-size: 34px;
  font-weight: 700;
}

/* SUBTITLE */
.auto-subtitle {
  max-width: 700px;
  margin: 10px auto;
  color: #666;
}

/* EQUAL HEIGHT */
.auto-overview-section .row > div {
  display: flex;
}

/* CARD */
.auto-card-custom {
  width: 100%;
  height: 100%;

  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.auto-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* TITLE */
.auto-card-custom h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.auto-card-custom p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.auto-card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .auto-title {
    font-size: 26px;
  }
}

/* SECTION */
.auto-why-section {
  padding: 80px 0;
  background: #ffffff;
}

/* TITLE */
.auto-title {
  font-size: 34px;
  font-weight: 700;
}

/* SUBTITLE */
.auto-subtitle {
  max-width: 700px;
  margin: 10px auto;
  color: #666;
}

/* EQUAL HEIGHT */
.auto-why-section .row > div {
  display: flex;
}

/* CARD */
.auto-why-card {
  width: 100%;
  height: 100%;

  background: #f9fafb;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.auto-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

/* TITLE */
.auto-why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.auto-why-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.auto-why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  background: #eef2ff;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .auto-title {
    font-size: 26px;
  }
}


/* SECTION */
.rest-hero-custom {
  padding: 80px 0;
    background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));

}

/* TITLE */
.rest-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: white;
}

/* SUBTITLE */
.rest-hero-subtitle {
  font-size: 16px;
  color: white;
}

.re-highlight {
  background: linear-gradient(90deg, #374151, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* IMAGE */
.rest-hero-img {
  max-width: 90%;
}
/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .industry-title {
    font-size: 28px;
  }

  .industry-subtitle {
    font-size: 15px;
  }
}

/* SECTION */
.rest-overview-section {
  padding: 80px 0;
  background: #f5f5f5;
}

/* TITLE */
.rest-title {
  font-size: 34px;
  font-weight: 700;
}

/* SUBTITLE */
.rest-subtitle {
  max-width: 700px;
  margin: 10px auto;
  color: #666;
}

/* EQUAL HEIGHT */
.rest-overview-section .row > div {
  display: flex;
}

/* CARD */
.rest-card {
  width: 100%;
  height: 100%;

  background: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.rest-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* TITLE */
.rest-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.rest-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.rest-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  background: #fffbeb;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .rest-title {
    font-size: 26px;
  }
}

/* SECTION */
.rest-why-section {
  padding: 80px 0;
  background: #ffffff;
}

/* TITLE */
.rest-title {
  font-size: 34px;
  font-weight: 700;
}

/* SUBTITLE */
.rest-subtitle {
  max-width: 700px;
  margin: 10px auto;
  color: #666;
}

/* EQUAL HEIGHT */
.rest-why-section .row > div {
  display: flex;
}

/* CARD */
.rest-why-card {
  width: 100%;
  height: 100%;

  background: #fff7ed;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.rest-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

/* TITLE */
.rest-why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.rest-why-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.rest-why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  background: #ffedd5;
}


/* SECTION */
.eco-hero-custom {
  padding: 80px 0;
    background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));

}

/* TITLE */
.eco-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: white;
}

/* SUBTITLE */
.eco-hero-subtitle {
  font-size: 16px;
  color: white;
}
.eco-hero-img{
  width: 70%;
}
/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .rest-title {
    font-size: 26px;
  }
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.5s; }
.fade-up:nth-child(3) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .eco-title {
    font-size: 28px;
  }

  .eco-subtitle {
    font-size: 15px;
  }
}

/* SECTION */
.eco-overview-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* TITLE */
.eco-title {
  font-size: 34px;
  font-weight: 700;
}

/* SUBTITLE */
.eco-subtitle {
  max-width: 700px;
  margin: 10px auto;
  color: #000;
}

/* EQUAL HEIGHT */
.eco-overview-section .row > div {
  display: flex;
}

/* CARD */
.eco-card-custom {
  width: 100%;
  height: 100%;

  background: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.eco-icon {
  font-size: 32px;
  color: #22c55e;
  margin-bottom: 12px;
}

/* TITLE */
.eco-card-custom h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.eco-card-custom p {
  font-size: 14px;
  color: #64748b;
}

/* HOVER */
.eco-card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  background: #ecfdf5;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .eco-title {
    font-size: 26px;
  }
}

/* SECTION */
.eco-why-section {
  padding: 80px 0;
  background: #ffffff;
}

/* TITLE */
.eco-title {
  font-size: 34px;
  font-weight: 700;
}

/* SUBTITLE */
.eco-subtitle {
  max-width: 700px;
  margin: 10px auto;
  color: #000;
}

/* EQUAL HEIGHT */
.eco-why-section .row > div {
  display: flex;
}

/* CARD */
.eco-why-card {
  width: 100%;
  height: 100%;

  background: #f8fafc;
  padding: 30px 20px;
  border-radius: 15px;

  text-align: center;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.eco-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

/* TITLE */
.eco-why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.eco-why-card p {
  font-size: 14px;
  color: #64748b;
}

/* HOVER */
.eco-why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  background: #ecfdf5;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .eco-title {
    font-size: 26px;
  }
}


/* SECTION */
.uiux-hero-section {
  min-height: 90vh;
  padding: 80px 0;
 background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
}

/* TEXT */
.uiux-hero-text h1 {
  font-size: 42px;
  font-weight: 700;
}

.uiux-hero-text p {
  font-size: 18px;
  margin-top: 15px;
  color: #cbd5f5;
}

/* IMAGE */
.uiux-hero-img {
  max-width: 130%;
  border-radius: 15px;
  margin-bottom: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: 0.4s;
}


.uiux-hero-img:hover{
  transform: scale(1.05);
}

/* BUTTON WRAPPER (important) */
.btn-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.uiux-btn-primary {
  background: #6366f1;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  transition: 0.3s;
}

.uiux-btn-primary:hover {
  background: #4f46e5;
  transform: translateY(-2px);
}

/* OUTLINE BUTTON */
.uiux-btn-outline {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  transition: 0.3s;
}

.uiux-btn-outline:hover {
  background: #fff;
  color: #000;
}

.read-more1 {
  color: #4f46e5;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
}
/* 📱 TABLET */
@media (max-width:992px) {
  .btn-wrap {
    justify-content: center;
  }
}

/* 📱 MOBILE FIX 🔥 */
@media (max-width:576px) {

  .btn-wrap {
    flex-direction: column;   /* stack buttons */
    align-items: center;
  }

  .uiux-btn-primary,
  .uiux-btn-outline {
    width: 100%;              /* full width buttons */
    max-width: 280px;         /* control width */
    text-align: center;
    padding: 12px;
    font-size: 14px;
  }
}

/* MOBILE FIX 🔥 */
@media (max-width:992px) {

  .uiux-hero-section {
    text-align: center;
    padding: 60px 20px;
  }

  .uiux-hero-text h1 {
    font-size: 28px;
  }

  .uiux-hero-text p {
    font-size: 15px;
  }

  .uiux-hero-img {
    max-width: 85%;
    margin-bottom: 20px; /* 👈 gap between image & text */
  }
}

/* SMALL MOBILE */
@media (max-width:576px) {

  .uiux-hero-text h1 {
    font-size: 24px;
  }

  .uiux-hero-text p {
    font-size: 14px;
  }

  .uiux-hero-img {
    max-width: 100%;
    margin-bottom: 20px; /* 👈 gap between image & text */
  }
}

/* SECTION */
.work-hero {
  min-height: 80vh;
 background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTENT CENTER */
.work-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

/* HEADING */
.work-hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
}

/* TEXT */
.work-hero p {
  font-size: 18px;
  margin-top: 15px;
  color: #cbd5f5;
}

/* BUTTONS */
.hero-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* TABLET */
@media (max-width: 992px) {

  .work-hero {
    padding: 60px 20px;
  }

  .work-hero h1 {
    font-size: 28px;
  }

  .work-hero p {
    font-size: 15px;
  }
}

/* MOBILE */
@media (max-width: 576px) {

  .work-hero h1 {
    font-size: 22px;
  }

  .hero-btns button {
    width: 100%;
    max-width: 260px;
  }
}

/* SECTION */
.software-hero {
  min-height: 90vh;
 background: linear-gradient(90deg, rgb(0, 85, 255), rgb(100, 114, 142));
  color: #fff;
  padding: 80px 20px;
}

/* TEXT */
.software-text h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
}

.software-text p {
  font-size: 18px;
  margin-top: 15px;
  color: #cbd5f5;
}


/* IMAGE */
.software-img {
  max-width: 100%;
  transition: 0.4s;
}

.software-img:hover {
  transform: scale(1.05);
}

/* BUTTON */
.software-btn-primary {
  background: linear-gradient(45deg, #6366f1, #4f46e5);
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.software-btn-primary:hover {
  transform: translateY(-3px);
}

/* TABLET */
@media (max-width: 992px) {

  .software-hero {
    text-align: center;
  }

  .software-text h1 {
    font-size: 28px;
  }

  .software-text p {
    font-size: 15px;
  }

  .software-btn-wrap {
    display: flex;
    justify-content: center;
  }

  .software-img {
    margin-bottom: 20px;
    max-width: 80%;
  }
}

/* MOBILE */
@media (max-width: 576px) {

  .software-text h1 {
    font-size: 22px;
  }

  .software-btn-primary {
    width: 100%;
    max-width: 250px;
    display: inline-block;
    text-align: center;
  }
}


.platform-item {
  text-align: center;
  transition: 0.3s ease;
}

.platform-item p {
  font-size: 13px;
  margin-top: 5px;
  color: #555;
  gap: 20%;
}

/* Hover effect */
.platform-item:hover {
  transform: translateY(-6px);
}

.platform-item:hover i {
  color: #4f46e5 !important;
}

/* Heading */
.email-heading {
  color: #4f46e5;
}

/* Image styling */
.email-img {
  width: 80%;
}

/* Tablet */
@media (max-width: 992px) {
  .email-img {
    width: 90%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .email-img {
    width: 100%;
  }

  .section-padding {
    padding: 40px 0;
  }

  .row {
    text-align: center;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .email-img {
    width: 90%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .email-img {
    width: 100%;
  }

  .section-padding {
    padding: 40px 0;
  }

  .row {
    text-align: center;
  }
}

.platforms-section-new {
  padding: 60px 0;
}

.platforms-wrapper-new {
  margin-top: 20px;
}

.platform-box-new {
  text-align: center;
}

.platform-box-new i {
  font-size: 32px;
  color: #4f46e5; /* same color always */
}

.platform-box-new p {
  margin-top: 6px;
  font-size: 14px;
  color: #555;
}
.influencer-section-new {
  padding: 60px 0;
}

.influencer-card-box {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  height: 100%;
}

.influencer-card-box h5 {
  margin-bottom: 10px;
  font-weight: 600;
  color: #4f46e5;
}

.influencer-card-box p {
  font-size: 14px;
  color: #000;
  margin: 0;
}

/* CARD */
.ppc-card-box {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

/* ICON */
.ppc-icon {
  font-size: 30px;
  color: #4f46e5;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

/* TEXT */
.ppc-card-box p {
  font-size: 14px;
  color: #666;
  transition: 0.3s ease;
}

/* 🔥 HOVER EFFECT */
.ppc-card-box:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Text white on hover */
.ppc-card-box:hover p {
  color: #e0f2fe;
}

/* Icon white on hover */
.ppc-card-box:hover .ppc-icon {
  color: #fff;
}

/* Wrapper */
.ads-platforms-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Box */
.ads-platform-box {
  text-align: center;
}

/* Icons */
.ads-platform-box i {
  font-size: 36px;
  margin-bottom: 8px;
}

/* Text */
.ads-platform-box p {
  font-size: 16px;
  color: #000;
  margin: 0;
  gap: 20px;
}

/* Section */
.sem-section-new {
  background: #f9fafb;
}

/* Highlight box */
.sem-highlight-box {
  display: inline-block;
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  font-size: 14px;
  color: #444;
}

/* SECTION */
.auto-ads-section {
  padding: 60px 0;
  background: #f9fafb;
}

/* CARD */
.auto-ads-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  height: 100%;
  transition: 0.3s ease;
}

/* ICON */
.auto-ads-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* BRAND COLORS */
.fa-google { color: #EA4335; }
.fa-facebook { color: #1877F2; }

/* HOVER */
.auto-ads-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* SECTION */
.ecom-ads-section {
  padding: 60px 0;
  background: #f8fafc;
}

/* CARD */
.ecom-ads-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  height: 100%;
  transition: 0.3s ease;
}

/* ICON */
.ecom-ads-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* BRAND COLORS */
.fa-google { color: #EA4335; }
.fa-facebook { color: #1877F2; }

/* HOVER */
.ecom-ads-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}
.plain-icons {
  display: flex;
  gap: 20px;
}
.about-image {
  border-radius: 20px;
  max-width: 70%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: 0.4s;
}

.about-image:hover {
  transform: scale(1.05);
}