/*==========================
 HERO & ABOUT - White Background
==========================*/

.hero-section,
.about-section {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  background: #ffffff;
}

/* Background circles - subtle */
.hero-section::before,
.about-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #00adf208;
  border-radius: 50%;
  top: -180px;
  right: -120px;
}

.hero-section::after,
.about-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #f8b81f10;
  border-radius: 50%;
  left: -100px;
  bottom: -100px;
}

/* Tags */
.hero-tag,
.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #00adf2;
  border-radius: 40px;
  padding: 10px 20px;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
  margin-bottom: 25px;
}

.hero-tag i,
.about-tag i {
  color: #00adf2;
}

.about-tag span {
  color: #00adf2;
}

/* Headings */
.hero-section h1,
.about-title {
  font-size: 58px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.hero-section h1 span,
.about-title span {
  color: #00adf2;
}

.hero-section p,
.about-text {
  font-size: 18px;
  color: #64748b;
  margin: 30px 0;
  line-height: 1.8;
}

.about-text {
  margin: 0 0 16px 0;
}

.about-text strong {
  color: #0f172a;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: #00adf2;
  color: #fff;
  padding: 15px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: .35s;
}

.btn-primary-custom:hover {
  background: #008ec6;
  color: #fff;
  transform: translateY(-3px);
}

.btn-outline-custom {
  border: 2px solid #00adf2;
  color: #00adf2;
  padding: 15px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: .35s;
}

.btn-outline-custom:hover {
  background: #00adf2;
  color: #fff;
}

/* Stats - Hero only */
.hero-stats {
  display: flex;
  gap: 45px;
  margin-top: 45px;
}

.hero-stats h3 {
  color: #00adf2;
  font-size: 34px;
  font-weight: 700;
}

.hero-stats span {
  color: #64748b;
}

/* Images */
.hero-image,
.about-visual {
  position: relative;
}

.hero-image img,
.image-card {
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.image-card {
  overflow: hidden;
  background: #fff;
  transition: transform 0.4s ease;
}

.image-card:hover {
  transform: translateY(-8px);
}

.image-overlay {
  position: relative;
  overflow: hidden;
}

.image-overlay img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.image-card:hover .image-overlay img {
  transform: scale(1.05);
}

.overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 40px;
  font-weight: 600;
  color: #0f172a;
  font-size: 0.9rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
}

.tech-badge i {
  color: #00adf2;
}

/* Floating Cards - Hero */
.floating-card {
  position: absolute;
  background: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
  font-weight: 600;
  color: #0f172a;
  animation: float 4s ease-in-out infinite;
}

.floating-card i {
  color: #00adf2;
  margin-right: 8px;
}

.card1 { top: 8%; left: -40px; }
.card2 { right: -30px; top: 42%; }
.card3 { bottom: 5%; left: 40px; }

/* Floating Icons - About */
.icon-float {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #00adf2;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
  animation: float 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.icon-float:hover {
  transform: scale(1.15) rotate(10deg);
}

.icon-1 { top: -15px; right: -15px; }
.icon-2 { bottom: 60px; left: -20px; animation-delay: 1.2s; }
.icon-3 { top: 40%; right: -20px; animation-delay: 2.4s; }
.icon-4 { bottom: -10px; right: 30%; animation-delay: 0.6s; }

/* About Content Scroll */
.about-content {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 10px;
}

.about-content::-webkit-scrollbar {
  width: 5px;
}

.about-content::-webkit-scrollbar-track {
  background: rgba(0, 173, 242, 0.05);
  border-radius: 10px;
}

.about-content::-webkit-scrollbar-thumb {
  background: #00adf2;
  border-radius: 10px;
}

/* Float Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Responsive */
@media(max-width:991px) {
  .hero-section,
  .about-section {
    padding: 70px 0;
    text-align: center;
  }
  
  .hero-section h1,
  .about-title {
    font-size: 42px;
  }
  
  .hero-image,
  .about-visual {
    margin-top: 60px;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .card1 { left: 0; }
  .card2 { right: 0; }
  
  .icon-float {
    display: none;
  }
  
  .about-content {
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }
}

@media(max-width:576px) {
  .hero-section h1,
  .about-title {
    font-size: 34px;
  }
  
  .hero-section p,
  .about-text {
    font-size: 16px;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .hero-stats h3 {
    font-size: 26px;
  }
  
  .floating-card {
    display: none;
  }
}
/* ============================================================
   SERVICES SECTION - Modern Design
============================================================ */
.services-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px 0;
  background: #ffffff;
}

/* Background circles - subtle */
.services-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #00adf206;
  border-radius: 50%;
  top: -150px;
  left: -100px;
}

.services-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #f8b81f08;
  border-radius: 50%;
  bottom: -100px;
  right: -80px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.services-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #00adf2;
  border-radius: 40px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
  margin-bottom: 15px;
}

.services-tag i {
  color: #00adf2;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-title span {
  color: #00adf2;
}

.section-subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  position: relative;
  z-index: 1;
}

