.team-member {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h4 {
  font-weight: 600;
  margin-bottom: 4px;
}

.team-info span {
  font-size: 14px;
  color: #6c757d;
}

.team-info .social a {
  margin: 0 6px;
  color: #333;
  transition: color 0.3s;
}

.team-info .social a:hover {
  color: #0d6efd;
}

.team-member img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
/* ===== NEW SECTIONS ADDED BY SEO UPDATE ===== */

/* Trust Section */
.trust-stat-box {
  background: #fff;
  transition: transform 0.3s ease;
}
.trust-stat-box:hover {
  transform: translateY(-6px);
}
.client-logo-box {
  font-weight: 600;
  color: #444;
  background: #f8f9fa;
  font-size: 14px;
  transition: all 0.3s;
}
.client-logo-box:hover {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd !important;
}

/* Testimonials */
.testimonial-card-new {
  background: #fff;
  border-left: 4px solid #0d6efd;
  transition: transform 0.3s ease;
}
.testimonial-card-new:hover {
  transform: translateY(-5px);
}
.testimonials-section {
  background: #f8f9fa;
  padding: 80px 0;
}

/* Portfolio */
.portfolio-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12) !important;
}

/* Case Studies */
.case-card {
  border-top: 4px solid #0d6efd;
  transition: transform 0.3s ease;
}
.case-card:hover {
  transform: translateY(-5px);
}
.case-detail p {
  line-height: 1.5;
}

/* Why Choose Us */
.why-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 3px solid transparent;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.10) !important;
  border-bottom-color: #0d6efd;
}

/* Hero CTA button */
.hero-buttons .btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
}

/* Responsive mobile adjustments */
@media (max-width: 576px) {
  .trust-stat-box h3 { font-size: 2rem; }
  .why-card { margin-bottom: 10px; }
}
/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 45px;
  width: auto;
  margin-right: 10px;
  border-radius: 6px;
}

/* ===== BRAND TEXT ===== */
.brand-name {
  font-size: 30px;
  font-weight: 800;
  margin: 0;
  line-height: 1;
  letter-spacing: 1px;

  background: linear-gradient(90deg, #0d83fd, #00c6ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 10px rgba(13, 131, 253, 0.3);
}

/* Second word */
.brand-name span {
  font-weight: 600;
  -webkit-text-fill-color: #333;
}

/* Hover effect */
.logo:hover .brand-name {
  transform: scale(1.05);
  transition: 0.3s;
}

/* Fix header height */
.header .header-container {
  height: 70px;
  padding: 10px 25px;
}
/* ===== HERO IMAGE STYLING ===== */
.hero-image img {
  max-width: 100%;
  border-radius: 20px;                 /* smooth rounded corners */
  
  /* Soft shadow (chipkayi hui feel remove) */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

  /* Slight fade effect */
  opacity: 0.95;

  /* Smooth animation */
  animation: floatImage 4s ease-in-out infinite;

  transition: all 0.3s ease;
}

/* Hover effect (premium feel) */
.hero-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Floating animation */
@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* ===== PREMIUM TRUST BADGE ===== */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: -18px;      /* badge ko thoda upar shift karega */
  margin-bottom: 22px;

  padding: 10px 20px;
  border-radius: 50px;

  background: linear-gradient(135deg, #eef6ff, #ffffff);
  border: 1px solid rgba(13, 131, 253, 0.25);
  box-shadow: 0 10px 28px rgba(13, 131, 253, 0.15);

  color: #0b5ed7;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;

  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.trust-badge i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0d83fd;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.trust-badge span {
  color: #17406d;
}

.trust-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(13, 131, 253, 0.18),
    transparent
  );
  transition: 0.6s;
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(13, 131, 253, 0.25);
}

.trust-badge:hover::before {
  left: 120%;
}
.hero .hero-content h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  color: #132238;
}

