body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000024;
  color: #fff;
}

.switcher-bar {
  background-color: #2c2c2c;
  padding: 10px 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.switcher-bar .logo img {
  height: 40px;
}

.product-switcher a {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  margin-left: 20px;
  display: inline-block;
}

.product-switcher .badge {
  background-color: #ff66c4;
  padding: 4px 8px;
  border-radius: 12px;
  margin-left: 5px;
  font-size: 0.8rem;
  color: white;
}

.header-btn a {
  color: white;
  font-size: 1.2rem;
  margin-left: 15px;
  text-decoration: none;
}

.header-btn a:hover {
  color: #ff66c4;
}

/* Icon placeholders (replace with Font Awesome or custom SVGs) */
.icon-remove::before {
  content: "\2715"; /* ❌ */
}

.icon-shopping-cart::before {
  content: "\1F6D2"; /* 🛒 */
}

.icon-mobile-phone::before {
  content: "\1F4F1"; /* 📱 */
}

.icon-tablet::before {
  content: "\1F4F2"; /* 📲 */
}

.icon-desktop::before {
  content: "\1F5A5"; /* 🖥 */
}

/* Responsive visibility (simplified) */
.hidden-xs {
  display: none;
}

@media (min-width: 768px) {
  .hidden-xs.visible {
    display: inline-block;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #000029;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
}

.quote-btn {
  padding: 10px 20px;
  background-color: transparent;
  border: 2px solid #ff66c4;
  border-radius: 30px;
  color: #ff66c4;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 50px;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: #ff66c4;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.service-btn {
  padding: 12px 25px;
  background-color: #ff66c4;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.hero-image img {
  width: 600px;
  max-width: 100%;
}

.services-section {
  text-align: center;
  padding: 80px 40px;
  background-color: #fff;
  color: #0a0a23;
}

.services-header .subtitle {
  color: #ff66c4;
  font-weight: bold;
  margin-bottom: 10px;
}

.services-header h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #0a0a23;
  margin-bottom: 50px;
}

.services-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  transition: 0.3s ease;
}

.service-card img {
  height: 60px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0a0a23;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

.growth-section {
  background-color: #f9f9f9;
  padding: 80px 50px;
}

.growth-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.growth-image-wrapper {
  position: relative;
  flex: 1;
}

.growth-image {
  border-radius: 16px;
  width: 100%;
  max-width: 450px;
  height: auto;
}

.notification-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  align-items: center;
  max-width: 300px;
}

.notification-card img {
  width: 32px;
  height: 32px;
}

.notification-card strong {
  font-size: 1rem;
  color: #0a0a23;
}

.notification-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
}

.growth-content {
  flex: 1;
  max-width: 500px;
}

.growth-content h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  color: #0a0a23;
}

.growth-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.growth-feature img {
  width: 40px;
  height: 40px;
}

.growth-feature h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #0a0a23;
}

.growth-feature p {
  font-size: 0.95rem;
  color: #555;
  margin-top: 5px;
}

.learn-more-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 25px;
  background-color: #ff66c4;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
}

.industries {
  padding: 80px 50px;
  max-width: 1200px;
  margin: auto;
}

.content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.left h2 {
  color: #ff4081;
  font-weight: 60;
  font-size: 25px;
  margin-bottom: 10px;
}

.left h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}

.right {
  max-width: 400px;
  font-size: 14px;
  color: #ccc;
}

.boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.box {
  flex: 1;
  min-width: 200px;
  border: 1px solid #868484;
  padding: 30px 20px;
  text-align: center;
  background: transparent;
  transition: 0.4s;
}

.box:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #ff4081;
}

.box i {
  font-size: 28px;
  color: #ff4081;
  margin-bottom: 15px;
  display: block;
}

.box h4 {
  font-size: 16px;
  line-height: 1.4;
  color: white;
}

.footer-note {
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

.footer-note a {
  color: #ff4081;
  text-decoration: underline;
}

.partner-section {
  background-color: #ffffff;
  padding: 60px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 1100px;
  margin: auto;
}

.partner-section h2 {
  font-size: 30px;
  color: #333;
  margin-bottom: 20px;
}

.partner-section .description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.quote-button {
  display: inline-block;
  background-color: #e91e63;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-bottom: 40px;
}

.quote-button:hover {
  background-color: #c2185b;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.stat-box {
  background-color: #f9f9f9;
  padding: 25px 30px;
  border-radius: 10px;
  min-width: 200px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  flex: 1 1 200px;
}

.stat-box h3 {
  font-size: 32px;
  color: #e91e63;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .stat-box {
    flex: 1 1 100%;
  }

  .partner-section h2 {
    font-size: 24px;
  }

  .partner-section .description {
    font-size: 15px;
  }
}



/* Row Setup */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px 20px;
}

/* Column Width */
.col-lg-4, .col-md-4, .col-sm-6 {
  flex: 1 1 300px;
  max-width: 300px;
}

/* Single Location Box */
.single-location {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-location:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Image Wrapper */
.location-img {
  position: relative;
}

.location-img img {
  width: 100%;
  height: 220px;
  background-color: #555;
  object-fit: cover;
  display: block;
}

/* Overlay Details */
.location-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
}

.location-details h4 {
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.location-details p {
  font-size: 20px;
  margin-bottom: 80px;
}

.location-details img {
  width: 25px;
  height: auto;
}

/* Title Below Card */
.single-location h3 {
  font-size: 20px;
  padding: 20px;
  text-align: center;
  line-height: 1.4;
}

.single-location h3 a {
  text-decoration: none;
  color: #e91e63;
  transition: color 0.3s ease;
}

.single-location h3 a:hover {
  color: #c2185b;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .col-lg-4, .col-md-4, .col-sm-6 {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.section-img-bg2 {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-over1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  z-index: -1;
}

/* Video Icon */
.video-icon .btn-icon {
  display: inline-block;
  font-size: 30px;
  color: #fff;
  background: #ff4a57;
  padding: 20px;
  border-radius: 50%;
  transition: 0.3s;
}

.video-icon .btn-icon:hover {
  background: #e63e4a;
}

/* Heading Style */
.single-question h2 {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* CTA Button */
.white-btn {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.white-btn:hover {
  background: #111;
  color: #fff;
}