/* Service Card */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
  border: 1px solid rgba(0, 173, 242, 0.06);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00adf2, #008ec6);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before,
.service-card.active::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 173, 242, 0.12);
  border-color: rgba(0, 173, 242, 0.15);
}

.service-card.active {
  border-color: rgba(0, 173, 242, 0.2);
  box-shadow: 0 12px 40px rgba(0, 173, 242, 0.10);
}

/* Service Icon */
.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 173, 242, 0.08), rgba(0, 173, 242, 0.02));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  font-size: 30px;
  color: #00adf2;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #00adf2, #008ec6);
  color: #ffffff;
  transform: scale(1.05);
}

.service-card.active .service-icon {
  background: linear-gradient(135deg, #00adf2, #008ec6);
  color: #ffffff;
}

/* Service Content */
.service-card h6 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Service Button */
.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00adf2;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.service-btn:hover {
  color: #008ec6;
}

.service-btn:hover i {
  transform: translateX(5px);
}

.service-card.active .service-btn {
  color: #008ec6;
}

/* Responsive */
@media (max-width: 991px) {
  .services-section {
    padding: 60px 0 70px 0;
  }
  
  .section-title {
    font-size: 34px;
  }
  
  .service-card {
    padding: 25px 20px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 40px 0 50px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 15px;
  }
  
  .service-card {
    padding: 20px 15px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
  
  .service-card h6 {
    font-size: 15px;
  }
}

/* ============================================================
   HOW WE WORK SECTION - Timeline Approach
============================================================ */
.how-we-work-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px 0;
  background: #ffffff;
}

/* Background circles */
.how-we-work-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #00adf208;
  border-radius: 50%;
  top: -150px;
  left: -100px;
}

.how-we-work-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #f8b81f10;
  border-radius: 50%;
  bottom: -100px;
  right: -80px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.work-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #00adf2;
  border-radius: 40px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
  margin-bottom: 15px;
}

.work-tag i {
  color: #00adf2;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-title span {
  color: #00adf2;
}

.section-subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Work Flow - Vertical Timeline */
.work-flow {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Timeline Center Line */
.work-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #00adf2, #008ec6, #00adf2);
  transform: translateX(-50%);
  border-radius: 4px;
  animation: timelinePulse 3s ease-in-out infinite;
}

@keyframes timelinePulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Flow Step */
.flow-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.flow-step:last-child {
  margin-bottom: 0;
}

.flow-step.reverse {
  flex-direction: row-reverse;
}

/* Flow Line with Dot */
.flow-line {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  position: relative;
}

.flow-step .flow-line:first-child {
  justify-content: flex-end;
  padding-right: 30px;
}

.flow-step.reverse .flow-line:first-child {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 30px;
}

.flow-connector {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, #00adf2, #008ec6);
  opacity: 0.3;
  transition: all 0.4s ease;
}

.flow-step:hover .flow-connector {
  opacity: 1;
  height: 4px;
}

.flow-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #00adf2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 173, 242, 0.15);
}

.flow-step:hover .flow-dot {
  background: #00adf2;
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(0, 173, 242, 0.3);
}

.dot-number {
  font-size: 14px;
  font-weight: 800;
  color: #00adf2;
  transition: all 0.4s ease;
}

.flow-step:hover .dot-number {
  color: #ffffff;
}

