body {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #f8f9fa;
  font-size: 14px;
}

.top-bar span {
  color: #333;
}

.top-right a {
  color: #333;
  text-decoration: none;
  margin-left: 15px;
}

.top-right a:hover {
  color: #f15a29;
}

/* ===== LOGO ===== */
.logo-text {
  font-size: 26px;
  font-weight: 700;
  color: #f15a29;
}

.logo-text span {
  color: #222;
}

/* ===== NAVBAR ===== */
.nav-link {
  font-weight: 500;
  color: #222 !important;
  font-size: 15px;
}

.nav-link.active {
  border-bottom: 2px solid #f15a29;
}

/* ===== BUTTON ===== */


/* ===== HERO ===== */
.hero-section {
  padding: 130px 0;
  background: linear-gradient(120deg, #ffffff 60%, #fff4ee 100%);
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-title span {
  color: #f15a29;
}

.hero-text {
  font-size: 18px;
  color: #555;
  max-width: 900px;
  margin: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
  }

  .top-left,
  .top-right {
    text-align: center;
    width: 100%;
  }

  .top-right {
    margin-top: 8px;
  }
}
.top-left i {
  color: #f15a29;
  font-size: 14px;
}
/* ===== STATS SECTION ===== */
.stats-section {
  background: #f7f7f7;
}

.stats-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* Icon Box */
.icon-box {
  width: 46px;
  height: 46px;
  border: 2px solid #f15a29;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f15a29;
  font-size: 20px;
  flex-shrink: 0;
}

/* Text */
.stats-item h6 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  color: #222;
}

/* ===== MOBILE TWEAKS ===== */
@media (max-width: 576px) {
  .stats-item {
    justify-content: flex-start;
  }
}
.icon-box {
  width: 46px;
  height: 46px;
  background: #fff1ea;              /* light orange */
  border: 1.5px solid #ff6a2a;      /* orange border */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6a2a;
  font-size: 20px;
}
.icon-box:hover {
  background: #ff6a2a;
  color: #fff;
  transition: all 0.3s ease;
}
/* Paragraph */
.about-description {
  font-size: 16.5px;
  line-height: 1.8;
  color: #555;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 17px;
  font-weight: 600;
  color: #222;
}

/* Green Check Icon */
.feature-list i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e9f9ef;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* Button */
.btn-learn-more {
  background: #f15a29;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.btn-learn-more:hover {
  background: #d94f22;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-list li {
    justify-content: center;
  }

  .about-content {
    text-align: center;
  }
}
/* ===== SERVICES HEADING ===== */
.services-heading-section {
  background: #ffffff;
}

/* Pill */
.section-pill,.about-pill {
  background: #fff1ea;
  color: #ff6a2a;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

/* Main Heading */
.services-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
}

.services-title span {
  color: #ff6a2a;
}

/* Sub Text */
.services-subtext {
  font-size: 17px;
  color: #555;
  max-width: 720px;
  margin: auto;
  line-height: 1.7;
  margin-bottom: 50px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .services-title {
    font-size: 32px;
  }
}
/* ===== SERVICES CARDS ===== */
.services-cards-section {
  background: #ffffff;
}

/* Card */
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

/* Icon Box */
.service-icon {
  width: 56px;
  height: 56px;
  background: #fff1ea;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6a2a;
  font-size: 26px;
  margin-bottom: 20px;
}

/* Title */
.service-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

/* Description */
.service-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

/* Bottom Tag */
.service-tag {
  position: absolute;
  bottom: 24px;
  left: 45%;
  transform: translateX(-50%);
  background: #fff1ea;
  color: #ff6a2a;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .service-card {
    padding: 28px 22px;
  }
}
/* ===== TABS ===== */
.portfolio-tabs {
  border-bottom: 1px solid #e5e5e5;
}

.portfolio-tabs .nav-link {
  border: none;
  font-weight: 600;
  color: #222;
  padding: 12px 24px;
}

.portfolio-tabs .nav-link.active {
  color: #ff6a2a;
  border-bottom: 2px solid #ff6a2a;
}

/* ===== CARD ===== */
.portfolio-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1));
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.portfolio-overlay h5 {
  font-size: 22px;
  font-weight: 700;
}

.portfolio-overlay a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  margin-top: 6px;
}