.hero .hero-content h1 .accent-text {
  background: linear-gradient(90deg, #0d83fd, #00c6ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-short-line {
  font-size: 20px;
  line-height: 1.6;
  color: #34495e;
  font-weight: 600;
  max-width: 620px;
}

.hero-desc-line {
  font-size: 16px;
  line-height: 1.8;
  color: #667085;
  max-width: 650px;
}

.hero-desc-line strong {
  color: #0d83fd;
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 36px;
  }

  .hero-short-line {
    font-size: 17px;
  }
}

.brand-highlight {
  font-weight: 800;
  font-size: 18px;

  background: linear-gradient(90deg, #0d83fd, #00c6ff, #0d83fd);
  background-size: 200% auto;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: shineText 3s linear infinite;

  letter-spacing: 1px;
}

@keyframes shineText {
  to {
    background-position: 200% center;
  }
}
.hero-desc-line {
  color: #1a1a1a;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 5px;
}

.hero-second-line {
  margin-top: -15px;
  color: #444;
  font-style: italic;
  font-size: 16.6px;
}

/* ===== PREMIUM CTA BUTTONS ===== */

/* Consultation Button */
.btn-consultation {
  background: linear-gradient(45deg, #0d83fd, #00c6ff);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(13, 131, 253, 0.3);
}

.btn-consultation:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 30px rgba(13, 131, 253, 0.4);
  color: #fff;
}

/* Quote Button */
.btn-quote {
  background: transparent;
  color: #0d83fd;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid #0d83fd;
  transition: all 0.3s ease;
}

.btn-quote:hover {
  background: #0d83fd;
  color: #fff;
  transform: scale(1.05);
}


/* ===== PREMIUM CLIENT LOGO SLIDER - FINAL ===== */

.clients-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #132238;
  margin-bottom: 28px;
  position: relative;
}

.clients-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #0d83fd, #00c6ff);
  display: block;
  margin: 10px auto 0;
  border-radius: 20px;
}

.client-logo-slider {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scroll-behavior: smooth;
  padding: 18px 10px 28px;
}

.client-logo-slider.active {
  cursor: grabbing;
}

.client-logo-slider::-webkit-scrollbar {
  height: 8px;
}

.client-logo-slider::-webkit-scrollbar-track {
  background: #eaf4ff;
  border-radius: 20px;
}

.client-logo-slider::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #0d83fd, #00c6ff);
  border-radius: 20px;
}

.client-logo-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.client-logo-item {
  width: 200px;
  height: 145px;
  flex: 0 0 auto;
  background: linear-gradient(145deg, #ffffff, #f3f9ff);
  border: 1px solid rgba(13, 131, 253, 0.18);
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(13, 131, 253, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.client-logo-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(13, 131, 253, 0.12),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.6s;
}

.client-logo-item:hover::before {
  transform: translateX(100%);
}

.client-logo-item:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 18px 45px rgba(13, 131, 253, 0.22);
  border-color: #0d83fd;
}

.client-logo-item img {
  max-width: 100%;
  max-height: 105px;
  object-fit: contain;
  transform: rotate(0deg);
  transition: 0.35s ease;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.12));
  user-select: none;
  pointer-events: none;
}

.client-logo-item:hover img {
  transform: scale(1.08) rotate(0deg);
}