/* Flow Content */
.flow-content {
  flex: 0 0 50%;
  padding: 0 30px;
}

.flow-step .flow-content {
  padding-left: 30px;
}

.flow-step.reverse .flow-content {
  padding-left: 0;
  padding-right: 30px;
  text-align: right;
}

.flow-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 173, 242, 0.08), rgba(0, 173, 242, 0.02));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #00adf2;
  margin-bottom: 15px;
  transition: all 0.4s ease;
}

.flow-step:hover .flow-icon {
  background: linear-gradient(135deg, #00adf2, #008ec6);
  color: #ffffff;
  transform: rotate(-10deg) scale(1.05);
}

.flow-step.reverse .flow-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.flow-step.reverse .flow-icon {
  margin-left: auto;
}

.flow-content h5 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.flow-content p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 380px;
}

.flow-step.reverse .flow-content p {
  text-align: right;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  .how-we-work-section {
    padding: 60px 0 70px 0;
  }
  
  .section-title {
    font-size: 34px;
  }
  
  .work-flow::before {
    left: 30px;
  }
  
  .flow-step,
  .flow-step.reverse {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-left: 60px;
  }
  
  .flow-line {
    flex: none;
    width: auto;
    margin-bottom: 15px;
  }
  
  .flow-step .flow-line:first-child {
    padding-right: 0;
    justify-content: flex-start;
  }
  
  .flow-step.reverse .flow-line:first-child {
    padding-left: 0;
  }
  
  .flow-connector {
    display: none;
  }
  
  .flow-content {
    flex: none;
    width: 100%;
    padding: 0 !important;
  }
  
  .flow-step.reverse .flow-content {
    text-align: left;
    align-items: flex-start;
  }
  
  .flow-step.reverse .flow-content p {
    text-align: left;
  }
  
  .flow-step.reverse .flow-icon {
    margin-left: 0;
  }
  
  .flow-dot {
    width: 40px;
    height: 40px;
  }
  
  .dot-number {
    font-size: 12px;
  }
  
  .flow-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .flow-content h5 {
    font-size: 18px;
  }
  
  .flow-content p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .how-we-work-section {
    padding: 40px 0 50px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 15px;
  }
  
  .work-flow::before {
    left: 20px;
  }
  
  .flow-step,
  .flow-step.reverse {
    padding-left: 45px;
    margin-bottom: 30px;
  }
  
  .flow-dot {
    width: 34px;
    height: 34px;
    border-width: 2px;
  }
  
  .dot-number {
    font-size: 11px;
  }
  
  .flow-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .flow-content h5 {
    font-size: 16px;
  }
  
  .flow-content p {
    font-size: 13px;
  }
}

/* ============================================================
   WHY CHOOSE US SECTION - No Cards Approach
============================================================ */
.why-choose-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px 0;
  background: #ffffff;
}

/* Background circles */
.why-choose-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #00adf206;
  border-radius: 50%;
  top: -200px;
  right: -150px;
}

.why-choose-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #f8b81f08;
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.choose-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #00adf2;
  border-radius: 40px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
  margin-bottom: 15px;
}

.choose-tag i {
  color: #00adf2;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-title span {
  color: #00adf2;
}

.section-subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Choose Grid - No Cards */
.choose-grid {
  position: relative;
  z-index: 1;
}

.choose-row {
  border-bottom: 1px solid rgba(0, 173, 242, 0.06);
}

.choose-row:last-child {
  border-bottom: none;
}

/* Choose Item - No Card Style */
.choose-item {
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border-right: 1px solid rgba(0, 173, 242, 0.06);
  background: transparent;
}

.choose-row .col-lg-4:last-child .choose-item {
  border-right: none;
}

.choose-item:hover {
  background: rgba(0, 173, 242, 0.02);
}

/* Number */
.choose-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(0, 173, 242, 0.06);
  line-height: 1;
  margin-bottom: 10px;
  transition: all 0.4s ease;
}

.choose-item:hover .choose-number {
  color: rgba(0, 173, 242, 0.15);
  transform: scale(1.05);
}

/* Icon */
.choose-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 173, 242, 0.08), rgba(0, 173, 242, 0.02));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  font-size: 28px;
  color: #00adf2;
  transition: all 0.4s ease;
}