/* Tag */
.portfolio-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  color: #ff6a2a;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .portfolio-overlay h5 {
    font-size: 18px;
  }
}
/* ===== WHY CHOOSE US ===== */
.why-choose-section {
  background: #ffffff;
}

/* Card */
.why-card {
  background: #fff3ee;
  border: 1.5px solid #ff6a2a;
  border-radius: 22px;
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
}

/* Icon Circle */
.why-icon {
  width: 70px;
  height: 70px;
  background: #ff6a2a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 22px;
}

/* Heading */
.why-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
}

/* Text */
.why-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 768px) {
  .why-card {
    padding: 32px 22px;
  }
}
/* ===== FUNNEL HEADING ===== */
.funnel-heading-section {
  background: #ffffff;
}

/* Pill */
.funnel-pill {
  background: #fff1ea;
  color: #ff6a2a;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

/* Title */
.funnel-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.25;
  color: #222;
}

.funnel-title span {
  color: #ff6a2a;
}

/* Responsive */
@media (max-width: 768px) {
  .funnel-title {
    font-size: 32px;
  }
}
/* ===== GROWTH SECTION ===== */
.growth-stats-section {
  background: #ffffff;
}

/* Text */
.growth-text {
  font-size: 16.5px;
  color: #555;
  line-height: 1.8;
}
.about-title
{
    font-weight:bold;
    margin-bottom:30px;
}
/* Orange Button */
.btn-orange,.btn-outline-dark {
  background: #f15a29;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
}
.btn-outline-dark
{
    background-color:transparent;
    color:#000;
}

.btn-orange:hover {
  background: #d94f22;
  color: #fff;
}

.stat-card {
  background: #f7f7f7;          /* ✅ visible box background */
  border: 1.5px solid #dcdcdc;  /* soft grey border */
  border-radius: 18px;
  padding: 40px 20px;
  text-align: center;
  height: 100%;
}

.stat-card h3 {
  font-size: 48px;
  font-weight: 800;
  color: #f15a29;
  margin-bottom: 12px;
}

.stat-card p {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .stat-card h3 {
    font-size: 36px;
  }
}
/* ===== PARTNER SECTION ===== */
.partner-section {
  background: #ffffff;
}

/* Pill */
.section-pill {
  background: #fff1ea;
  color: #ff6a2a;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

/* Title */
.partner-title {
  font-size: 42px;
  font-weight: 800;
  color: #222;
}

.partner-title span {
  color: #ff6a2a;
}

/* Subtext */
.partner-subtext {
  max-width: 720px;
  margin: auto;
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

/* Card */
.partner-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
}

/* Icon Wrapper */
.partner-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
}

/* Green Icon */
.partner-icon.green {
  background: #e7ffef;
  color: #16a34a;
}

/* Blue Icon */
.partner-icon.blue {
  background: #e6ebff;
  color: #1d4ed8;
}

/* Content */
.partner-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.partner-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .partner-card {
    flex-direction: column;
    text-align: center;
  }
}
/* Card */
.info-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

/* Icon Box */
.info-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
}

/* Purple Icon */
.info-icon.purple {
  background: #f3e8ff;
  color: #a21caf;
}

/* Yellow Icon */
.info-icon.yellow {
  background: #fff7cc;
  color: #ca8a04;
}

/* Content */
.info-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.info-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .info-card {
    flex-direction: column;
    text-align: center;
  }
}
/* ===== PROCESS HEADING SECTION ===== */
.process-heading-section {
  background: #ffffff;
}

/* Pill */
.process-pill {
  background: #fff1ea;
  color: #ff6a2a;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

/* Title */
.process-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.25;
  color: #000;
}

.process-title span {
  color: #ff6a2a;
}

/* Sub Text */
.process-subtext {
  max-width: 820px;
  margin: auto;
  font-size: 17px;
  color: #555;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .process-title {
    font-size: 32px;
  }

  .process-subtext {
    font-size: 16px;
  }
}
/* ===== PROCESS TIMELINE ===== */


/* Numbers */
.step-num {
  font-size: 44px;
  font-weight: 800;
  color: #555;
}

.orange-text {
  color: #f15a29;
}

/* Bar */
.process-bar {
  display: flex;
  margin: 30px 0;
}

.process-step {
  flex: 1;
  padding: 16px 10px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  position: relative;
}

.process-step.orange {
  background: #f15a29;
}