.client-logo-name {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: linear-gradient(90deg, #0d83fd, #00c6ff);
  color: #fff;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  white-space: nowrap;
  transition: 0.3s ease;
  z-index: 2;
}

.client-logo-item:hover .client-logo-name {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== HERO BUTTON DISTANCE FIX ===== */

.hero .hero-content .hero-buttons {
  margin-top: 45px !important;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .client-logo-item {
    width: 165px;
    height: 120px;
  }

  .client-logo-item img {
    max-height: 85px;
  }

  .hero .hero-content .hero-buttons {
    margin-top: 35px !important;
    justify-content: center;
  }
}


/* ===== PREMIUM REVIEW SLIDER ===== */
/* ===== PREMIUM REVIEW SLIDER FINAL ===== */

.review-slider {
  max-width: 1120px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scroll-behavior: smooth;
  padding: 25px 10px 40px;
}

.review-slider.active {
  cursor: grabbing;
}

/* Scrollbar */
.review-slider::-webkit-scrollbar {
  height: 8px;
}

.review-slider::-webkit-scrollbar-track {
  background: #eaf4ff;
  border-radius: 20px;
}

.review-slider::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #0d83fd, #00c6ff);
  border-radius: 20px;
}

/* Track */
.review-track {
  display: flex;
  gap: 26px;
  width: max-content;
}

/* ===== REVIEW CARD ===== */
.review-card {
  width: 340px;
  min-height: 270px;
  flex: 0 0 auto;

  background: linear-gradient(145deg, #ffffff, #f8fbff);
  border-radius: 24px;
  padding: 26px;

  border: 1px solid rgba(13, 131, 253, 0.18);
  box-shadow: 0 15px 40px rgba(13, 131, 253, 0.10);

  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;

  backdrop-filter: blur(6px);
}

/* Shine animation */
.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(13, 131, 253, 0.15),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.6s;
}

.review-card:hover::before {
  transform: translateX(100%);
}

/* Hover effect */
.review-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #0d83fd;
  box-shadow: 0 20px 55px rgba(13, 131, 253, 0.25);
}

/* Stars */
.review-stars {
  color: #ffc107;
  font-size: 20px;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

/* Review text */
.review-text {
  color: #344054;
  font-size: 15px;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

/* User section */
.review-user {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}

/* Avatar */
.review-user .testimonial-avatar {
  width: 48px;
  height: 48px;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;

  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Name */
.review-user strong {
  color: #132238;
  font-size: 16px;
}

/* Company */
.review-user small {
  color: #667085;
  font-size: 13px;
}

.review-user .testimonial-avatar {
  width: 48px;
  height: 48px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .review-card {
    width: 280px;
    min-height: 250px;
  }
}

/* ===== BUTTON SPACING FIX ===== */

.consultation-btn {
  margin-top: 80px !important;
}

/* ===== TRUSTED SECTION SPACING FIX ===== */

.trusted-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

/* Title */
.trusted-title {
  font-size: 24px;
  font-weight: 700;
  color: #2d465e;
  margin-bottom: 10px;
}

/* Center line text */
.trusted-subtext {
  font-size: 16px;
  color: #5f6f81;
  max-width: 700px;
  margin: 0 auto;

  /* 🔥 spacing between title & logos */
  margin-bottom: 40px;
  margin-top: 10px;
}

/* 🔥 LOGOS KO NICHE SHIFT */
.client-logo-slider {
  margin-top: 30px;
}

/*  Service design */


/* ===== PREMIUM SERVICE CARD ===== */

.premium-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* glowing background effect */
.premium-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg,#0072ff,#00c6ff);
  border-radius: 50%;
  top: -80px;
  right: -80px;
  opacity: 0.1;
  transition: 0.4s;
}

/* hover animation */
.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,114,255,0.25);
}

.premium-card:hover::before {
  transform: scale(1.4);
  opacity: 0.2;
}

/* icon animation */
.premium-card .icon {
  font-size: 38px;
  color: #0072ff;
  margin-right: 20px;
  transition: 0.3s;
}

.premium-card:hover .icon {
  transform: rotate(8deg) scale(1.1);
}

/* title */
.premium-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

/* description */
.premium-card p {
  font-size: 15px;
  color: #555;
}

/* read more button */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-weight: 700;
  color: #0072ff;
  cursor: pointer;
  transition: 0.3s;
}

.read-more-btn span {
  transition: 0.3s;
}

.read-more-btn:hover span {
  transform: translateX(5px);
}

/* hidden content */
.more-content {
  display: none;
  margin-top: 10px;
}

/* animation when show */
.more-content.show {
  display: block;
  animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== HOME PAGE SERVICES - SAME STYLE AS SERVICES PAGE ===== */

#index-page-services-fix,
.index-page #services.services {
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
  position: relative;
  overflow: hidden;
}