.choose-item:hover .choose-icon {
  background: linear-gradient(135deg, #00adf2, #008ec6);
  color: #ffffff;
  transform: scale(1.05) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(0, 173, 242, 0.2);
}

/* Content */
.choose-item h5 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.choose-item p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  .why-choose-section {
    padding: 60px 0 70px 0;
  }
  
  .section-title {
    font-size: 34px;
  }
  
  .choose-item {
    padding: 30px 20px;
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 173, 242, 0.06);
  }
  
  .choose-row .col-md-6:last-child .choose-item {
    border-bottom: none;
  }
  
  .choose-row {
    border-bottom: none;
  }
  
  .choose-number {
    font-size: 36px;
  }
  
  .choose-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .choose-item h5 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .why-choose-section {
    padding: 40px 0 50px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 15px;
  }
  
  .choose-item {
    padding: 25px 15px;
  }
  
  .choose-number {
    font-size: 32px;
  }
  
  .choose-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
  
  .choose-item h5 {
    font-size: 15px;
  }
  
  .choose-item p {
    font-size: 13px;
  }
}

/* ============================================================
   TECHNOLOGIES SECTION - Updated
============================================================ */
.technologies-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px 0;
  background: #ffffff;
}

/* Background circles */
.technologies-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #00adf206;
  border-radius: 50%;
  top: -200px;
  right: -150px;
}

.technologies-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #f8b81f08;
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #00adf2;
  border-radius: 40px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
  margin-bottom: 15px;
}

.tech-tag i {
  color: #00adf2;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-title span {
  color: #00adf2;
}

.section-subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Tech Grid */
.tech-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Tech Category */
.tech-category {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px 20px 20px 20px;
  border: 1px solid rgba(0, 173, 242, 0.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
  transition: all 0.4s ease;
}

.tech-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 173, 242, 0.08);
  border-color: rgba(0, 173, 242, 0.12);
}

.category-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(0, 173, 242, 0.06);
}

.category-title i {
  color: #00adf2;
  font-size: 20px;
}

/* Tech Items */
.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Tech Item */
.tech-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(0, 173, 242, 0.04);
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tech-item:hover {
  background: #ffffff;
  border-color: #00adf2;
  box-shadow: 0 4px 15px rgba(0, 173, 242, 0.12);
  transform: translateY(-2px);
}

.tech-logo {
  width: 28px;
  height: 28px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #00adf2;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.tech-item:hover .tech-logo {
  background: #00adf2;
  color: #ffffff;
  transform: scale(1.1);
}

.tech-item span {
  font-size: 12px;
  font-weight: 500;
  color: #0f172a;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .technologies-section {
    padding: 60px 0 70px 0;
  }
  
  .section-title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tech-category {
    padding: 20px 15px;
  }
  
  .category-title {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .technologies-section {
    padding: 40px 0 50px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 15px;
  }
  
  .tech-category {
    padding: 15px 12px;
  }
  
  .category-title {
    font-size: 14px;
  }
  
  .tech-item {
    padding: 4px 10px 4px 6px;
  }
  
  .tech-logo {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  
  .tech-item span {
    font-size: 11px;
  }
}
/* ============================================================
   INDUSTRIES SECTION - Bubble/Icon Approach (No Cards)
============================================================ */
.industries-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px 0;
  background: #ffffff;
}

/* Background circles */
.industries-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #00adf206;
  border-radius: 50%;
  top: -200px;
  right: -150px;
}

.industries-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #f8b81f08;
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #00adf2;
  border-radius: 40px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
  margin-bottom: 15px;
}

.industry-tag i {
  color: #00adf2;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-title span {
  color: #00adf2;
}

.section-subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Industries Wrapper */
.industries-wrapper {
  position: relative;
  z-index: 1;
}

/* Industry Bubbles Row */
.industry-bubbles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 50px;
  margin-bottom: 40px;
}

.industry-bubbles:last-child {
  margin-bottom: 0;
}

/* Bubble Item */
.bubble-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bubble-item:hover {
  transform: translateY(-5px);
}