.process-step.dark {
  background: #4a4a4a;
}

/* Arrow */
.process-step::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid currentColor;
}

.process-step.orange::after {
  border-top-color: #f15a29;
}

.process-step.dark::after {
  border-top-color: #4a4a4a;
}

/* Text blocks */
.process-top p,
.process-bottom p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}

/* ===== MOBILE ===== */
.process-mobile {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-step {
  background: #f7f7f7;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.mobile-step span {
  font-size: 28px;
  font-weight: 800;
  color: #f15a29;
}

.mobile-step h5 {
  margin-top: 10px;
  font-weight: 700;
}

.mobile-step p {
  color: #555;
  font-size: 15px;
}
/* ===== CTA SECTION ===== */
.cta-section {
  background: #ffffff;
}

/* Box */
.cta-box {
  background: #fff3ee;
  border: 1.5px solid #ff6a2a;
  border-radius: 20px;
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

/* Title */
.cta-title {
  font-size: 36px;
  font-weight: 800;
  color: #222;
  margin-bottom: 12px;
}

/* Sub Text */
.cta-subtext {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

/* Button */
.cta-btn {
  background: #f15a29;
  color: #fff;
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  background: #d94f22;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .cta-title {
    font-size: 28px;
  }

  .cta-subtext {
    font-size: 16px;
  }

  .cta-box {
    padding: 40px 18px;
  }
}
/* ===== INDUSTRIES SECTION ===== */
.industries-section {
  background: #ffffff;
}

/* Heading */
.industries-title {
  font-size: 44px;
  font-weight: 800;
  color: #000;
}

.industries-subtitle {
  font-size: 18px;
  color: #555;
  margin-top: 8px;
}

/* Card */
.industry-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
}

/* Image */
.industry-card img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* Title */
.industry-card h4 {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 700;
  color: #f15a29;
}

/* Text */
.industry-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .industries-title {
    font-size: 32px;
  }
}
/* ===== FOOTER ===== */
.main-footer {
  background: #242424;
  color: #fff;
  padding: 60px 0 20px;
  font-size: 15px;
}

.footer-col h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-logo span {
  font-weight: 400;
}

.footer-text {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Lists */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #f15a29;
}

/* Social */
.footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border: 1px solid #f15a29;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 8px;
  font-size: 16px;
}

.footer-social a:hover {
  background: #f15a29;
}

/* Contact */
.footer-col p {
  color: #ccc;
  line-height: 1.6;
}

.footer-col i {
  color: #f15a29;
  margin-right: 8px;
}
.footer-social  i
{
     color: #fff;
  margin-right: 0px;
}
/* WhatsApp */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0abf53;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
}

.whatsapp-btn:hover {
  background: #08a948;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #ccc;
}

.footer-links a {
  color: #ccc;
  margin-left: 16px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #f15a29;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
    justify-content: center;
  }

  .footer-links a {
    margin: 0 8px;
  }
}
/* ===== TECHNOLOGY SECTION ===== */
.technology-section {
  background: #ffffff;
}

/* Pill */
.tech-pill {
  background: #fff1ea;
  color: #ff6a2a;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

/* Heading */
.tech-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.25;
  color: #222;
}

.tech-title span {
  color: #ff6a2a;
}

/* Text */
.tech-subtext {
  max-width: 900px;
  margin: auto;
  font-size: 17px;
  color: #555;
  line-height: 1.8;
}

/* Logos */
.tech-logos {
  justify-content: center;
  row-gap: 24px;
}

.tech-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
}

.tech-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .tech-title {
    font-size: 32px;
  }

  .tech-subtext {
    font-size: 16px;
  }
}
/* ===== CONTACT SECTION ===== */
.contact-section {
  background: #ffffff;
}

/* Wrapper */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* LEFT */
.contact-info {
  background: #fff3ee;
  padding: 50px 40px;
}

.contact-info h2 {
  font-size: 36px;
  font-weight: 800;
}

.contact-info h2 span {
  color: #f15a29;
}