.index-page #services.services::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, #0d83fd, #00c6ff);
  border-radius: 50%;
  top: -180px;
  right: -140px;
  filter: blur(20px);
  opacity: 0.16;
}

.index-page #services.services::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #00c6ff, #0d83fd);
  border-radius: 50%;
  bottom: -170px;
  left: -130px;
  filter: blur(25px);
  opacity: 0.13;
}

.index-page #services .container {
  position: relative;
  z-index: 2;
}

.index-page #services .section-title {
  text-align: center;
  margin-bottom: 60px;
}
.index-page #services .services-badge {
  display: inline-block;
  padding: 10px 28px;

  font-size: 14px;              /* bigger text */
  font-weight: 900;
  letter-spacing: 2px;

  text-transform: uppercase;
  border-radius: 50px;

  /* Premium gradient look */
  background: linear-gradient(135deg, #0d83fd, #00c6ff);
  color: #ffffff;

  /* Glow effect */
  box-shadow: 0 8px 25px rgba(13, 131, 253, 0.35);

  /* Move slightly up */
  position: relative;
  top: -8px;

  /* Smooth animation */
  transition: all 0.3s ease;
}
.index-page #services .services-badge:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(13, 131, 253, 0.5);
}

.index-page #services .section-title h3 {
  font-size: 46px;
  font-weight: 900;
  color: #132238;
  margin-bottom: 18px;
  line-height: 1.2;
}

.index-page #services .section-title h3 span {
  background: linear-gradient(135deg, #0d83fd, #00c6ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.index-page #services .section-title p {
  max-width: 850px;
  margin: 0 auto;
  color: #475467;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
}

.index-page #services .service-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  padding: 34px;
  border-radius: 26px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  min-height: 240px;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(13, 131, 253, 0.16);
  box-shadow: 0 18px 45px rgba(13, 131, 253, 0.11);
  transition: all 0.45s ease;
}

.index-page #services .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(13, 131, 253, 0.18),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.8s ease;
}

.index-page #services .service-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -80px;
  top: -80px;
  background: linear-gradient(135deg, #0d83fd, #00c6ff);
  border-radius: 50%;
  opacity: 0.12;
  transition: all 0.45s ease;
}

.index-page #services .service-card:hover::before {
  transform: translateX(100%);
}

.index-page #services .service-card:hover::after {
  transform: scale(1.7);
  opacity: 0.22;
}

.index-page #services .service-card:hover {
  transform: translateY(-14px) scale(1.02);
  border-color: #0d83fd;
  box-shadow: 0 28px 65px rgba(13, 131, 253, 0.25);
}

.index-page #services .service-card .icon {
  width: 82px;
  height: 82px;
  min-width: 82px;
  border-radius: 22px;
  background: linear-gradient(135deg, #e8f3ff, #ffffff);
  color: #0d83fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: inset 0 0 0 1px rgba(13, 131, 253, 0.14);
  transition: all 0.45s ease;
  position: relative;
  z-index: 2;
  margin-right: 0;
}

.index-page #services .service-card:hover .icon {
  background: linear-gradient(135deg, #0d83fd, #00c6ff);
  color: #ffffff;
  transform: rotate(8deg) scale(1.12);
  box-shadow: 0 14px 30px rgba(13, 131, 253, 0.38);
}

.index-page #services .service-card .content {
  position: relative;
  z-index: 2;
}

.index-page #services .service-card h3 {
  font-size: 25px;
  font-weight: 850;
  margin-bottom: 14px;
  color: #17324d;
}

.index-page #services .service-card p {
  font-size: 16px;
  color: #475467;
  line-height: 1.7;
  margin-bottom: 14px;
}

.index-page #services .more-content {
  display: none;
  margin-top: 10px;
  color: #475467;
}

.index-page #services .read-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 21px;
  border-radius: 50px;
  background: #132238;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: all 0.35s ease;
}

.index-page #services .read-more:hover {
  background: linear-gradient(90deg, #0d83fd, #00c6ff);
  color: #ffffff !important;
  transform: translateX(6px);
  box-shadow: 0 12px 28px rgba(13, 131, 253, 0.32);
}