/* Bubble Icon */
.bubble-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 173, 242, 0.06), rgba(0, 173, 242, 0.02));
  border: 2px solid rgba(0, 173, 242, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #00adf2;
  transition: all 0.4s ease;
  position: relative;
}

.bubble-item:hover .bubble-icon {
  background: linear-gradient(135deg, #00adf2, #008ec6);
  color: #ffffff;
  border-color: #00adf2;
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(0, 173, 242, 0.25);
}

/* Connecting Line between bubbles */
.bubble-item::after {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(100% + 25px);
  width: 20px;
  height: 2px;
  background: rgba(0, 173, 242, 0.1);
}

.industry-bubbles .bubble-item:last-child::after {
  display: none;
}

/* Bubble Label */
.bubble-label {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
  transition: all 0.3s ease;
}

.bubble-item:hover .bubble-label {
  color: #00adf2;
}

/* Tooltip/Description on Hover */
.bubble-tooltip {
  position: absolute;
  bottom: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 173, 242, 0.06);
  width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  text-align: left;
}

.bubble-tooltip::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 15px;
  height: 15px;
  background: #ffffff;
  border-right: 1px solid rgba(0, 173, 242, 0.06);
  border-bottom: 1px solid rgba(0, 173, 242, 0.06);
}

.bubble-item:hover .bubble-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

.bubble-tooltip h5 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.bubble-tooltip p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  .industries-section {
    padding: 60px 0 70px 0;
  }
  
  .section-title {
    font-size: 34px;
  }
  
  .industry-bubbles {
    gap: 25px 35px;
  }
  
  .bubble-icon {
    width: 70px;
    height: 70px;
    font-size: 26px;
  }
  
  .bubble-item::after {
    top: 35px;
    width: 15px;
    left: calc(100% + 18px);
  }
  
  .bubble-tooltip {
    width: 220px;
    padding: 15px 18px;
  }
}

@media (max-width: 768px) {
  .industry-bubbles {
    gap: 20px 25px;
  }
  
  .bubble-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
  
  .bubble-label {
    font-size: 11px;
  }
  
  .bubble-item::after {
    display: none;
  }
  
  .bubble-tooltip {
    display: none;
  }
}

@media (max-width: 576px) {
  .industries-section {
    padding: 40px 0 50px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 15px;
  }
  
  .industry-bubbles {
    gap: 15px 20px;
  }
  
  .bubble-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  
  .bubble-label {
    font-size: 10px;
    margin-top: 8px;
  }
  
  .bubble-tooltip {
    display: none;
  }
}

/* ============================================================
   FAQ SECTION
============================================================ */
.faq-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px 0;
  background: #f8fcff;
}

/* Background circles */
.faq-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #00adf204;
  border-radius: 50%;
  top: -200px;
  right: -150px;
}

.faq-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #f8b81f06;
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.faq-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #00adf2;
  border-radius: 40px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
  margin-bottom: 15px;
}

.faq-tag i {
  color: #00adf2;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-title span {
  color: #00adf2;
}

.section-subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* FAQ Grid */
.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* FAQ Item */
.faq-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 173, 242, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(0, 173, 242, 0.12);
  box-shadow: 0 8px 30px rgba(0, 173, 242, 0.06);
}

.faq-item.active {
  border-color: rgba(0, 173, 242, 0.15);
  box-shadow: 0 8px 30px rgba(0, 173, 242, 0.08);
}