.contact-info p {
  color: #555;
  margin: 14px 0 30px;
  font-size: 16px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

.contact-list i {
  font-size: 22px;
  color: #f15a29;
}

/* Call Box */
.call-box {
  background: #222;
  color: #fff;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.call-box i {
  font-size: 26px;
  color: #f15a29;
}

.call-box span {
  font-size: 14px;
  color: #ccc;
}

/* RIGHT */
.contact-form {
  background: #ffffff;
  padding: 50px 40px;
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f15a29;
}

/* Button */
.submit-btn {
  width: 100%;
  background: #f15a29;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #d94f22;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 40px 24px;
  }
}
/* ===== GLOBAL SERVICES SECTION ===== */
.global-services-section {
  background: #ffffff;
  padding: 80px 0;
  font-family: inherit;
}

/* Pill */
.global-pill {
  display: inline-block;
  background: #fff1ea;
  color: #ff6a2a;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 40px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.service-btn {
  background: #ffffff;
  padding: 20px 16px;
  border-radius: 14px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-btn:hover {
  transform: translateY(-4px);
}

.service-btn.active {
  background: #f15a29;
  color: #ffffff;
}

/* Locations */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.location-col h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #222;
}

.location-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-col ul li {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .global-services-section {
    padding: 60px 0;
  }
}
/* ===== SCHEDULE CARD ===== */
.schedule-card {
  background: #222;
  border-radius: 20px;
  padding: 22px;
  max-width: 420px;
  color: #fff;
}

/* Top Section */
.schedule-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

/* Icon */
.schedule-icon {
  width: 48px;
  height: 48px;
  background: #f15a29;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}

/* Text */
.schedule-text h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.schedule-text p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #bbb;
}

/* Button */
.schedule-btn {
  display: block;
  width: 100%;
  background: #ffffff;
  color: #222;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}

.schedule-btn:hover {
  background: #f3f3f3;
}
/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 80px 20px;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 20px;
}

.blog-header h2 {
  font-size: 40px;
  font-weight: 800;
  margin: 0;
}

.blog-header p {
  margin-top: 8px;
  color: #666;
}

.view-all {
  color: #f15a29;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Image */
.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Tag */
.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  background: #fff;
  font-weight: 600;
}

.tag.seo { color: #ff6b35; }
.tag.trends { color: #ff6b35; }
.tag.web { color: #ff6b35; }

/* Content */
.blog-content {
  padding: 22px;
}

.read-time {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

.blog-content h3 {
  font-size: 22px;
  margin: 0 0 16px;
  line-height: 1.4;
}

.read-more {
  color: #f15a29;
  font-weight: 600;
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-header h2 {
    font-size: 32px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== CTA DARK SECTION ===== */
.cta-dark {
  position: relative;
  padding: 50px 20px;
  background: #1e1e1e;
  overflow: hidden;
}

/* Concentric circles */
.cta-bg {
  position: absolute;
  inset: -20%;
  
  pointer-events: none;
}

/* Content */
.cta-content {
  position: relative;

  margin: auto;
  text-align: center;
  color: #fff;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-content h2 span {
  color: #f15a29;
}

.cta-content p {
  font-size: 18px;
  color: #d1d1d1;
  max-width: 720px;
  margin: 0 auto 40px;
}

/* Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-outline {
  padding: 14px 28px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all .3s ease;
}

.btn-outline:hover {
  background: #fff;
  color: #1e1e1e;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #14c656;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: transform .3s ease, box-shadow .3s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(20,198,86,.35);
}

.wa-icon {
  font-size: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 36px;
  }

  .cta-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .cta-content h2 {
    font-size: 30px;
  }

  .btn-outline,
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}
.case-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Image Card */
.image-card {
    position: relative;
    width: 50%;
    border-radius: 15px;
    overflow: hidden;
}

.image-card img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

/* Growth Badge */
.growth-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.growth-badge h3 {
    font-size: 28px;
    color: #ff5a1f;
    font-weight: 700;
}

.growth-badge p {
    font-size: 14px;
    color: #555;
}

/* Content */
.case-content {
    width: 50%;
    background:#F7F7F7;
    padding:30px;
}

.tag {
    display: inline-block;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.case-content h3 {
    font-size: 26px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
}

.case-content strong {
    font-weight: 700;
}

.author {
    font-size: 14px;
    color: #777;
}

/* Dots */
.dots {
    text-align: center;
    margin-top: 40px;
}

.dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 4px;
}

.dots span.active {
    background: #ff5a1f;
}

/* Responsive */
@media (max-width: 992px) {
    .case-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .image-card,
    .case-content {
        width: 100%;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .case-content h3 {
        font-size: 22px;
    }
}