.index-page #services .read-more i {
  font-size: 15px;
  transition: all 0.35s ease;
}

.index-page #services .read-more:hover i {
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .index-page #services .section-title h3 {
    font-size: 32px;
  }

  .index-page #services .section-title p {
    font-size: 16px;
  }

  .index-page #services .service-card {
    flex-direction: column;
    padding: 28px;
  }

  .index-page #services .service-card .icon {
    margin-bottom: 5px;
  }
}
/* ===== PREMIUM OUR PROJECTS SECTION ===== */

.index-page #projects {
  background: linear-gradient(135deg, #f8fbff, #eef6ff) !important;
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.index-page #projects::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, #0d83fd, #00c6ff);
  border-radius: 50%;
  top: -170px;
  right: -140px;
  filter: blur(25px);
  opacity: 0.16;
}

.index-page #projects::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #00c6ff, #0d83fd);
  border-radius: 50%;
  bottom: -160px;
  left: -130px;
  filter: blur(25px);
  opacity: 0.13;
}

.index-page #projects .container {
  position: relative;
  z-index: 2;
}

.index-page #projects .section-title {
  margin-bottom: 55px;
}

.index-page #projects .section-title h2 {
  font-size: 46px;
  font-weight: 900;
  color: #132238;
  position: relative;
  display: inline-block;
}

.index-page #projects .section-title h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0d83fd, #00c6ff);
  display: block;
  margin: 14px auto 0;
  border-radius: 30px;
}

.index-page #projects .section-title p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #475467;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
}

/* Project card */
.index-page #projects .project-card {
  height: 100%;
  min-height: 230px;
  padding: 12px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(13, 131, 253, 0.15) !important;
  box-shadow: 0 18px 45px rgba(13, 131, 253, 0.11);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.45s ease;
  animation: projectFloat 4s ease-in-out infinite;
}

/* alternate floating delay */
.index-page #projects .col-lg-4:nth-child(2) .project-card,
.index-page #projects .col-lg-4:nth-child(5) .project-card {
  animation-delay: 0.6s;
}

.index-page #projects .col-lg-4:nth-child(3) .project-card,
.index-page #projects .col-lg-4:nth-child(6) .project-card {
  animation-delay: 1.2s;
}

@keyframes projectFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* shine effect */
.index-page #projects .project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(13, 131, 253, 0.18),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.8s ease;
}

.index-page #projects .project-card:hover::before {
  transform: translateX(100%);
}

/* circle glow */
.index-page #projects .project-card::after {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  right: -75px;
  top: -75px;
  background: linear-gradient(135deg, #0d83fd, #00c6ff);
  border-radius: 50%;
  opacity: 0.12;
  transition: all 0.45s ease;
}

.index-page #projects .project-card:hover::after {
  transform: scale(1.8);
  opacity: 0.22;
}

.index-page #projects .project-card:hover {
  transform: translateY(-16px) scale(1.03) !important;
  border-color: #0d83fd !important;
  box-shadow: 0 30px 70px rgba(13, 131, 253, 0.28);
  animation-play-state: paused;
}

.index-page #projects .project-card .card-body {
  position: relative;
  z-index: 2;
  padding: 34px 24px;
}

/* title */
.index-page #projects .project-card .card-title {
  font-size: 22px;
  font-weight: 900;
  color: #132238;
  margin-bottom: 14px;
  transition: all 0.35s ease;
}

.index-page #projects .project-card:hover .card-title {
  color: #0d83fd;
  transform: translateY(-4px);
}

/* category */
.index-page #projects .project-card .text-primary {
  display: inline-block;
  background: rgba(13, 131, 253, 0.09);
  color: #0d83fd !important;
  padding: 7px 15px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800 !important;
  transition: all 0.35s ease;
}

.index-page #projects .project-card:hover .text-primary {
  background: linear-gradient(90deg, #0d83fd, #00c6ff);
  color: #ffffff !important;
  transform: scale(1.05);
}