/* FAQ Question */
.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.faq-item.active .faq-question {
  padding-bottom: 12px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: rgba(0, 173, 242, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #00adf2;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  background: #00adf2;
  color: #ffffff;
}

.faq-item:hover .faq-icon:not(.active) {
  background: rgba(0, 173, 242, 0.1);
}

.faq-question h4 {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  flex: 1;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question h4 {
  color: #00adf2;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 173, 242, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #00adf2;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item:hover .faq-toggle {
  background: rgba(0, 173, 242, 0.08);
}

.faq-item.active .faq-toggle {
  background: #00adf2;
  color: #ffffff;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* FAQ CTA */
.faq-cta {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  background: linear-gradient(135deg, #00adf2, #008ec6);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 173, 242, 0.2);
}

.faq-cta-content {
  color: #ffffff;
}

.faq-cta-content i {
  font-size: 36px;
  margin-bottom: 15px;
  display: block;
}

.faq-cta-content h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-cta-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.faq-cta-content .btn-primary-custom {
  background: #ffffff;
  color: #00adf2;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.faq-cta-content .btn-primary-custom:hover {
  background: #f8fcff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-cta-content .btn-primary-custom i {
  font-size: 16px;
  margin: 0;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  .faq-section {
    padding: 60px 0 70px 0;
  }
  
  .section-title {
    font-size: 34px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .faq-question h4 {
    font-size: 14px;
  }
  
  .faq-cta {
    padding: 30px 20px;
  }
  
  .faq-cta-content h4 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 40px 0 50px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 15px;
  }
  
  .faq-question {
    padding: 14px 15px;
    gap: 10px;
  }
  
  .faq-question h4 {
    font-size: 13px;
  }
  
  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
  
  .faq-toggle {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 15px 14px 15px;
  }
  
  .faq-answer p {
    font-size: 13px;
  }
  
  .faq-cta {
    padding: 25px 15px;
  }
  
  .faq-cta-content h4 {
    font-size: 18px;
  }
  
  .faq-cta-content p {
    font-size: 14px;
  }
  
  .faq-cta-content .btn-primary-custom {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* ============================================================
   FOOTER SECTION - Modern Design
============================================================ */
.footer-section {
  position: relative;
  background: #0f172a;
  color: #ffffff;
  padding: 50px 0 0 0;
  overflow: hidden;
}

/* Footer Top Decoration */
.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00adf2, #008ec6, #00adf2);
}

/* Badges Row */
.badges-row {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 40px;
}

.badges-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.badges-wrapper a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.badges-wrapper a:hover {
  transform: scale(1.05);
}

.badges-wrapper img {
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.badges-wrapper a:hover img {
  filter: brightness(1);
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 30px;
}

/* Footer Column */
.footer-col {
  min-width: 0;
}

.footer-title {
  font-size: 15px;
  font-weight: 700;
  color: #00adf2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #00adf2, #008ec6);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a i {
  font-size: 10px;
  color: #00adf2;
  transition: transform 0.3s ease;
}

.footer-links li a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-links li a:hover i {
  transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin: 0;
}

.copyright p a {
  color: #00adf2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright p a:hover {
  color: #008ec6;
}

.visitor-count p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.visitor-count p i {
  color: #00adf2;
}

.visitor-count p strong {
  color: #ffffff;
  font-size: 16px;
}

/* Back to Top */
.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 173, 242, 0.1);
  border-radius: 50%;
  color: #00adf2;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 173, 242, 0.2);
}

.back-to-top:hover {
  background: #00adf2;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 173, 242, 0.3);
}

.back-to-top i {
  font-size: 18px;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 36px;
  right: 40px;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.whatsapp-float i {
  font-size: 32px;
}

/* Phone Float Button */
.phone-float {
  position: fixed;
  bottom: 36px;
  left: 40px;
  background: #007bff;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
}

.phone-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 123, 255, 0.4);
  color: #fff;
}

.phone-float i {
  font-size: 28px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 991px) {
  .badges-wrapper {
    gap: 20px;
  }
  
  .badges-wrapper img {
    width: 100px !important;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float i {
    font-size: 26px;
  }
  
  .phone-float {
    width: 50px;
    height: 50px;
  }
  
  .phone-float i {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 30px 0 0 0;
  }
  
  .badges-row {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  
  .badges-wrapper {
    gap: 15px;
  }
  
  .badges-wrapper img {
    width: 80px !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 25px;
  }
  
  .footer-title {
    font-size: 14px;
  }
  
  .footer-links li a {
    font-size: 12px;
  }
  
  .copyright p {
    font-size: 12px;
  }
  
  .visitor-count p {
    font-size: 12px;
  }
  
  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 25px;
    right: 25px;
  }
  
  .whatsapp-float i {
    font-size: 22px;
  }
  
  .phone-float {
    width: 45px;
    height: 45px;
    bottom: 25px;
    left: 25px;
  }
  
  .phone-float i {
    font-size: 18px;
  }
}