/* description */
.index-page #projects .project-card .card-text,
.index-page #projects .project-card .small {
  font-size: 15.5px;
  line-height: 1.75;
  color: #667085 !important;
  margin-top: 16px;
  transition: all 0.35s ease;
}

.index-page #projects .project-card:hover .card-text,
.index-page #projects .project-card:hover .small {
  color: #344054 !important;
}

/* small blue line bottom */
.index-page #projects .project-card .card-body::after {
  content: "";
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #0d83fd, #00c6ff);
  border-radius: 30px;
  display: block;
  margin: 24px auto 0;
  transition: width 0.4s ease;
}

.index-page #projects .project-card:hover .card-body::after {
  width: 85px;
}

/* mobile */
@media (max-width: 768px) {
  .index-page #projects {
    padding: 65px 0;
  }

  .index-page #projects .section-title h2 {
    font-size: 34px;
  }

  .index-page #projects .section-title p {
    font-size: 16px;
  }

  .index-page #projects .project-card {
    animation: none;
  }
}

/* ===== Accurate decimal star rating ===== */
.rating-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.rating-stars {
  position: relative;
  display: inline-block;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 2px;
}

.stars-bg {
  color: #d9d9d9;
}

.stars-fill {
  color: #ffc107;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
}

.rating-number {
  font-size: 14px;
  font-weight: 800;
  color: #132238;
  background: #fff7df;
  border: 1px solid rgba(255, 193, 7, 0.35);
  padding: 4px 9px;
  border-radius: 30px;
}


/* ===== PREMIUM VIEW ALL PROJECTS BUTTON ===== */

.index-page #projects .btn-outline-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: auto;
  margin: 35px auto 0;
  padding: 14px 34px;

  border-radius: 50px;
  border: 2px solid #0d83fd;

  background: linear-gradient(135deg, #0d83fd, #00c6ff);
  color: #ffffff !important;

  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-decoration: none;

  box-shadow: 0 14px 35px rgba(13, 131, 253, 0.28);
  transition: all 0.35s ease;

  position: relative;
  overflow: hidden;
  z-index: 2;
}

.index-page #projects .btn-outline-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transition: 0.6s;
}

.index-page #projects .btn-outline-primary:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 22px 50px rgba(13, 131, 253, 0.42);
  border-color: #00c6ff;
  color: #ffffff !important;
}

.index-page #projects .btn-outline-primary:hover::before {
  left: 120%;
}

.index-page #projects .btn-outline-primary:active {
  transform: scale(0.96);
}




/* ===== OUR CLIENTS TITLE FIX ===== */

.trusted-section {
  margin-top: -40px; /* move section slightly up */
}

.trusted-title {
  font-size: 42px;
  font-weight: 900;
  color: #132238;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  position: relative;
}

/* underline effect */
.trusted-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #0d83fd, #00c6ff);
  display: block;
  margin: 12px auto 0;
  border-radius: 20px;
}

/* subtitle styling */
.trusted-subtext {
  font-size: 17px;
  color: #5f6c7b;
  max-width: 700px;
  margin: 10px auto 30px;
  line-height: 1.7;
}


/* ===== PREMIUM NAV DROPDOWN ===== */

@media (min-width: 1200px) {
  .navmenu .dropdown > a {
    gap: 6px;
  }

  .navmenu .dropdown ul {
    min-width: 310px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(13, 131, 253, 0.12);
    box-shadow: 0 22px 55px rgba(13, 131, 253, 0.18);
  }

  .navmenu .dropdown ul a {
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 14.5px;
    font-weight: 700;
    color: #132238;
    transition: all 0.3s ease;
  }

  .navmenu .dropdown ul a:hover {
    background: linear-gradient(135deg, #0d83fd, #00c6ff);
    color: #fff !important;
    transform: translateX(6px);
  }
}

/* header always fixed */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}


/* ===== CLEAN PREMIUM FOOTER ===== */

.footer {
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
  color: #132238;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(13, 131, 253, 0.12);
}

.footer::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, #0d83fd, #00c6ff);
  border-radius: 50%;
  top: -190px;
  right: -130px;
  opacity: 0.13;
  filter: blur(25px);
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-logo {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(13, 131, 253, 0.22);
  transition: 0.35s;
}

.footer-logo-wrap:hover .footer-logo {
  transform: rotate(6deg) scale(1.06);
}

.footer-brand-name {
  font-size: 32px;
  font-weight: 900;
  margin: 0;
  line-height: 1.15;
  color: #132238;
}

.footer-brand-name span {
  color: #0d83fd;
}

.footer-description {
  color: #475467;
  line-height: 1.8;
  max-width: 360px;
  margin-top: 14px;
  font-size: 15.5px;
}

.footer-contact p,
.footer-contact a {
  color: #475467;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-contact strong {
  color: #132238;
}

.footer-contact a:hover {
  color: #0d83fd;
}

.footer-links h4 {
  color: #132238;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 26px;
  position: relative;
}

.footer-links h4::after {
  content: "";
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #0d83fd, #00c6ff);
  position: absolute;
  left: 0;
  bottom: -11px;
  border-radius: 20px;
}

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

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

.footer-links ul li a {
  color: #475467;
  text-decoration: none;
  transition: 0.35s;
  display: inline-block;
  font-weight: 500;
}

.footer-links ul li a:hover {
  color: #0d83fd;
  transform: translateX(7px);
}

.footer .social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(13, 131, 253, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d83fd;
  margin-right: 12px;
  transition: 0.35s;
  font-size: 20px;
  box-shadow: 0 10px 25px rgba(13, 131, 253, 0.12);
}

.footer .social-links a:hover {
  background: linear-gradient(135deg, #0d83fd, #00c6ff);
  color: #ffffff;
  transform: translateY(-6px) scale(1.08);
}

.footer .copyright {
  border-top: 1px solid rgba(13, 131, 253, 0.12);
  padding-top: 22px;
  padding-bottom: 22px;
  margin-top: 45px !important;
}

.footer .copyright p {
  color: #475467;
  margin: 0;
}

.footer .copyright strong {
  color: #132238;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 50px;
  }

  .footer-brand-name {
    font-size: 27px;
  }

  .footer-links {
    margin-top: 20px;
  }
}

.footer {
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
  color: #132238;
  padding-top: 70px;
  border-top: 1px solid rgba(13,131,253,0.12);
}

.footer-logo-wrap{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  margin-bottom:18px;
}

.footer-logo{
  width:62px;
  height:62px;
  border-radius:16px;
  object-fit:cover;
}

.footer-brand-name{
  font-size:32px;
  font-weight:900;
  color:#132238;
}

.footer-brand-name span{
  color:#0d83fd;
}

.footer-description{
  color:#475467;
  line-height:1.8;
}

.footer-links h4{
  color:#132238;
  font-size:20px;
  font-weight:800;
  margin-bottom:20px;
}

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

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

.footer-links ul li a{
  color:#475467;
  text-decoration:none;
  transition:.3s;
}

.footer-links ul li a:hover{
  color:#0d83fd;
  transform:translateX(5px);
  display:inline-block;
}

.footer .social-links a{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#0d83fd;
  margin-right:10px;
  transition:.3s;
  box-shadow:0 10px 25px rgba(13,131,253,.12);
}

.footer .social-links a:hover{
  background:#0d83fd;
  color:#fff;
  transform:translateY(-5px);
}

.copyright{
  border-top:1px solid rgba(13,131,253,.12);
  padding:22px 0;
  margin-top:40px;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */

.whatsapp-float {
  position: fixed;
  width: 62px;
  height: 62px;
  bottom: 25px;
  left: 25px;   /* LEFT SIDE */
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 99999;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: 0.35s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-6px) scale(1.08);
  color: #ffffff;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 28px;
    left: 18px;
    bottom: 18px;
  }

}
/* ==================================================
   FINAL MOBILE RESPONSIVE + MENU FIX
================================================== */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1199px) {

  body.mobile-nav-active {
    overflow: hidden !important;
  }

  .header {
    z-index: 999999 !important;
    height: auto !important;
    padding: 8px 0 !important;
  }

  .header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    padding: 8px 14px !important;
  }

  .logo {
    max-width: 75% !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 1 !important;
  }

  .logo-img {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    max-height: 38px !important;
    object-fit: contain !important;
  }

  .brand-name,
  .sitename {
    font-size: 13px !important;
    line-height: 1.1 !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }

  .btn-getstarted {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 29px !important;
    color: #132238 !important;
    cursor: pointer !important;
    z-index: 1000001 !important;
    position: relative !important;
    margin-left: auto !important;
  }

  .navmenu {
    display: block !important;
    position: static !important;
    padding: 0 !important;
    z-index: 999999 !important;
  }

  .navmenu > ul {
    display: none !important;
  }

  body.mobile-nav-active .navmenu {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(15, 23, 42, 0.72) !important;
    padding-top: 90px !important;
    z-index: 999999 !important;
  }

  body.mobile-nav-active .navmenu > ul {
    display: flex !important;
    flex-direction: column !important;
    width: 90% !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
    margin: 0 auto !important;
    padding: 22px 18px !important;
    background: #ffffff !important;
    border-radius: 22px !important;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25) !important;
  }

  body.mobile-nav-active .navmenu > ul > li {
    width: 100% !important;
  }

  body.mobile-nav-active .navmenu > ul > li > a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 14px 14px !important;
    color: #132238 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
  }

  body.mobile-nav-active .navmenu > ul > li > a:hover,
  body.mobile-nav-active .navmenu > ul > li > a.active {
    background: #eef6ff !important;
    color: #0d83fd !important;
  }

  body.mobile-nav-active .mobile-nav-toggle {
    color: #ffffff !important;
    position: fixed !important;
    right: 22px !important;
    top: 22px !important;
  }

  .navmenu .dropdown ul {
    position: static !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    background: #f8fbff !important;
    border-radius: 16px !important;
    padding: 8px !important;
    margin: 6px 0 8px 0 !important;
  }

  .navmenu .dropdown ul.dropdown-active {
    display: block !important;
  }

  .navmenu .dropdown ul li a {
    padding: 11px 14px !important;
    font-size: 14px !important;
    color: #475467 !important;
    border-radius: 12px !important;
  }
}

@media (max-width: 768px) {

  section,
  .section {
    padding: 55px 0 !important;
  }

  .hero {
    padding-top: 120px !important;
    text-align: center !important;
  }

  .hero h1 {
    font-size: 34px !important;
    line-height: 1.25 !important;
  }

  .hero p {
    font-size: 15.5px !important;
    line-height: 1.7 !important;
  }

  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    align-items: center !important;
  }

  .hero-buttons .btn,
  .btn-consultation,
  .btn-quote {
    width: 100% !important;
    max-width: 310px !important;
    margin: 0 !important;
    text-align: center !important;
  }

  .customers-badge {
    position: relative !important;
    width: 100% !important;
    margin-top: 18px !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  .service-card,
  .project-card,
  .why-card,
  .case-card,
  .blog-card {
    padding: 24px !important;
    margin-bottom: 18px !important;
    height: auto !important;
  }

  .service-card {
    flex-direction: column !important;
    text-align: left !important;
  }

  .section-title h2,
  .section-title h3,
  .services .section-title h3,
  .blog-hero h1,
  .service-hero h1 {
    font-size: 32px !important;
    line-height: 1.25 !important;
  }

  .footer-logo {
    width: 48px !important;
    height: 48px !important;
  }

  .footer-brand-name {
    font-size: 25px !important;
  }

  .whatsapp-float {
    width: 54px !important;
    height: 54px !important;
    font-size: 27px !important;
    left: 16px !important;
    bottom: 16px !important;
  }
}
