:root {

  
  --primary-blue: #0fbcfa;
  --electric-blue: #00d4ff;
  --dark-blue: #0052cc;
  --light-blue: #00d4ff;
  --neon-green: #39ff14;
  --light-gray: #f8f9fa;
  --orange-gradient: linear-gradient(135deg, #ff6b35, #f7931e);
  --blue-gradient: linear-gradient(135deg, #0066ff, #00d4ff);
  --purple-gradient: linear-gradient(135deg, #667eea, #764ba2);
  --dark-bg: #0a0a0a;
  --dark-gray: #6c757d;
  --dark-card: #1a1a1a;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --blue-gradient: linear-gradient(135deg, #0066ff, #00d4ff);
  --dark-gradient: linear-gradient(135deg, #0052cc, #0066ff);
  --white: #ffffff;
  --black: #000000;
  --gradient: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  --light-gradient: linear-gradient(
    135deg,
    var(--light-blue),
    var(--primary-blue)
  );
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Glassmorphism Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-top: 10px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #333 !important;
  margin: 0 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
  left: 0;
}

.dropdown-toggle::after {
  display: none;
}

/* hero section */

/* End */

/* Modern Services Section */
.services-modern {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

section#blog h2.section-title-modern {
  padding-bottom: 40px;
}

section.services-modern.Approach .process-grid {
  margin: 0;
}

.section-title-modern {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1a1a1a, #0066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card-modern {
  background: white;
  border-radius: 30px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(0, 102, 255, 0.1);
  height: 100%;
  margin-top: 30px;
}

.service-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.service-card-modern:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 102, 255, 0.15);
}

.service-icon-modern {
  width: 80px;
  height: 80px;
  background: var(--blue-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-icon-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.service-card-modern:hover .service-icon-modern::before {
  left: 100%;
}

.service-card-modern:hover .service-icon-modern {
  transform: rotate(360deg) scale(1.1);
}

.service-icon-modern i {
  font-size: 2rem;
  color: white;
  z-index: 2;
  position: relative;
}

/* Bento Grid Layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.bento-card {
  background: white;
  border-radius: 30px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.bento-card:nth-child(1) {
  grid-row: span 2;
}

.bento-card:nth-child(4) {
  grid-column: span 2;
}

.bento-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* Audit Section - Dark Theme */
.audit-section-modern {
  background: var(--dark-bg);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.audit-section-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(0, 102, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(57, 255, 20, 0.1) 0%,
      transparent 50%
    );
}

.audit-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.audit-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff, #00d4ff, #39ff14);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.audit-form {
  display: flex;
  gap: 1rem;
  max-width: 1207px;
  margin: 3rem auto 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 25px;
  padding: 1rem;
}

.audit-form input {
  flex: 1;
  background: #0000004a;
  border: none;
  color: white !important;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  font-size: 1rem;
}

.audit-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.audit-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes gradientShift {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes starField {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-200px);
  }
}

@keyframes gradientMove {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-20px) rotate(5deg);
  }

  66% {
    transform: translateY(10px) rotate(-5deg);
  }
}

/* Stats Section */
.stats-modern {
  background: var(--dark-card);
  padding: 80px 0;
}

.stat-card-modern {
  text-align: center;
  color: white;
  padding: 2rem;
  position: relative;
}

.stat-number-modern {
  font-family: "Space Grotesk", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1;
}

.bento-card img {
  width: 100%;
}

.stat-label-modern {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .contact-form-modern {
    padding: 2rem;
    margin-top: 3rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .audit-form {
    flex-direction: column;
  }

  .bento-card:nth-child(1) {
    grid-row: span 1;
  }

  .bento-card:nth-child(4) {
    grid-column: span 1;
  }
}

/* Process Cards */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

section.services-modern.Approach .process-grid {
  grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
  gap: 10px;
}

.process-card-modern {
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.process-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--purple-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.process-card-modern:hover::before {
  transform: scaleX(1);
}

.process-card-modern:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.15);
}

/* Blog Cards */
.blog-card-modern {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.blog-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image-modern {
  height: 250px;
  background: var(--blue-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.blog-content-modern {
  padding: 2rem;
}

.blog-date-modern {
  color: var(--primary-blue);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

a.navbar-brand img {
  width: auto;
}

/* Testimonial Section Styles */
.testimonial-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonial-card {
  background: white;
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin: 20px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-text::before {
  content: " ";
  font-size: 5rem;
  color: var(--primary-blue);
  opacity: 0.2;
  position: absolute;
  top: -30px;
  left: -20px;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  border: 4px solid var(--electric-blue);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h5 {
  margin-bottom: 5px;
  color: #333;
}

.testimonial-info p {
  color: #777;
  margin-bottom: 0;
}

.testimonial-rating {
  color: #ffd700;
  margin-bottom: 15px;
}

.testimonial-card {
  background: white;
  border-radius: 0px 0px 25px 25px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 102, 255, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.1);
  position: relative;
  transition: all 0.4s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 102, 255, 0.15);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 25px 25px 0 0;
}

.testimonial-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 100%);
  border-radius: 30px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  color: white;
}

.testimonial-card .rounded-circle {
  border: 2px solid #000 !important;
}

.testimonial-card .rounded-circle i {
  color: green !important;
}

.service-section {
  padding: 60px 0;
  text-align: center;
}

.service-section .service-card {
  background: var(--white-card);
  border-radius: 15px;
  padding: 9px 20px 1px 17px;
  margin-bottom: 3px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 2px solid #007aff;
  height: 213px;
}

.service-section .service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(59, 130, 246, 0.15),
    transparent 70%
  );
  transform: rotate(45deg);
  transition: all 0.4s;
  opacity: 0;
}

.service-section .service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-section .service-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--accent-blue);
  background: #f3f4f6;
  border-radius: 50%;
  padding: 10px;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}

.service-section .service-card:hover .service-icon {
  background: var(--accent-blue);
  color: #fff;
}

.service-section .service-title {
  color: var(--navy-blue);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.service-section .service-desc {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .service-section .service-card {
    margin: 20px 0;
  }
}

.service-card img {
  width: 56px;
}
.service-page-wrapper .service-card img {
  width: 83px;
}
.review-sec {
  padding: 60px 0;
}

.review-sec .col-md-6.col-lg-4 {
  clear: both;
  display: table;
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 144px;
  }
}

/* GBP */

.gbp-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gbp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.logo {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #6b7280;
  font-size: 1.5rem;
}

.btn-primary {
  background: linear-gradient(90deg, #1d4ed8, #3b82f6);
  border: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #1e40af, #2563eb);
  transform: translateY(-2px);
}

.btn-outline-primary {
  border-color: #3b82f6;
  color: #3b82f6;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-outline-primary:hover {
  border-color: #1d4ed8;
  color: #1d4ed8;
  transform: translateY(-2px);
}

.review-card {
  background: #eff6ff;
  border-radius: 0.5rem;
  padding: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.review-card:hover {
  background: #dbeafe;
  transform: translateY(-2px);
}

.map {
  border-radius: 0.75rem;
  overflow: hidden;
  height: 250px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  transition: opacity 0.3s ease;
}

.map iframe:hover {
  opacity: 0.95;
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #e5e7eb;
}

@media (max-width: 767px) {
  .gbp-card {
    flex-direction: column;
  }

  .map {
    height: 200px;
  }
}

/* Approach-wrapper */

.Approach-wrapper .seo-tabs .nav-tabs {
  border-bottom: 3px solid #e9ecef;
  margin-bottom: 30px;
  justify-content: center;
  margin-bottom: 30px;
  padding-bottom: 23px;
  margin-top: 50px;
}

section.Approach-wrapper {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 60px 0;
}

section.services-modern.Approach {
  background: #fff !important;
}

.Approach-wrapper .seo-tabs .nav-link {
  color: #6c757d;
  font-weight: 600;
  border: none;
  padding: 15px 25px;
  transition: all 0.3s;
}

.Approach-wrapper .seo-tabs .nav-link:hover {
  border: none;
  color: #4e73df;
}

.Approach-wrapper .seo-tabs .nav-link.active {
  background: var(--blue-gradient);
  border: none;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

.Approach-wrapper .seo-tabs .tab-icon {
  font-size: 24px;
  margin-right: 10px;
  vertical-align: middle;
}

.Approach-wrapper .seo-tabs .tab-content {
  padding: 20px;
  background: #f8f9fc;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.Approach-wrapper .seo-tabs .tab-pane h2 {
  color: #4e73df;
  margin-bottom: 20px;
  font-weight: 700;
}

.Approach-wrapper .seo-tabs .tab-pane p {
  color: #5a5c69;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.Approach-wrapper .seo-tabs .features-list {
  list-style: none;
  padding: 0;
}

.Approach-wrapper .seo-tabs .features-list li {
  padding: 12px 0;
  border-bottom: 1px dashed #e3e6f0;
  font-size: 1.05rem;
}

.Approach-wrapper .seo-tabs .features-list li:last-child {
  border-bottom: none;
}

.Approach-wrapper .seo-tabs .features-list .list-icon {
  color: #4e73df;
  margin-right: 15px;
  font-size: 18px;
}

.Approach-wrapper .seo-tabs .divider {
  height: 2px;
  background: linear-gradient(to right, transparent, #4e73df, transparent);
  margin: 30px 0;
}

@media (max-width: 768px) {
  .Approach-wrapper .seo-tabs .nav-link {
    padding: 12px 15px;
    font-size: 14px;
  }

  .Approach-wrapper .seo-tabs .tab-icon {
    font-size: 18px;
    margin-right: 5px;
  }
}

/* Mega menu start */
/* Navbar Styles */
.navbar {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);

  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -2px rgb(0 0 0 / 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 0.75rem 0;
}

.btn-neon {
  background: var(--blue-gradient);
  border: none;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  margin-top: 0px !important;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

.btn-neon:hover {
  color: #fff;
}

.navbar-brand img {
  height: 45px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(1.1);
}

.navbar-brand:hover img {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.navbar-nav {
  gap: 0.25rem;
}

.navbar-nav .nav-link {
  color: #000000 !important;
  font-weight: 500;
  font-size: 18px;
  padding: 27px 20px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.navbar-nav .nav-link:hover {
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: none;
}

.navbar-nav .nav-link:hover::before {
  left: 0;
  opacity: 0.15;
}

/* Full Width Mega Menu */

/* Footer start */
/* Footer Styles */
.site-footer {
  color: #fff;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #00375f 0%, #0c54a6 50%, #0b96c6 100%);
}

.site-footer .footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(0, 102, 255, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

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

.site-footer .navbar-brand {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.site-footer p {
  color: #ccc;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.site-footer .social-icons a {
  color: #fff !important;
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.site-footer .social-icons a:hover {
  color: #fff;
}

/* Section Titles */
.site-footer h5 {
  color: #0066ff;
  /* Electric Blue */
  margin-bottom: 2rem;
  font-weight: 600;
}

/* Lists */
.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 1rem;
}

.site-footer ul li a {
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 18px;
}

footer.site-footer .col-lg-3.col-md-6 > ul {
  min-height: 250px;
}

footer.site-footer .bottom {
  min-height: auto !important;
}

footer.site-footer ul.bottom {
  margin-top: 50px;
  border-top: 1px dashed #dddddd7d;
  padding-top: 20px;
}

.site-footer ul li a:hover {
  color: #fff;
}

/* Divider */
.site-footer hr {
  border-color: #ffffffb5;
  margin: 2rem 0;
}

/* Bottom Text */
.site-footer .row p {
  color: #ffffff;
  margin: 0;
}

.site-footer ul li a:hover {
  color: #0fbcfa !important;
}

/* End */

section.hero-new {
  padding: 165px 0px 65px;
  /* background: #000; */
  background: linear-gradient(135deg, #00375f 0%, #0c54a6 50%, #0b96c6 100%);
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  align-items: center;
  justify-content: space-between;
}

.hero-box {
  flex: 1;
  min-width: 300px;
  min-height: 424px;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.agency-box {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 40, 0.8),
    rgba(10, 10, 30, 0.8)
  );
}

.customer-box {
  background: linear-gradient(145deg, rgb(255 255 255), rgb(255 255 255));
}

.hero-box::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  transform: translate(-25%, -25%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-box:hover::before {
  opacity: 1;
}

.hero-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.icon-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.agency-box .icon-container {
  background: linear-gradient(135deg, #3a47d5 0%, #10bcfa 100%);
  box-shadow: 0 5px 20px rgba(58, 71, 213, 0.4);
}

.customer-box .icon-container {
  background: linear-gradient(135deg, #0b79b8 0%, #0b78b7 100%);
  box-shadow: 0 5px 20px rgb(255 255 255);
}

.icon-container i {
  font-size: 2.8rem;
  color: white;
}

.hero-heading {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.agency-box .hero-heading {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.customer-box .hero-heading {
  background: linear-gradient(90deg, #0c84bd 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1.5rem;
  color: #64748b;
  font-weight: 600;
  font-size: 1.2rem;
  position: relative;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #64748b, transparent);
}

.divider::before {
  left: -50px;
}

.divider::after {
  right: -50px;
}

.btn {
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 1.5rem;
  z-index: 2;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.agency-box .btn {
  background: linear-gradient(90deg, #0fbcfa 0%, #2a36b5 100%);
  color: white;
  box-shadow: 0 5px 20px rgba(58, 71, 213, 0.3);
}

.customer-box .btn {
  background: linear-gradient(90deg, #11bdf9 0%, #0fbcfa 100%);
  color: white;
  box-shadow: 0 5px 20px rgb(141 212 241);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  animation: float 15s infinite linear;
}

.agency-box .floating-element {
  background: radial-gradient(
    circle,
    rgba(58, 71, 213, 0.15) 0%,
    transparent 70%
  );
}

.customer-box .floating-element {
  background: radial-gradient(
    circle,
    rgba(213, 58, 125, 0.15) 0%,
    transparent 70%
  );
}

.floating-element:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 65%;
  left: 75%;
  animation-delay: -5s;
}

.floating-element:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 70%;
  left: 20%;
  animation-delay: -10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  33% {
    transform: translate(20px, 30px) rotate(120deg) scale(1.1);
  }

  66% {
    transform: translate(-15px, 25px) rotate(240deg) scale(0.9);
  }

  100% {
    transform: translate(0, 0) rotate(360deg) scale(1);
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-box {
    min-height: 320px;
    width: 100%;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .divider {
    margin: 1.5rem 0;
    transform: rotate(0);
  }

  .divider::before,
  .divider::after {
    width: 30px;
  }

  .divider::before {
    left: -40px;
  }

  .divider::after {
    right: -40px;
  }
}

/* ===Banifits=== */
.banifist-wrapper {
  padding: 60px 0;
}

.banifist-wrapper .benefits-section {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.banifist-wrapper .section-header {
  background: var(--gradient);
  color: var(--white);
  padding: 30px;
  text-align: center;
}

.banifist-wrapper .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.banifist-wrapper .section-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 15px auto 0;
}

.banifist-wrapper .benefits-content {
  display: flex;
  flex-wrap: wrap;
}

.banifist-wrapper .benefit-column {
  flex: 1;
  min-width: 300px;
  padding: 40px 30px;
}

.banifist-wrapper .agency-column {
  background: var(--white);
  border-right: 1px solid #eee;
}

.banifist-wrapper .customer-column {
  background: #f9fbfd;
}

.banifist-wrapper .column-title {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  color: var(--dark-blue);
}

.banifist-wrapper .title-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--light-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--white);
  font-size: 20px;
}

.banifist-wrapper .title-text {
  font-size: 1.8rem;
  font-weight: 700;
}

.banifist-wrapper .benefit-item {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
}

.banifist-wrapper .benefit-icon {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--white);
  font-size: 12px;
  margin-top: 3px;
}

.banifist-wrapper .benefit-text {
  flex: 1;
}

.banifist-wrapper .benefit-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #000000;
}

.banifist-wrapper .benefit-text p {
  color: #666;
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.banifist-wrapper .highlight-bar {
  height: 6px;
  border-radius: 3px;
  background: var(--light-gradient);
  margin: 25px 0;
  width: 60%;
}

.banifist-wrapper .footer-note {
  text-align: center;
  padding: 25px;
  background: #f1f7ff;
  font-weight: 500;
  color: var(--dark-blue);
}

@media (max-width: 768px) {
  .banifist-wrapper .benefit-column {
    flex: 100%;
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .banifist-wrapper .section-title {
    font-size: 2rem;
  }

  .banifist-wrapper .title-text {
    font-size: 1.5rem;
  }
}

/* Animation effects */
.banifist-wrapper .benefit-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.banifist-wrapper .benefit-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ENd */

/* Process start */
.process-timeline {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 40px 0;
  /* overflow-x: auto; */
  scroll-behavior: smooth;
}

/* Horizontal zigzag line behind cards */
.process-timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  background: transparent;
  transform: translateY(-50%);
  z-index: -9 !important;
}

.process-item {
  flex: 0 0 auto;
  width: 242px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

section.proccess-wrapper {
  padding: 60px 0;
}

.process-content {
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  position: relative;
  height: 189px;
}

.process-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 82, 204, 0.15);
}

.process-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--light-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  margin-bottom: 10px;
  box-shadow: 0 5px 15px rgba(0, 82, 204, 0.2);
  position: relative;
  z-index: 3;
}

.process-step {
  position: absolute;
  top: 57px;
  right: -10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0072ff;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.process-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.process-desc {
  color: #000000;
  line-height: 1.5;
  /* font-size: 0.9rem; */
  margin: 0;
}

@media (max-width: 992px) {
  .process-timeline {
    gap: 15px;
  }

  .process-item {
    width: 180px;
  }

  .process-content {
    padding: 15px;
  }

  .process-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .process-title {
    font-size: 1.1rem;
  }

  .process-desc {
    font-size: 0.85rem;
  }

  /* Adjust clip-path for fewer items or responsive */
  .process-timeline::after {
    clip-path: polygon(
      0 0,
      0% 100%,
      8% 100%,
      8% 0,
      16% 100%,
      16% 0,
      24% 100%,
      24% 0,
      32% 100%,
      32% 0,
      40% 100%,
      40% 0,
      48% 100%,
      48% 0,
      56% 100%,
      56% 0,
      64% 100%,
      64% 0,
      72% 100%,
      72% 0,
      80% 100%,
      80% 0,
      88% 100%,
      88% 0,
      96% 100%,
      100% 0,
      100% 100%
    );
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2.2rem;
  }

  .process-item {
    width: 160px;
  }

  .process-content {
    padding: 10px;
  }

  .process-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .process-step {
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
    top: -8px;
    right: -8px;
  }

  .process-title {
    font-size: 1rem;
  }

  .process-desc {
    font-size: 0.8rem;
  }
}

/* End */

/* Award sec */
.awards-section {
  padding: 60px 0;
  background: #f0fafd;
}

.awards-section .awards-container {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  position: relative;
}

.awards-section .awards-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, var(--primary-blue), var(--light-blue));
}

.awards-section .award-col {
  padding: 50px 40px;
  position: relative;
}

.awards-section .award-col:first-child {
  border-right: 1px solid #e2e8f0;
}

.awards-section .col-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.awards-section .col-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--blue-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--white);
  font-size: 24px;
  box-shadow: 0 10px 20px rgba(0, 82, 204, 0.2);
}

.awards-section .col-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0;
}

.awards-section .logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.awards-section .logo-item {
  background: var(--white);
  border-radius: 16px;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 119px;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

.awards-section .logo-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary-blue), var(--light-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.awards-section .logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--light-blue);
}

.awards-section .logo-item:hover::before {
  opacity: 1;
}

.awards-section .logo-img {
  max-width: 101%;
  max-height: 99px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.awards-section .logo-item:hover .logo-img {
  transform: scale(1.08);
}

.awards-section .logo-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.awards-section .logo-item:hover .logo-badge {
  opacity: 1;
}

.awards-section .logo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0 82 204 / 78%);
  color: var(--white);
  padding: 12px;
  font-size: 0.85rem;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.awards-section .logo-item:hover .logo-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .awards-section .award-col:first-child {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }

  .awards-section .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .awards-section .logo-grid {
    grid-template-columns: 1fr;
  }

  .awards-section .section-title {
    font-size: 2.2rem;
  }

  .awards-section .col-title {
    font-size: 1.5rem;
  }

  .awards-section .award-col {
    padding: 30px 20px;
  }
}

.awards-section .watermark {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 12px;
  color: #cbd5e1;
  font-weight: 500;
}

/* End */
.price-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
  }
}

.title-new {
  position: relative;
}

span.pr-badge {
  font-family: "Caveat", cursive;
  font-size: 45px;
  position: absolute;
  z-index: -3;
  opacity: 1;
  top: 50px;
  right: 15px;
  width: auto;
  color: #ffffff !important;
  left: auto;
  transform: rotate(335deg);
}

a.btn.btn-neon.ms-3.whatsapp {
  background: green;
  padding: 8px 18px;
}

a.btn.btn-neon.ms-3.email {
  padding: 8px 18px;
  text-transform: lowercase;
  font-size: 16px;
}

a.btn.btn-neon.ms-3.whatsapp:hover {
  color: #fff;
}

a.btn.btn-neon.ms-3.email:hover {
  color: #fff;
}

/* Drop down */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0px 0;
}

.dropdown-item {
  animation-delay: 0.05s;
  transition: 0.4s !important;
}

.dropdown-item:hover {
  background-color: #f8f8f8 !important;
  color: #3498db;
  border-left: 3px solid #0fbcfa !important;
  padding-left: 25px;
}

.navbar-brand img {
  height: 59px;
}

.nav-link {
  font-weight: 500;
  color: #333;
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link:hover {
  color: #007bff;
}

/* Dropdown styles */

.dropdown-menu-custom {
  display: none;
  position: absolute;
  top: 100%;
  left: 47%;
  background: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 25px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  transform: translateX(-50%) !important;
}

.dropdown:hover .dropdown-menu-custom {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mega-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mega-menu-column h4 {
  color: #212529;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #3a86ff;
}

.mega-menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-column ul li {
  margin-bottom: 8px;
}

.mega-menu-column ul li a {
  color: #555;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mega-menu-column ul li a:hover {
  background-color: rgba(58, 134, 255, 0.1);
  color: #3a86ff;
  transform: translateX(5px);
}

.mega-menu-column ul li a i {
  margin-right: 10px;
  color: #3a86ff;
  width: 20px;
  text-align: center;
}

.mega-menu-column {
  width: 400px;
}

.navbar-toggler {
  border: none;
  color: white;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Demo content */
.demo-content {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991.98px) {
  .dropdown-menu-custom {
    width: 100%;
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 15px;
  }

  .mega-menu {
    grid-template-columns: 1fr;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }
}

/* End */
/* Banner */

.split-container {
  display: flex;
  width: 100%;
  height: 70vh;
  position: relative;
  padding-top: 82px;
}

.split-side {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.split-left {
  background: #05306f;
}

.split-right {
  background: #ffffff;
}

.split-side.split-right h1 {
  color: #0fbcfa;
}

/* Marketing Keywords Background */
.keywords-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  overflow: hidden;
}

.split-right .floating-keyword {
  color: #000;
}

.floating-keyword {
  position: absolute;
  font-size: clamp(0.8rem, 1.5vw, 1.2rem);
  font-weight: 300;

  animation: floatKeyword 15s linear infinite;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Data Visualization Background */
.data-viz {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 1;
}

/* Content */
.content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 85%;
}

.split-left {
  background: #08ade8;
}

.main-text {
  font-size: 75px;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  line-height: 1;
  cursor: default;
  color: #fff;
  text-transform: uppercase;
}

.subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0.8;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
}

/* Text Animation */
.char {
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 300;
}

/* Mouse Interaction Effects */
.interaction-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.split-right .mouse-ripple {
  position: absolute;
  border: 2px solid #0fbcfa;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

.split-left .mouse-ripple {
  position: absolute;
  border: 2px solid #fff;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

/* Digital Elements */
.digital-element {
  position: absolute;
  opacity: 0.1;

  font-size: 0.8rem;
  color: #fff;
}

.split-left .digital-element {
  color: #fff;
}

.split-right .digital-element {
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
  }

  .main-text {
    font-size: 3rem;
  }

  .floating-keyword {
    font-size: 0.9rem;
  }
}

/* End */

/* Service page css strat */

/* ROI Section */
.service-page-wrapper .roi-section-wrapper {
  padding: 60px 0;
  background: var(--white);
  padding-top: 20px;
}

.service-page-wrapper .roi-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-page-wrapper .roi-circle {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: var(--blue-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
}

.service-page-wrapper .roi-center-text {
  text-align: center;
  color: var(--white);
  z-index: 10;
}

.service-page-wrapper .roi-center-text h2 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.service-page-wrapper .roi-center-text p {
  font-size: 1.3rem;
  font-weight: 300;
}

.service-page-wrapper .badge-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-page-wrapper .badge-item {
  width: 110px;
  height: 110px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #0fbcfa;
  font-weight: 700;
  font-size: 0.75rem;
  position: absolute;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--white);
}

.service-page-wrapper .badge-item i {
  font-size: 2.2rem;
  margin-bottom: 5px;
}

.service-page-wrapper .badge-item:nth-child(1) {
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.service-page-wrapper .badge-item:nth-child(2) {
  top: 50px;
  right: -50px;
}
.service-page-wrapper .badge-item:nth-child(3) {
  bottom: 50px;
  right: -50px;
}
.service-page-wrapper .badge-item:nth-child(4) {
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.service-page-wrapper .badge-item:nth-child(5) {
  bottom: 50px;
  left: -50px;
}

.service-page-wrapper .roi-content h3 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-weight: 800;
  background: linear-gradient(135deg, #1a1a1a, #0066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-page-wrapper .roi-content p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.service-page-wrapper .roi-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.service-page-wrapper .roi-list-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.service-page-wrapper .roi-list-item i {
  color: #0fbcfa;
  font-size: 1.5rem;
  margin-top: 2px;
  min-width: 30px;
}

.service-page-wrapper .roi-list-item p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}

.service-page-wrapper .roi-list-item strong

 {
    color: #162438;
    display: inline-block;
    padding-right: 0;
}
.service-page-wrapper .why-left img {
    width: 100%;
    border-radius: 20px;
}
.service-page-wrapper .btn-secondary {
  /* background: var(--dark-blue); */
  color: var(--white);
  padding: 13px 35px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  margin-top: 25px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0, 82, 204, 0.3);
  background: var(--blue-gradient);
}

.service-page-wrapper .btn-secondary:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

/* Results Section */
.service-page-wrapper .results-section-wrapper {
  padding: 50px 0;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.05) 0%,
    rgba(0, 212, 255, 0.05) 100%
  );
}

.service-page-wrapper .results-title {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: var(--dark-blue);
}

.service-page-wrapper .results-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 70px;
  font-size: 1.1rem;
}

.service-page-wrapper .results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
  margin-bottom: 50px;
}

.service-page-wrapper .result-item {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-page-wrapper .result-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15);
}

.service-page-wrapper .result-icon {
  width: 80px;
  height: 80px;
  background: var(--blue-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.2rem;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.service-page-wrapper .result-number {
  font-size: 30px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 10px;
}
.service-page-wrapper .result-label {
  font-size: 1rem;
  color: #555;
  font-weight: 600;
  line-height: 1.5;
}

.service-page-wrapper .results-footer {
  text-align: center;
  background: var(--white);
  padding: 35px;
  border-radius: 12px;
  border: 2px solid var(--glass-border);
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
}

/* Services Section */
.service-page-wrapper .services-section-wrapper {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f094 100%);
}
.service-page-wrapper .services-section-wrapper h2.section-title-modern {
  padding-bottom: 40px;
}

.service-page-wrapper .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  color: var(--dark-blue);
}

.service-page-wrapper .section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: #666;
  margin-bottom: 70px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-page-wrapper .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.service-page-wrapper .service-card {
  background: var(--white);
  border: 2px solid var(--glass-border);
  border-radius: 15px;
  padding: 45px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-page-wrapper .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--glass-bg), transparent);
  transition: left 0.6s ease;
}

.service-page-wrapper .service-card {
  /* border-color: #0fbcfa; */
  box-shadow: 0 20px 50px rgb(0 102 255 / 3%);
  transform: translateY(-10px);
  transition: .3s;
}.service-page-wrapper .service-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(15, 188, 250, 0.2);}
.service-page-wrapper .service-card:hover::before {
  left: 100%;
}

.service-page-wrapper .service-icon-large {
  font-size: 3.5rem;
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.service-page-wrapper .service-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #080808;
  font-weight: 700;
}

.service-page-wrapper .service-card p {
  color: #666;
  line-height: 1.7;
  font-size: 0.98rem;
}

/* CTA Section */
.service-page-wrapper .cta-section-wrapper {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a, #0066ff);
  color: var(--white);
  border-radius: 0;
  text-align: center;
  margin: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
}

.service-page-wrapper .cta-section-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--electric-blue) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
}

.service-page-wrapper .cta-content {
  position: relative;
  z-index: 1;
}

.service-page-wrapper .cta-section-wrapper h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.service-page-wrapper .cta-section-wrapper p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}p.hei {
    padding: 10px 26px 10px 27px;
    margin-top: 40px;
    background: #9ec5ff42;
    font-size: 15px !important;
    border-radius: 100px;
    display: inline-block;
}

.service-page-wrapper .cta-button {
  color: #ffffff;
  padding: 15px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  margin: 0 15px;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: var(--blue-gradient);
}

.service-page-wrapper .cta-button:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Stats Bar Section */
.service-page-wrapper .stats-bar-wrapper {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.05) 0%,
    rgba(0, 212, 255, 0.05) 100%
  );
  padding: 70px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.service-page-wrapper .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.service-page-wrapper .stat-bar-item {
  text-align: center;
}

.service-page-wrapper .stat-bar-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.service-page-wrapper .stat-bar-label {
  font-size: 1.05rem;
  color: #555;
  font-weight: 600;
  line-height: 1.6;
}

/* Testimonials Section */
.service-page-wrapper .testimonials-section-wrapper {
  padding: 50px 0;
  background: var(--white);
  padding-bottom: 95px;
}

.service-page-wrapper .testimonials-title {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 70px;
  color: var(--dark-blue);
}

.service-page-wrapper .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.service-page-wrapper .testimonial-card {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.05) 0%,
    rgba(0, 212, 255, 0.02) 100%
  );
  border-left: 5px solid #0fbcfa;
  padding: 35px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-page-wrapper .testimonial-card:hover {
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15);
  transform: translateY(-8px);
}

.service-page-wrapper .stars {
  color: #ff7a00;
  margin-bottom: 0;
  font-size: 14px;
  letter-spacing: 3px;
}

.service-page-wrapper .testimonial-text {
  color: #555;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 1rem;
}

.service-page-wrapper .testimonial-author {
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.service-page-wrapper .testimonial-role {
  font-size: 0.9rem;
  color: var(--primary-blue);
  font-weight: 600;
}

/* End */

/* Hero */

.hero-section {
  background: var(--blue-gradient);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230052cc' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0;
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  background: rgb(255 255 255 / 84%);
  color: #000000;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0;
}
.hero-headline span {
  position: relative;
  display: inline-block;
}

.hero-headline span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
  border-radius: 4px;
}

.hero-subheadline {
  font-size: 1.4rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  max-width: 600px;
  font-weight: 300;
}
.hero-section .cta-button {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  background: var(--white);
  color: var(--primary-blue);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  margin-left: 0;
}

.hero-section .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  color: var(--dark-blue);
  background: rgba(255, 255, 255, 0.95);
}

.hero-section .cta-button-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-left: 15px;
}

.hero-section .cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.trust-metrics {
  margin-bottom: 19px;
  padding-bottom: 20px;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
}

.trust-text {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.8rem;
  text-align: center;
  letter-spacing: 0.5px;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.client-logo {
  height: 35px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.social-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.8rem;
}
.rating img {
    height: 26px;
}
.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgb(255 255 255 / 76%);
  padding: 10px 20px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars {
  color: #ffd700;
}

.rating-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.hero-graphic {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}
.graphic-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 450px;
}

.graphic-main {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  /* backdrop-filter: blur(5px); */
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  border-radius: 237px;
}
.graphic-main img {
  width: 440px;
  height: 440px;
  border-radius: 300px;
  object-fit: cover;
}
.graphic-main::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.graphic-item {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 200px;
  color: var(--dark-blue);
  transition: all 0.4s ease;
}

.graphic-item i {
  font-size: 1.8rem;
  color: var(--primary-blue);
}

.graphic-item:nth-child(2) {
  top: -6%;
  left: -10%;
  animation: float 8s ease-in-out infinite;
}

.graphic-item:nth-child(3) {
  top: -1%;
  right: -18%;
  animation: float 8s ease-in-out infinite 1.5s;
}

.graphic-item:nth-child(4) {
  bottom: 20%;
  left: 0;
  animation: float 8s ease-in-out infinite 3s;
}

.graphic-item:nth-child(5) {
  bottom: 10%;
  right: -5%;
  animation: float 8s ease-in-out infinite 4.5s;
}

.graphic-item:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .hero-headline {
    font-size: 3.2rem;
  }
}

@media (max-width: 992px) {
  .hero-section {
    padding: 100px 0 80px;
    text-align: center;
  }

  .hero-headline {
    font-size: 2.8rem;
  }

  .hero-subheadline {
    font-size: 1.2rem;
    margin: 0 auto 2.5rem;
  }

  .graphic-container {
    margin-top: 4rem;
    height: 350px;
  }

  .cta-button-secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px;
  }

  .hero-headline {
    font-size: 2.3rem;
  }

  .hero-subheadline {
    font-size: 1.1rem;
  }

  .client-logos {
    gap: 1.8rem;
  }

  .client-logo {
    height: 25px;
  }

  .social-proof {
    gap: 1.2rem;
  }

  .graphic-container {
    height: 300px;
  }

  .graphic-main {
    width: 250px;
    height: 250px;
  }

  .graphic-item {
    width: 160px;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .hero-headline {
    font-size: 2rem;
  }

  .cta-button {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .client-logos {
    gap: 1.2rem;
  }

  .client-logo {
    height: 20px;
  }

  .social-proof {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-features {
    justify-content: center;
  }
}
/* 


 Tool */

.tools-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.tools-section h2.section-title-modern {
  padding-bottom: 40px;
}

.tools-title {
  text-align: center;
  margin-bottom: 50px;
  color: var(--black);
  font-weight: 700;
  position: relative;
}

.tools-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.tools-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 120px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 15px;
  position: relative;
  overflow: hidden;
}

.tool-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--light-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.tool-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.1);
}

.tool-item:hover::before {
  transform: scaleX(1);
}

.tool-logo {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--dark-blue);
  transition: all 0.3s ease;
}

.tool-item:hover .tool-logo {
  color: var(--primary-blue);
  transform: scale(1.1);
}

.tool-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  transition: all 0.3s ease;
}

.tool-item:hover .tool-name {
  color: var(--primary-blue);
}

.tools-description {
  text-align: center;
  max-width: 700px;
  margin: 40px auto 0;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .tools-container {
    gap: 30px;
  }

  .tool-item {
    width: 140px;
    height: 110px;
  }
}

@media (max-width: 768px) {
  .tools-container {
    gap: 20px;
  }

  .tool-item {
    width: 120px;
    height: 100px;
  }

  .tool-logo {
    font-size: 2rem;
  }

  .tool-name {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .tools-container {
    gap: 15px;
  }

  .tool-item {
    width: 100px;
    height: 90px;
  }

  .tool-logo {
    font-size: 1.8rem;
  }

  .tool-name {
    font-size: 0.75rem;
  }
}

/* Process */
.compact-process {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fcff 100%);
}

.compact-process .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.compact-process .section-badge {
  display: inline-block;
  background: rgba(0, 102, 255, 0.08);
  color: var(--primary-blue);
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.compact-process .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.compact-process .section-description {
  font-size: 20px;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
}

.compact-process .process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.compact-process .process-card {
  background: var(--white);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--medium-gray);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.compact-process .process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.compact-process .step-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.compact-process .step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  margin-right: 15px;
  flex-shrink: 0;
}

.compact-process .step-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.compact-process .step-description {
  /* font-size: 14px; */
  line-height: 1.5;
  color: #666;
  margin-bottom: 15px;
}

.compact-process .step-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compact-process .step-features li {
  padding: 5px 0;
  /* font-size: 13px; */
  color: #555;
  display: flex;
  align-items: flex-start;
}

.compact-process .step-features li i {
  color: var(--primary-blue);
  margin-right: 8px;
  margin-top: 3px;
  font-size: 12px;
  flex-shrink: 0;
}

.compact-process .step-note {
  background: rgba(0, 102, 255, 0.05);
  border-left: 3px solid var(--primary-blue);
  padding: 10px 12px;
  border-radius: 0 6px 6px 0;
  margin-top: 15px;
  font-size: 12px;
  color: #555;
}

.compact-process .benefits-section {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 30px;
  margin-top: 30px;
}

.compact-process .benefits-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-align: center;
}

.compact-process .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.compact-process .benefit-item {
  display: flex;
  align-items: flex-start;
}

.compact-process .benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 102, 255, 0.1);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 12px;
  flex-shrink: 0;
}

.compact-process .benefit-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.compact-process .benefit-content p {
  /* font-size: 13px; */
  line-height: 1.4;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .compact-process {
    padding: 40px 0;
  }

  .compact-process .section-title {
    font-size: 26px;
  }

  .compact-process .process-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .compact-process .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing */
.pricing-section {
  padding: 60px 0;
  background: var(--white);
}

.pricing-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-section .section-badge {
  display: inline-block;
  background: rgba(0, 102, 255, 0.08);
  color: var(--primary-blue);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.pricing-section .section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.pricing-section .section-description {
  font-size: 20px;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-section .pricing-table {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  border: 3px solid #0fbcfa;
}

.pricing-section .pricing-header {
  display: grid;
  grid-template-columns: 1fr repeat(3, 280px);
  background: var(--light-gray);
  border-bottom: 1px solid var(--medium-gray);
}

.pricing-section .feature-column {
  padding: 30px 25px;
  color: #1a1a1a;
  font-size: 44px;
  line-height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1a1a1a, #0066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-section .plan-column {
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  background: #ebf1fa;
}

.pricing-section .plan-column:hover {
  background: rgba(0, 102, 255, 0.03);
}

.pricing-section .plan-column.popular {
  background: rgb(15 188 250);
  position: relative;
}
.pricing-section .plan-column.popular .plan-price {
  color: #fff;
}

.pricing-section .plan-column.popular .plan-name {
  color: #fff;
}

.pricing-section .plan-column.popular .plan-period {
  color: #fff;
}

.pricing-section .plan-column.popular .plan-description {
  color: #fff;
}
.pricing-section .plan-column.popular::before {
  content: "Most Popular";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px;
  text-align: center;
}

.pricing-section .plan-name {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
  padding-top: 24px;
}

.pricing-section .plan-price {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary-blue);
}

.pricing-section .plan-period {
  font-size: 14px;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.pricing-section .plan-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.pricing-section .pricing-body {
  display: grid;
  grid-template-columns: 1fr repeat(3, 280px);
}

.pricing-section .feature-row {
  display: contents;
}

.pricing-section .feature-name {
  padding: 20px 25px;
  font-size: 15px;
  color: #555;
  border-bottom: 1px solid var(--medium-gray);
  background: var(--white);
  display: flex;
  align-items: center;
}

.pricing-section .feature-name:hover {
  background: var(--light-gray);
}

.pricing-section .feature-value {
  padding: 20px 25px;
  text-align: center;
  border-bottom: 1px solid var(--medium-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #555;
}

.pricing-section .feature-value.checked {
  color: var(--success);
  font-size: 18px;
}

.pricing-section .feature-value.plan-highlight {
  background: rgba(0, 102, 255, 0.03);
}

.pricing-section .pricing-cta {
  text-align: center;
  margin-top: 50px;
}

.pricing-section .cta-button {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.pricing-section .cta-button:hover {
  background: var(--dark-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.pricing-section .feature-category {
    background: #0fbcfa;
    font-weight: 700;
    color: #ffffff;
    font-size: 20px;
    padding: 15px 25px;
    border-bottom: 1px solid var(--medium-gray);
    grid-column: 1 / -1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .pricing-section .pricing-header,
  .pricing-section .pricing-body {
    grid-template-columns: 1fr repeat(3, 220px);
  }
}

@media (max-width: 992px) {
  .pricing-section .pricing-table {
    overflow-x: auto;
  }

  .pricing-section .pricing-header,
  .pricing-section .pricing-body {
    grid-template-columns: 300px repeat(3, 200px);
    width: 900px;
  }

  .pricing-section {
    padding: 60px 0;
  }

  .pricing-section .section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .pricing-section .section-title {
    font-size: 28px;
  }

  .pricing-section .plan-price {
    font-size: 36px;
  }
}

/* Case study  */

.case-studies-section {
  padding: 60px 0;
  background: var(--white);
}
.bg-gray {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f073 100%);
}
.bg-white {
  background: #fff !important;
}
.case-studies-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.case-studies-section .section-badge {
  display: inline-block;
  background: rgba(0, 102, 255, 0.08);
  color: var(--primary-blue);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.case-studies-section .section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.case-studies-section .section-description {
  font-size: 20px;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
}

.case-studies-section .case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.case-studies-section .case-study-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--medium-gray);
}

.case-studies-section .case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.case-studies-section .case-study-header {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  padding: 30px;
  color: var(--white);
  position: relative;
}

.case-studies-section .case-study-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--primary-blue);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.case-studies-section .case-study-client {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-studies-section .case-study-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  width: 60%;
}
.case-studies-section .case-study-content {
  padding: 40px;
}

.case-studies-section .case-study-section {
  margin-bottom: 30px;
}

.case-studies-section .section-label {
  font-size: 17px;
  font-weight: 600;
  color: #015cd0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: bold;
}

.case-studies-section .section-label i {
  margin-right: 10px;
  font-size: 16px;
}

.case-studies-section .section-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  padding-left: 26px;
}

.case-studies-section .results-container {
  background: rgb(0 102 255 / 4%);
  border-radius: 16px;
  padding: 30px;
  margin-top: 10px;
}

.case-studies-section .results-label {
  font-size: 21px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.case-studies-section .results-label i {
  margin-right: 10px;
  color: var(--primary-blue);
}

.case-studies-section .results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.case-studies-section .result-item {
  display: flex;
  flex-direction: column;
}

.case-studies-section .result-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.2;
  margin-bottom: 5px;
}

.case-studies-section .result-description {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .case-studies-section {
    padding: 60px 0;
  }

  .case-studies-section .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .case-studies-section .section-title {
    font-size: 32px;
  }

  .case-studies-section .case-study-content {
    padding: 30px;
  }

  .case-studies-section .results-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .case-studies-section .result-value {
    font-size: 28px;
  }
}

/* FAQ */

.faq-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0ab 100%);
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-section .section-badge {
  display: inline-block;
  background: rgba(0, 102, 255, 0.08);
  color: var(--primary-blue);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.faq-section .section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.faq-section .section-description {
  font-size: 20px;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
}

.faq-section .faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section .faq-accordion {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.faq-section .accordion-item {
  border: none;
  border-bottom: 1px solid var(--medium-gray);
  background: var(--white);
}

.faq-section .accordion-item:last-child {
  border-bottom: none;
}

.faq-section .accordion-button {
  background: var(--white);
  padding: 28px 30px;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  border: none;
  box-shadow: none;
  position: relative;
  transition: all 0.3s ease;
}
button.accordion-button.collapsed {
  background: #ffffff;
  border-bottom: 1px solid #dddddd8f;
}

.faq-section .accordion-button:not(.collapsed) {
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: none;
}

.faq-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230066ff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  width: 16px;
  height: 16px;
}

.faq-section .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230066ff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}

.faq-section .accordion-button:hover {
  background: rgba(0, 102, 255, 0.02);
}

.faq-section .question-prefix {
  color: var(--primary-blue);
  margin-right: 12px;
  font-weight: 700;
}

.faq-section .accordion-body {
  padding: 0 30px 28px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  border-top: 1px solid var(--medium-gray);
  margin-top: -1px;
}

.faq-section .accordion-body strong {
  color: #1a1a1a;
}

.faq-section .faq-cta {
  text-align: center;
  margin-top: 60px;
  padding: 50px;
  background: #fff;
  border-radius: 20px;
}

.faq-section .faq-cta h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.faq-section .faq-cta p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.faq-section .cta-button {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.faq-section .cta-button:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-section .section-title {
    font-size: 32px;
  }

  .faq-section .accordion-button {
    padding: 22px 20px;
    font-size: 16px;
  }

  .faq-section .accordion-body {
    padding: 0 20px 22px;
  }

  .faq-section .faq-cta {
    padding: 30px 20px;
  }

  .faq-section .faq-cta h3 {
    font-size: 24px;
  }
}

/* logo Slider addd */

.logo-slider {
  margin: 0 auto;
}

.logo-slider .logo-item {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 15px;
  transition: all 0.3s ease;
  height: 86px;
}

.logo-slider .logo-item img {
  max-width: 100%;
  max-height: 70px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.4s ease;
}

.logo-slider .logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* Slick slider customization - hide arrows */
.logo-slider .slick-prev,
.logo-slider .slick-next {
  display: none !important;
}

.logo-slider .slick-dots {
  bottom: -40px;
  display: none !important;
}

.logo-slider .slick-dots li button:before {
  font-size: 12px;
  color: #bdc3c7;
}

.logo-slider .slick-dots li.slick-active button:before {
  color: #3498db;
}
.tru-logo-wrapper .logo-slider {
  width: 90%;
  margin-top: -51px;
  background: #fff;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
  padding: 10px 20px;
  border-radius: 20px;
  /* border: 2px solid #00aaff; */
}


/* Contact us  */
.contact-section-wrapper {
  padding: 60px 0;
}
.contact-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
      padding: 0;
   
}
        
       .contact-section .contact-left {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    height: 100%;
}
       .contact-section   .contact-left::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .contact-section  .contact-left::after {
            content: "";
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 250px;
            height: 250px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .contact-section  .contact-heading {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .contact-section  .contact-subheading {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }
        
        .contact-section  .contact-info {
            margin-top: 40px;
            position: relative;
            z-index: 2;
        }
        
        .contact-section  .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-section  .info-icon {
            background: rgba(255, 255, 255, 0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
       .contact-section   .info-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .contact-section  .info-text p {
            margin: 0;
            opacity: 0.9;
        }
        
         .contact-section .contact-right {
            padding: 30px 40px;
        }
        
         .contact-section .form-control {
            border: 1px solid #e1e5ee;
            border-radius: 10px;
            padding: 12px 15px;
            margin-bottom: 0px;
            transition: all 0.3s;
        }
        
        .contact-section  .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.25rem rgba(15, 188, 250, 0.25);
        }
        
        .contact-section .form-label {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark-blue);
        }
        
       .contact-section .budget-slider {
    width: 100%;
    margin: 10px 0 25px;
    margin: 0;
}
      .contact-section .budget-value {
    text-align: center;
    font-weight: 600;
    color: #ffffff;
    margin-top: 1px;
    margin-left: 14px;
}
        
      .contact-section .btn-request {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border: none;
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(15, 188, 250, 0.3);
    width: auto;
    border-radius: 100px;
}
        
        .contact-section  .btn-request:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(15, 188, 250, 0.4);
        }
        
         .contact-section .form-heading {
            font-size: 1.8rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 10px;
        }
        
         .contact-section .form-subheading {
            color: #6c757d;
            margin-bottom: 30px;
        }
        
        @media (max-width: 991px) {
          .contact-section    .contact-left,   .contact-section .contact-right {
                padding: 40px 30px;
            }
            
          .contact-section    .contact-heading {
                font-size: 2rem;
            }
        }.budget-row {
    display: flex
;
}.budget-row {
    display: flex
;
    background: #0b9ded;
    padding: 10px;
    border-radius: 10px;
}
        
        @media (max-width: 767px) {
          .contact-section    .contact-left,    .contact-section .contact-right {
                padding: 30px 20px;
            }
            
           .contact-section   .contact-heading {
                font-size: 1.8rem;
            }
        }

        /* Process */

         /* Row Container */
        .process-row {
            display: flex;
            justify-content: center;
            gap: 7px;
            margin-bottom: 29px;
            align-items: center;
            /* flex-wrap: wrap; */
            position: relative;
            width: 100%;
        }

             .process-row .process-item {
            flex: 0 0 auto;
            width: 276px;
        }

        /* Arrow Right */
            .process-row  .arrow-right {
            font-size: 2.5rem;
            color: var(--primary-blue);
            animation: slideRight 1.5s infinite;
            flex-shrink: 0;
        }

        @keyframes slideRight {
            0%, 100% { transform: translateX(0); opacity: 0.6; }
            50% { transform: translateX(10px); opacity: 1; }
        }

        /* Arrow Down */
            .process-row  .arrow-down-wrapper {
            display: flex;
            justify-content: flex-end;
            padding-right: 40px;
            margin: 40px 0;
            margin-bottom: 60px;
        }

            .process-row  .arrow-down-wrapper i {
            font-size: 2.5rem;
            color: var(--primary-blue);
            animation: slideDown 1.5s infinite;
        }

        @keyframes slideDown {
            0%, 100% { transform: translateY(0); opacity: 0.6; }
            50% { transform: translateY(10px); opacity: 1; }
        }

        /* Arrow Left */
            .process-row  .arrow-left {
            font-size: 2.5rem;
            color: var(--primary-blue);
            animation: slideLeft 1.5s infinite;
            flex-shrink: 0;
        }

        @keyframes slideLeft {
            0%, 100% { transform: translateX(0); opacity: 0.6; }
            50% { transform: translateX(-10px); opacity: 1; }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .process-row {
                justify-content: center;
            }

                .process-row  .process-item {
                width: 240px;
            }
        }

        @media (max-width: 768px) {
         

            .process-row {
                flex-direction: column;
                gap: 40px;
            }

                .process-row  .arrow-right,
                .process-row  .arrow-left {
                transform: rotate(90deg);
                margin: 20px 0;
            }

                .process-row  .process-item {
                width: 100%;
                max-width: 320px;
            }

               .process-row   .arrow-down-wrapper {
                justify-content: center;
                padding-right: 0;
                margin: 30px 0;
            }

                .process-row  .arrow-down-wrapper i {
                transform: rotate(90deg);
            }
        }

           /* Card Design */
      .process-row     .card-box {
            background: white;
            border: 3px solid #e0e0e0;
            border-radius: 25px;
            padding: 35px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 300px;
        }

        .process-row   .card-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(15, 188, 250, 0.15), rgba(0, 212, 255, 0.1));
            transition: left 0.4s ease;
            z-index: 0;
        }

         .process-row  .card-box:hover::before {
            left: 0;
        }

         .process-row  .card-box:hover {
            border-color: var(--primary-blue);
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(15, 188, 250, 0.25);
        }

         .process-row  .card-content {
            position: relative;
            z-index: 1;
        }

       .process-row    .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #0fbcfa 0%, #00d4ff 100%);
            border-radius: 50%;
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            margin-bottom: 20px;
            box-shadow: 0 8px 25px rgba(15, 188, 250, 0.35);
        }

      .process-row .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #272f31;
    margin-bottom: 12px;
    line-height: 1.3;
}

         .process-row  .card-desc {
            font-size: 0.9rem;
            color: #777;
            line-height: 1.6;
            font-weight: 500;
        }

        /* testimonial */

         /* Grid Layout */
      .testimonials-section-two  .testi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            perspective: 1000px;
        }

        /* Testimonial Card */
     .testimonials-section-two   .testi-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            border: 2px solid transparent;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 320px;
        }

        /* Background Gradient Overlay */
      .testimonials-section-two  .testi-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(15, 188, 250, 0.15) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }

      .testimonials-section-two  .testi-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--electric-blue));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 2;
        }

     .testimonials-section-two   .testi-card:hover::before {
            opacity: 1;
        }

      .testimonials-section-two  .testi-card:hover::after {
            transform: scaleX(1);
        }

       .testimonials-section-two .testi-card:hover {
            border-color: var(--primary-blue);
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(15, 188, 250, 0.2);
        }

        /* Card Content */
      .testimonials-section-two  .card-inner {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        /* Star Rating */
      .testimonials-section-two  .stars {
            font-size: 24px;
            color: #ffc107;
            margin-bottom: -1px;
            letter-spacing: 3px;
            text-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
        }

        /* Testimonial Text */
     .testimonials-section-two   .testi-text {
            font-size: 1.05rem;
            color: #333;
            line-height: 1.8;
            margin-bottom: 0;
            font-weight: 500;
            flex-grow: 1;
            position: relative;
            padding: 20px 0;
        }

      .testimonials-section-two  .testi-text::before {
            content: '"';
            position: absolute;
            left: -10px;
            top: -15px;
            font-size: 4rem;
            color: var(--primary-blue);
            opacity: 0.1;
            font-weight: bold;
        }

        /* Author Section */
     .testimonials-section-two   .testi-footer {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 2px solid #f0f0f0;
        }

      .testimonials-section-two  .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.3rem;
            box-shadow: 0 4px 15px rgba(15, 188, 250, 0.3);
            flex-shrink: 0;
        }

     .testimonials-section-two   .author-info {
            display: flex;
            flex-direction: column;
        }

      .testimonials-section-two  .testi-author {
            font-size: 1rem;
            font-weight: 700;
            color: #0052cc;
            margin: 0;
        }

       .testimonials-section-two .testi-role {
            font-size: 0.85rem;
            color: #999;
            font-weight: 500;
            margin-top: 3px;
        }

        /* Hover Effect on Avatar */
      .testimonials-section-two  .testi-card:hover .author-avatar {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(15, 188, 250, 0.5);
        }

        /* Badge */
      .testimonials-section-two  .verified-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(15, 188, 250, 0.3);
            z-index: 2;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

     .testimonials-section-two   .testi-card:hover .verified-badge {
            opacity: 1;
        }

        /* Responsive */
        @media (max-width: 1024px) {
         .testimonials-section-two   .testi-header h2 {
                font-size: 2.5rem;
            }

          .testimonials-section-two  .testi-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
        

          
         .testimonials-section-two   .testi-grid {
                grid-template-columns: 1fr;
            }

        .testimonials-section-two    .testi-card {
                padding: 30px;
                min-height: 280px;
            }

          .testimonials-section-two  .testi-text {
                font-size: 1rem;
            }
        }

        /* Animation on Load */
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

      .testimonials-section-two  .testi-card {
            animation: slideUp 0.6s ease-out forwards;
        }

      .testimonials-section-two  .testi-card:nth-child(1) {
            animation-delay: 0.1s;
        }

      .testimonials-section-two  .testil-card:nth-child(2) {
            animation-delay: 0.2s;
        }

      .testimonials-section-two  .testi-card:nth-child(3) {
            animation-delay: 0.3s;
        }section.testimonials-section-wrapper.testimonials-section-two h2.section-title-modern {
    padding-bottom: 40px;
}

/* Impect number */
.impact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fcff 100%);
}

.impact-section .impact-container {
    max-width: 1300px;
    margin: 0 auto;
}

.impact-section .impact-header {
    text-align: center;
    margin-bottom: 100px;
}

.impact-section .impact-header h2 {
    font-size: 3.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0fbcfa 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
}

.impact-section .impact-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

/* Counter Grid */
.impact-section .counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(217px, 1fr));
    gap: 32px;
    margin-bottom: 43px;
}

/* Counter Card */
.impact-section .counter-card {
    background: #ffffff;
    border: 1px solid #06cafd;
    border-radius: 25px;
    padding: 50px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow: -13 8px 25px rgb(0 0 0 / 7%);
}

.impact-section .counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(15, 188, 250, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.impact-section .counter-card:hover::before {
    left: 100%;
}

.impact-section .counter-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--electric-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.impact-section .counter-card:hover::after {
    transform: scaleX(1);
}

.impact-section .counter-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(15, 188, 250, 0.2);
}

.impact-section .card-content {
    position: relative;
    z-index: 1;
}

.impact-section .counter-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 12px 40px rgba(15, 188, 250, 0.3);
    transition: all 0.4s ease;
}

.impact-section .counter-card:hover .counter-icon {
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 18px 55px rgba(15, 188, 250, 0.4);
}

.impact-section .counter-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0fbcfa, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: block;
    line-height: 1;
    min-height: 60px;
}

.impact-section .counter-label {
    font-size: 18px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 23px;
}

.impact-section .counter-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-weight: 500;
    display: none;
}

/* Divider Line */
.impact-section .divider-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--electric-blue));
    margin: 20px auto;
    border-radius: 2px;
}

/* Bottom Stats Section */
.impact-section .bottom-stats {
    background: #ffffff;
    border: 1px solid #0fbcfa;
    border-radius: 25px;
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    text-align: center;
}

.impact-section .stat-item h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.impact-section .stat-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .impact-section .impact-header h2 {
        font-size: 2.8rem;
    }

    .impact-section .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .impact-section .counter-card {
        padding: 40px 25px;
    }

    .impact-section .counter-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .impact-section {
        padding: 80px 0;
    }

    .impact-section .impact-header {
        margin-bottom: 60px;
    }

    .impact-section .impact-header h2 {
        font-size: 2.2rem;
    }

    .impact-section .impact-header p {
        font-size: 1rem;
    }

    .impact-section .counter-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .impact-section .counter-card {
        padding: 35px 20px;
    }

    .impact-section .counter-number {
        font-size: 2.2rem;
    }

    .impact-section .counter-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .impact-section .bottom-stats {
        padding: 40px;
        gap: 30px;
        grid-template-columns: 1fr;
    }
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.impact-section .counter-card {
    animation: countUp 0.6s ease-out forwards;
    opacity: 0;
}

.impact-section .counter-card:nth-child(1) { animation-delay: 0.1s; }
.impact-section .counter-card:nth-child(2) { animation-delay: 0.2s; }
.impact-section .counter-card:nth-child(3) { animation-delay: 0.3s; }
.impact-section .counter-card:nth-child(4) { animation-delay: 0.4s; }
.impact-section .counter-card:nth-child(5) { animation-delay: 0.5s; }
.impact-section .counter-card:nth-child(6) { animation-delay: 0.6s; }

/* COntact us page */
/* Hero Section */
.contact-us-page .contact-hero {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 154px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-us-page .contact-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15, 188, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    animation: contact-float 6s ease-in-out infinite;
}

.contact-us-page .contact-hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    animation: contact-float 8s ease-in-out infinite reverse;
}

@keyframes contact-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.contact-us-page .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex
;
    flex-direction: column;
}

.contact-us-page .hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0fbcfa 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-us-page .hero-content p {
    font-size: 1.4rem;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

/* Contact Section */
.contact-us-page .contact-section {
    padding: 60px 0;
    background: #ffffff;
}
.contact-us-page .contact-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Two Column Layout */
.contact-us-page .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side - Contact Info */
.contact-us-page .contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    animation: contact-slideInUp 0.6s ease-out;
}

.contact-us-page .info-box {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.contact-us-page .info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 12px 40px rgba(15, 188, 250, 0.3);
    transition: all 0.4s ease;
}

.contact-us-page .info-box:hover .info-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 18px 55px rgba(15, 188, 250, 0.5);
}

.contact-us-page .info-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0052cc;
    margin-bottom: 8px;
}

.contact-us-page .info-content p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-us-page .info-content a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-us-page .info-content a:hover {
    color: var(--electric-blue);
    text-decoration: underline;
}

/* Right Side - Contact Form */
.contact-us-page .contact-form-section {
    background: linear-gradient(135deg, rgba(15, 188, 250, 0.05), rgba(0, 212, 255, 0.03));
    border: 2px solid rgba(15, 188, 250, 0.1);
    border-radius: 30px;
    padding: 50px;
    backdrop-filter: blur(10px);
    animation: contact-slideInUp 0.6s ease-out 0.2s both;
}

.contact-us-page .form-group {
    margin-bottom: 25px;
}

.contact-us-page .form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.contact-us-page .form-group input,
.contact-us-page .form-group select,
.contact-us-page .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-us-page .form-group input:focus,
.contact-us-page .form-group select:focus,
.contact-us-page .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(15, 188, 250, 0.1);
    background: white;
}

.contact-us-page .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Required Field */
.contact-us-page .required {
    color: #ff4444;
    font-weight: 700;
}

/* Radio Group */
.contact-us-page .radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-us-page .radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-us-page .radio-option:hover {
    border-color: var(--primary-blue);
    background: rgba(15, 188, 250, 0.05);
}

.contact-us-page .radio-option input[type="radio"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
}

.contact-us-page .radio-option label {
    margin: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Submit Button */
.contact-us-page .submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 12px 35px rgba(15, 188, 250, 0.35);
}

.contact-us-page .submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(15, 188, 250, 0.5);
}

.contact-us-page .submit-btn:active {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-us-page .hero-content h1 {
        font-size: 3.2rem;
    }

    .contact-us-page .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-us-page .contact-form-section {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-us-page .contact-hero {
        padding: 80px 0 60px;
    }

    .contact-us-page .hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-us-page .hero-content p {
        font-size: 1.1rem;
    }

    .contact-us-page .contact-section {
        padding: 60px 0;
    }

    .contact-us-page .contact-wrapper {
        gap: 40px;
    }

    .contact-us-page .contact-info-section {
        gap: 30px;
    }

    .contact-us-page .info-box {
        gap: 15px;
    }

    .contact-us-page .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-us-page .radio-group {
        grid-template-columns: 1fr;
    }

    .contact-us-page .contact-form-section {
        padding: 30px;
    }
}

/* Animation */
@keyframes contact-slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Blog page */

/* Blog Hero Section */
.blog-page .blog-hero {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 141px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-page .blog-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15, 188, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}

.blog-page .blog-hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.blog-page .blog-hero-content {
    position: relative;
    z-index: 2;
}

.blog-page .blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0fbcfa 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.blog-page .blog-hero p {
    font-size: 1.2rem;
    color: #ffffff;
}

/* Blog Section */
.blog-page .blog-section {
    padding: 80px 0;
    background: #ffffff;
}

.blog-page .blog-container {
    max-width: 1300px;
    margin: 0 auto;
}

.blog-page .blog-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

/* Blog Posts */
.blog-page .blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

/* Blog Card */
.blog-page .blog-card {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: slideIn 0.6s ease-out forwards;
    opacity: 0;
}

.blog-page .blog-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(15, 188, 250, 0.2);
}

.blog-page .blog-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-page .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-page .blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-page .blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 188, 250, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-page .blog-card:hover .blog-card-overlay {
    opacity: 1;
}

.blog-page .blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-page .blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-page .blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #999;
}

.blog-page .blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-page .blog-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0052cc;
    margin-bottom: 12px;
    line-height: 1.3;
    flex-grow: 1;
}

.blog-page .blog-card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-page .blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.blog-page .read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-page .read-more:hover {
    color: var(--electric-blue);
    gap: 12px;
}

.blog-page .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Sidebar */
.blog-page .sidebar {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Search Box */
.blog-page .search-box {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.blog-page .search-box:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 15px 50px rgba(15, 188, 250, 0.15);
}

.blog-page .search-box h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0052cc;
    margin-bottom: 15px;
}

.blog-page .search-input-wrapper {
    position: relative;
}

.blog-page .search-input-wrapper input {
    width: 100%;
    padding: 12px 15px 12px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-page .search-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(15, 188, 250, 0.1);
}

.blog-page .search-input-wrapper button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-page .search-input-wrapper button:hover {
    transform: translateY(-50%) scale(1.05);
}

/* Category Box */
.blog-page .category-box {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.blog-page .category-box h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0052cc;
    margin-bottom: 20px;
}

.blog-page .category-list {
    display: flex;
    flex-direction: column;
}

.blog-page .category-item {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-page .category-item:last-child {
    border-bottom: none;
}

.blog-page .category-item:hover {
    background: linear-gradient(135deg, rgba(15, 188, 250, 0.05), rgba(0, 212, 255, 0.03));
    padding-left: 20px;
}

.blog-page .category-item a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-page .category-item:hover a {
    color: var(--primary-blue);
}

.blog-page .category-count {
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Recent Posts */
.blog-page .recent-posts-box {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.blog-page .recent-posts-box h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0052cc;
    margin-bottom: 20px;
}

.blog-page .recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.blog-page .recent-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.blog-page .recent-post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-page .recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-page .recent-post-content a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.blog-page .recent-post-content a:hover {
    color: var(--primary-blue);
}

.blog-page .recent-post-date {
    font-size: 0.8rem;
    color: #999;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-page .blog-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-page .sidebar {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .blog-page .blog-posts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-page .blog-hero h1 {
        font-size: 2.2rem;
    }

    .blog-page .blog-section {
        padding: 60px 0;
    }

    .blog-page .blog-posts {
        grid-template-columns: 1fr;
    }

    .blog-page .sidebar {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-page .blog-card-title {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-page .blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-page .blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-page .blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-page .blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-page .blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-page .blog-card:nth-child(6) { animation-delay: 0.6s; }


/* BLog details page */

/* Blog Hero */
.blog-details-page .blog-details-hero {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 150px 0 76px;
    position: relative;
    overflow: hidden;
}
.blog-details-page .blog-details-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15, 188, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    animation: blog-float 6s ease-in-out infinite;
}

@keyframes blog-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.blog-details-page .blog-details-hero-content {
    position: relative;
    z-index: 2;
}

.blog-details-page .blog-details-hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0fbcfa 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-details-page .blog-meta-hero {
    display: flex
;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    color: #ffffff;
    font-weight: 600;
}
.blog-details-page .blog-meta-hero span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Blog Details Section */
.blog-details-page .blog-details-section {
    padding: 80px 0;
    background: #ffffff;
}

.blog-details-page .blog-details-container {
    max-width: 1300px;
    margin: 0 auto;
}

.blog-details-page .blog-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
}

/* Featured Image */
.blog-details-page .featured-image {
    width: 100%;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(15, 188, 250, 0.2);
    animation: blog-slideInUp 0.6s ease-out;
}

.blog-details-page .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Article Content */
.blog-details-page .article-content {
    background: white;
}

.blog-details-page .article-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    animation: blog-slideInUp 0.6s ease-out 0.1s both;
}

.blog-details-page .author-info-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(15, 188, 250, 0.3);
}

.blog-details-page .author-details h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0052cc;
    margin-bottom: 5px;
}

.blog-details-page .author-details p {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

/* Article Body */
.blog-details-page .article-body {
    color: #333;
    line-height: 1.9;
    animation: blog-slideInUp 0.6s ease-out 0.2s both;
}

.blog-details-page .article-body h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0052cc;
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-details-page .article-body h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0052cc;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-details-page .article-body p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.9;
}

.blog-details-page .article-body ul,
.blog-details-page .article-body ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.blog-details-page .article-body li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.blog-details-page .highlight-box {
    background: linear-gradient(135deg, rgba(15, 188, 250, 0.1), rgba(0, 212, 255, 0.05));
    border-left: 4px solid var(--primary-blue);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.blog-details-page .highlight-box p {
    margin: 0;
    font-weight: 600;
    color: #0052cc;
}

/* Article Tags */
.blog-details-page .article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.blog-details-page .tag {
    background: linear-gradient(135deg, rgba(15, 188, 250, 0.1), rgba(0, 212, 255, 0.05));
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 50px;
    border: 2px solid rgba(15, 188, 250, 0.2);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-details-page .tag:hover {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    color: white;
}

/* Share Buttons */
.blog-details-page .share-section {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    align-items: center;
}

.blog-details-page .share-section p {
    font-weight: 700;
    margin: 0;
    color: #0052cc;
}

.blog-details-page .share-buttons {
    display: flex;
    gap: 10px;
}

.blog-details-page .share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(15, 188, 250, 0.3);
}

.blog-details-page .share-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(15, 188, 250, 0.5);
}

/* Sidebar */
.blog-details-page .blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Related Posts */
.blog-details-page .related-posts-box {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.blog-details-page .related-posts-box h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0052cc;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-details-page .related-post-card {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.blog-details-page .related-post-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.blog-details-page .related-post-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.blog-details-page .related-post-card a {
    display: block;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-details-page .related-post-card a:hover {
    color: var(--primary-blue);
}

.blog-details-page .related-post-date {
    font-size: 0.8rem;
    color: #999;
}

/* Table of Contents */
.blog-details-page .toc-box {
    background: linear-gradient(135deg, rgba(15, 188, 250, 0.05), rgba(0, 212, 255, 0.05));
    border: 2px solid rgba(15, 188, 250, 0.1);
    border-radius: 20px;
    padding: 25px;
   
    top: 20px;
}

.blog-details-page .toc-box h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0052cc;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-details-page .toc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blog-details-page .toc-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(15, 188, 250, 0.1);
}

.blog-details-page .toc-item:last-child {
    border-bottom: none;
}

.blog-details-page .toc-item a {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
}

.blog-details-page .toc-item a:hover {
    color: var(--primary-blue);
    padding-left: 8px;
}

/* Newsletter Box */
.blog-details-page .newsletter-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    border-radius: 20px;
    padding: 25px;
    color: white;
    text-align: center;
}

.blog-details-page .newsletter-box h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.blog-details-page .newsletter-box p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.blog-details-page .newsletter-box input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.blog-details-page .newsletter-box button {
    width: 100%;
    padding: 12px;
    background: white;
    color: var(--primary-blue);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-details-page .newsletter-box button:hover {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-details-page .blog-details-hero h1 {
        font-size: 2.5rem;
    }

    .blog-details-page .blog-details-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-details-page .toc-box {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-details-page .blog-details-hero {
        padding: 60px 0 40px;
    }

    .blog-details-page .blog-details-hero h1 {
        font-size: 2rem;
    }

    .blog-details-page .featured-image {
        height: 300px;
    }

    .blog-details-page .article-body h2 {
        font-size: 1.6rem;
    }

    .blog-details-page .article-body h3 {
        font-size: 1.2rem;
    }

    .blog-details-page .blog-meta-hero {
        flex-direction: column;
        gap: 15px;
    }

    .blog-details-page .blog-details-section {
        padding: 60px 0;
    }
}

@keyframes blog-slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Thank you page */

/* Thank You Section */
.thanqq-page .thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 145px 20px;
}

/* Animated Background Elements */
.thanqq-page .thank-you-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 188, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    animation: float1 8s ease-in-out infinite;
}

.thanqq-page .thank-you-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(30px) translateX(20px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-30px) translateX(-20px); }
}

/* Content Container */
.thanqq-page .thank-you-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}

/* Success Animation */
@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(0deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.thanqq-page .success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: white;
    animation: checkmark 0.8s ease-out;
    box-shadow: 0 20px 60px rgba(15, 188, 250, 0.4);
}

/* Heading */
.thanqq-page .thank-you-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0fbcfa 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
}

.thanqq-page .thank-you-subtitle {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 500;
}

.thanqq-page .thank-you-description {
    font-size: 1.05rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Email Display */
.thanqq-page .email-display {
    background: rgba(15, 188, 250, 0.1);
    border: 2px solid rgba(15, 188, 250, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Info Cards */
.thanqq-page .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.thanqq-page .info-card {
    background: rgba(15, 188, 250, 0.05);
    border: 2px solid rgba(15, 188, 250, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.4s ease;
}

.thanqq-page .info-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-10px);
    background: rgba(15, 188, 250, 0.1);
}

.thanqq-page .info-card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.thanqq-page .info-card-title {
    font-size: 0.95rem;
    color: #000000;
    font-weight: 600;
}

/* Buttons Group */
.thanqq-page .button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.thanqq-page .btn-primary-custom {
    padding: 16px 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(15, 188, 250, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.thanqq-page .btn-primary-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(15, 188, 250, 0.5);
    color: white;
}

.thanqq-page .btn-secondary-custom {
    padding: 16px 50px;
    background: transparent;
    color: var(--primary-blue);
    text-decoration: none;
    border: 2px solid rgba(15, 188, 250, 0.5);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.thanqq-page .btn-secondary-custom:hover {
    border-color: var(--primary-blue);
    background: rgba(15, 188, 250, 0.1);
    color: var(--electric-blue);
    transform: translateY(-5px);
}

/* Next Steps */
.thanqq-page .next-steps {
    background: rgba(15, 188, 250, 0.05);
    border-left: 4px solid var(--primary-blue);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.thanqq-page .next-steps h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.thanqq-page .steps-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.thanqq-page .step-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.thanqq-page .step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    flex-shrink: 0;
}

.thanqq-page .step-content {
    flex: 1;
}

.thanqq-page .step-content h4 {
    color: #000000;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.thanqq-page .step-content p {
    color: #000000;
    font-size: 0.9rem;
    margin: 0;
}

/* Social Links */
.thanqq-page .social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
}

.thanqq-page .social-link {
    width: 50px;
    height: 50px;
    background: rgba(15, 188, 250, 0.1);
    border: 2px solid rgba(15, 188, 250, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.thanqq-page .social-link:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    border-color: var(--primary-blue);
    color: white;
    transform: translateY(-5px);
}

/* Footer Message */
.thanqq-page .footer-message {
    color: #000000;
    font-size: 0.95rem;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(15, 188, 250, 0.1);
}

.thanqq-page .footer-message a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.thanqq-page .footer-message a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .thanqq-page .thank-you-title {
        font-size: 2.2rem;
    }

    .thanqq-page .thank-you-subtitle {
        font-size: 1.1rem;
    }

    .thanqq-page .thank-you-description {
        font-size: 1rem;
    }

    .thanqq-page .info-cards {
        grid-template-columns: 1fr;
    }

    .thanqq-page .button-group {
        flex-direction: column;
        gap: 15px;
    }

    .thanqq-page .btn-primary-custom,
    .thanqq-page .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }

    .thanqq-page .next-steps {
        padding: 20px;
    }

    .thanqq-page .success-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thanqq-page .thank-you-content {
    animation: slideInUp 0.8s ease-out;
}

.thanqq-page .info-cards {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.thanqq-page .next-steps {
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.thanqq-page .button-group {
    animation: slideInUp 0.8s ease-out 0.4s both;
}


/* Case Study  */

.case-study-wrapper {
    background: var(--white);
    min-height: 100vh;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    padding-top: 0;
}section.case-study-wrapper {
    padding: 60px 0;
}
        /* Animated background elements */
        .case-study-wrapper::before {
            content: '';
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 20% 80%, rgba(15, 188, 250, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(0, 100, 255, 0.06) 0%, transparent 50%);
            animation: moveGradient 15s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes moveGradient {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, 30px); }
        }

      .case-study-wrapper  .case-study-container {
            position: relative;
            z-index: 1;
        }

     .case-study-wrapper   .case-study-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

      .case-study-wrapper .case-study-header-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(15, 188, 250, 0.12);
            border: 1.5px solid var(--primary-blue);
            border-radius: 50px;
            color: var(--dark-blue);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
        }

      .case-study-wrapper  .case-study-title {
            font-size: 4rem;
            font-weight: 900;
            color: var(--dark-blue);
            margin-bottom: 20px;
            letter-spacing: -2px;
            line-height: 1.1;
        }

      .case-study-wrapper  .case-study-title-highlight {
            background: var(--blue-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline;
        }

      .case-study-wrapper  .case-study-subtitle {
            font-size: 1.15rem;
            color: #888;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
        }

      .case-study-wrapper  .case-studies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
           
        }
section.case-study-wrapper h2.section-title-modern {
    padding-bottom: 30px;
}
       .case-study-wrapper .case-study-card {
            position: relative;
            height: 520px;
            border-radius: 24px;
            overflow: hidden;
            background: var(--white);
            border: 1.5px solid #f0f0f0;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.33, 0.66, 0.66, 1);
            display: flex;
            flex-direction: column;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
        }

      .case-study-wrapper  .case-study-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--blue-gradient);
            opacity: 0;
            z-index: 0;
            transition: opacity 0.5s ease;
            border-radius: 24px;
        }

       .case-study-wrapper .case-study-card:hover::before {
            opacity: 0.04;
        }

      .case-study-wrapper  .case-study-card:hover {
            transform: translateY(-25px);
            border-color: var(--primary-blue);
            box-shadow: 0 25px 60px rgba(15, 188, 250, 0.15);
        }

    .case-study-wrapper    .case-study-image-wrapper {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f9ff, #e3f2fd);
        }

      .case-study-wrapper  .case-study-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.33, 0.66, 0.66, 1);
        }

      .case-study-wrapper  .case-study-card:hover .case-study-image {
            transform: scale(1.12) rotate(1deg);
        }

       .case-study-wrapper .case-study-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 82, 204, 0);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.4s ease;
            z-index: 2;
        }

      .case-study-wrapper  .case-study-card:hover .case-study-overlay {
            background: rgba(0, 82, 204, 0.12);
        }

      .case-study-wrapper  .case-study-icon-box {
            width: 80px;
            height: 80px;
            background: var(--blue-gradient);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2.2rem;
            transform: scale(0.6);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.33, 0.66, 0.66, 1);
            box-shadow: 0 10px 30px rgba(15, 188, 250, 0.3);
        }

      .case-study-wrapper  .case-study-card:hover .case-study-icon-box {
            transform: scale(1);
            opacity: 1;
        }

      .case-study-wrapper  .case-study-content {
            padding: 38px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            z-index: 1;
        }

      .case-study-wrapper  .case-study-label {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(15, 188, 250, 0.12);
            color: var(--dark-blue);
            border-radius: 8px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 14px;
            width: fit-content;
        }

      .case-study-wrapper  .case-study-title-text {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--dark-blue);
            margin-bottom: 12px;
            line-height: 1.3;
        }

      .case-study-wrapper  .case-study-description {
            font-size: 0.95rem;
            color: #777;
            line-height: 1.65;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 24px;
            font-weight: 400;
        }

      .case-study-wrapper  .case-study-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 18px;
            border-top: 1.5px solid #f0f0f0;
        }

     .case-study-wrapper   .case-study-stats {
            display: flex;
            gap: 20px;
        }

      .case-study-wrapper  .case-study-stat {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

       .case-study-wrapper .case-study-stat-value {
            font-size: 1.2rem;
            font-weight: 900;
            background: var(--blue-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

       .case-study-wrapper .case-study-stat-label {
            font-size: 0.7rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            font-weight: 700;
        }

      .case-study-wrapper  .case-study-view-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: var(--blue-gradient);
            border-radius: 14px;
            color: var(--white);
            text-decoration: none;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(15, 188, 250, 0.25);
        }

      .case-study-wrapper  .case-study-view-btn:hover {
            transform: rotate(45deg) scale(1.12);
            box-shadow: 0 12px 30px rgba(15, 188, 250, 0.35);
        }

        @media (max-width: 1200px) {
         .case-study-wrapper   .case-studies-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 28px;
            }

          .case-study-wrapper  .case-study-title {
                font-size: 3.2rem;
            }
        }

        @media (max-width: 768px) {
            .case-study-wrapper {
                padding: 60px 0;
            }

          .case-study-wrapper  .case-study-header {
                margin-bottom: 50px;
            }

           .case-study-wrapper .case-study-title {
                font-size: 2.4rem;
            }

          .case-study-wrapper  .case-study-subtitle {
                font-size: 1rem;
            }

           .case-study-wrapper .case-studies-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

          .case-study-wrapper  .case-study-card {
                height: 480px;
            }

         .case-study-wrapper   .case-study-image-wrapper {
                height: 260px;
            }

          .case-study-wrapper  .case-study-content {
                padding: 28px;
            }

           .case-study-wrapper .case-study-title-text {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
           .case-study-wrapper .case-study-title {
                font-size: 1.9rem;
            }

           .case-study-wrapper .case-study-card {
                height: 420px;
            }

          .case-study-wrapper  .case-study-image-wrapper {
                height: 200px;
            }

          .case-study-wrapper  .case-study-content {
                padding: 20px;
            }

          .case-study-wrapper  .case-study-description {
                -webkit-line-clamp: 1;
                font-size: 0.9rem;
            }

           .case-study-wrapper .case-study-stats {
                gap: 12px;
            }
        }

        /* Testimonial */
          .tes-wrapper {
            background: #f3f3f3;
            padding: 60px 0;
            position: relative;
        }

        .tes-container {
            position: relative;
            z-index: 1;
        }

        .tes-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .tes-badge {
            display: inline-block;
            padding: 10px 24px;
            background: var(--light-gray);
            border: 1px solid var(--border-gray);
            border-radius: 30px;
            color: var(--dark-blue);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .tes-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--dark-blue);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
            line-height: 1.15;
        }

        .tes-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 400;
        }

        .tes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 28px;
            margin-top: 0;
        }

        .tes-card {
            background: var(--white);
            border: 1px solid var(--border-gray);
            border-radius: 12px;
            padding: 36px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .tes-card:hover {
            border-color: var(--primary-blue);
            box-shadow: 0 8px 24px rgba(15, 188, 250, 0.12);
            transform: translateY(-4px);
        }

        .tes-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }

        .tes-user {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
        }

        .tes-avatar {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            border: 1px solid var(--border-gray);
        }

        .tes-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .tes-info {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .tes-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--dark-blue);
        }

        .tes-rating {
            display: flex;
            gap: 3px;
        }

        .tes-star {
            color: #ffc107;
            font-size: 0.85rem;
        }

        .tes-platform {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--light-gray);
            border-radius: 8px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .tes-card:hover .tes-platform {
            background: var(--blue-gradient);
        }

        .tes-platform img {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }

        .tes-verified {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.75rem;
            color: #27ae60;
            font-weight: 700;
            margin-top: 20px;
        }

        .tes-verified i {
            font-size: 0.95rem;
        }

        .tes-text {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.7;
            margin: 0;
            font-weight: 400;
        }

        @media (max-width: 1200px) {
            .tes-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 24px;
            }

            .tes-title {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .tes-wrapper {
                padding: 80px 0;
            }

            .tes-header {
                margin-bottom: 50px;
            }

            .tes-title {
                font-size: 2.2rem;
            }

            .tes-subtitle {
                font-size: 1rem;
            }

            .tes-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .tes-card {
                padding: 28px;
            }
        }

        @media (max-width: 480px) {
            .tes-wrapper {
                padding: 60px 0;
            }

            .tes-title {
                font-size: 1.8rem;
            }

            .tes-card {
                padding: 20px;
            }

            .tes-text {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            .tes-name {
                font-size: 0.9rem;
            }
        }

        /* Packge */

       .pricing-pack-wrapper  .pricing-table-wrapper {
            background: var(--white);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 40px;
            border: 2px solid rgba(15, 188, 250, 0.2);
            box-shadow: 0 20px 60px rgba(15, 188, 250, 0.15);
            overflow-x: auto;
        }

      .pricing-pack-wrapper  .pricing-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            min-width: 800px;
        }

      .pricing-pack-wrapper  .pricing-table thead th {
            background: var(--gradient);
            color: var(--white);
            padding: 25px 20px;
            font-size: 24px;
            font-weight: 700;
            text-align: center;
            border: none;
            position: sticky;
            top: 0;
            z-index: 10;
        }

     
.pricing-pack-wrapper .pricing-table thead th:first-child {
    border-radius: 20px 0 0 0;
    text-align: left;
    background: rgba(15, 188, 250, 0.1);
    backdrop-filter: blur(10px);
    color: #000;
}

     .pricing-pack-wrapper   .pricing-table thead th:last-child {
            border-radius: 0 20px 0 0;
        }

      .pricing-pack-wrapper  .pricing-table thead th.plan-header {
            position: relative;
            transition: all 0.3s ease;
        }

      .pricing-pack-wrapper  .pricing-table thead th.plan-header:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(15, 188, 250, 0.4);
        }

     .pricing-pack-wrapper   .pricing-table thead th.featured {
            background: linear-gradient(135deg, var(--neon-green), #2ed604);
            color: var(--black);
        }

       .pricing-pack-wrapper .popular-badge {
            position: absolute;
            top: -10px;
            right: 10px;
            background: var(--white);
            color: var(--black);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

       .pricing-pack-wrapper .pricing-table tbody tr {
            transition: all 0.3s ease;
        }

      .pricing-pack-wrapper  .pricing-table tbody tr:hover {
            background: rgba(15, 188, 250, 0.08);
        }

       .pricing-pack-wrapper .pricing-table tbody tr:nth-child(even) {
            background: rgba(15, 188, 250, 0.03);
        }

      .pricing-pack-wrapper  .pricing-table tbody td {
            padding: 20px;
            border-bottom: 1px solid rgba(15, 188, 250, 0.1);
            color: #333;
            font-size: 15px;
            transition: all 0.3s ease;
        }

     .pricing-pack-wrapper   .pricing-table tbody td:first-child {
            font-weight: 600;
            color: var(--dark-blue);
            text-align: left;
            padding-left: 30px;
        }

      .pricing-pack-wrapper  .pricing-table tbody td:not(:first-child) {
            text-align: center;
        }

      .pricing-pack-wrapper  .pricing-table tbody tr:last-child td {
            border-bottom: none;
        }

      .pricing-pack-wrapper  .feature-icon-cell {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

      .pricing-pack-wrapper  .feature-check {
            color: var(--neon-green);
            font-size: 18px;
        }
.pricing-pack-wrapper .feature-value {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(15, 188, 250, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(15, 188, 250, 0.3);
    transition: all 0.3s 
ease;
    color: #000;
}
section.pricing-wrapper {
    padding: 60px 0;

}
       .pricing-pack-wrapper .pricing-table tbody tr:hover .feature-value {
            background: rgba(15, 188, 250, 0.2);
            border-color: rgba(15, 188, 250, 0.5);
            transform: scale(1.05);
        }

       .pricing-pack-wrapper .na-value {
            color: #999;
            font-style: italic;
        }

       .pricing-pack-wrapper .cta-cell {
            padding: 30px 20px !important;
        }

      .pricing-pack-wrapper  .cta-button {
            padding: 15px 30px;
            background: var(--gradient);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 25px rgba(15, 188, 250, 0.3);
            white-space: nowrap;
        }

      .pricing-pack-wrapper  .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(15, 188, 250, 0.5);
        }

      .pricing-pack-wrapper  .cta-button i {
            transition: transform 0.3s ease;
        }

      .pricing-pack-wrapper  .cta-button:hover i {
            transform: translateX(5px);
        }

      .pricing-pack-wrapper  .featured-column {
            background: rgba(57, 255, 20, 0.05) !important;
            border-left: 2px solid rgba(57, 255, 20, 0.3);
            border-right: 2px solid rgba(57, 255, 20, 0.3);
        }

        @media (max-width: 992px) {
         .pricing-pack-wrapper   .pricing-table-wrapper {
                padding: 20px;
            }

          .pricing-pack-wrapper  .section-title {
                font-size: 36px;
            }

          .pricing-pack-wrapper  .pricing-table thead th {
                font-size: 18px;
                padding: 20px 15px;
            }

          .pricing-pack-wrapper  .pricing-table tbody td {
                padding: 15px 10px;
                font-size: 14px;
            }

          .pricing-pack-wrapper  .cta-button {
                padding: 12px 20px;
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
          
         .pricing-pack-wrapper   .pricing-table-wrapper {
                padding: 15px;
                border-radius: 20px;
            }

         .pricing-pack-wrapper   .section-title {
                font-size: 28px;
            }

          .pricing-pack-wrapper  .section-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }
        }

       .pricing-pack-wrapper .scroll-indicator {
            display: none;
            text-align: center;
            color: #666;
            font-size: 14px;
            margin-top: 20px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(10px); }
        }

        @media (max-width: 992px) {
        .pricing-pack-wrapper    .scroll-indicator {
                display: block;
            }
        }

       .pricing-pack-wrapper .comparison-highlight {
            position: relative;
        }

       .pricing-pack-wrapper .comparison-highlight::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 4px;
            height: 0;
            background: var(--neon-green);
            transform: translateY(-50%);
            transition: height 0.3s ease;
        }

       .pricing-pack-wrapper .pricing-table tbody tr:hover .comparison-highlight::before {
            height: 100%;
        }


        /* About Package */

     .about-seo-package-section {
  
    padding: 60px 0;

}
        .about-seo-package-section .image-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-seo-package-section .image-container img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .about-seo-package-section .image-container:hover img {
            transform: scale(1.03);
        }

        .about-seo-package-section .content-container {
            padding: 30px;
        }

        .about-seo-package-section .section-subtitle {
            color: var(--primary-blue);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 10px;
            display: block;
        }

        .about-seo-package-section .section-title {
            color: var(--dark-blue);
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .about-seo-package-section .section-description {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        

      

        .about-seo-package-section .btn-primary-custom {
            background-color: var(--dark-blue);
            border: none;
            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
        }

        .about-seo-package-section .btn-primary-custom:hover {
            background-color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(0, 82, 204, 0.4);
        }

        .about-seo-package-section .guarantee {
            display: flex;
            align-items: center;
            margin-top: 20px;
            color: #666;
            font-size: 0.95rem;
        }

        .about-seo-package-section .guarantee i {
            color: var(--electric-blue);
            margin-right: 10px;
            font-size: 1.2rem;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .about-seo-package-section .content-container {
                padding: 20px 0;
            }
            
            .about-seo-package-section .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 767px) {
            .about-seo-package-section {
                padding: 50px 0;
            }
            
            .about-seo-package-section .section-title {
                font-size: 1.8rem;
            }
        }
/* 
        CTA */

         .cta-section-wrap {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .cta-section-wrap::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230052cc" fill-opacity="0.1" d="M0,128L48,144C96,160,192,192,288,186.7C384,181,480,139,576,138.7C672,139,768,181,864,181.3C960,181,1056,139,1152,138.7C1248,139,1344,181,1392,202.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: bottom;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-section-wrap .section-title {
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .cta-section-wrap .section-description {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 40px;
            opacity: 0.9;
        }

     .cta-section-wrap .process-steps {
    display: flex
;
    justify-content: space-between;
    margin-bottom: 0;
    position: relative;
}

        .cta-section-wrap .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 4px;
            background: var(--electric-blue);
            z-index: 1;
        }

        .cta-section-wrap .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            padding: 0 15px;
        }

        .cta-section-wrap .step-icon {
            width: 80px;
            height: 80px;
            background: var(--electric-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .cta-section-wrap .step:hover .step-icon {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .cta-section-wrap .step-title {
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

       .cta-section-wrap .step-description {
    font-size: 0.95rem;
    opacity: 1;
}
        .cta-section-wrap .btn-cta {
            background-color: var(--white);
            color: var(--dark-blue);
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cta-section-wrap .btn-cta:hover {
            background-color: var(--electric-blue);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .cta-section-wrap .btn-cta:active {
            transform: translateY(0);
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .cta-section-wrap .process-steps::before {
                left: 15%;
                right: 15%;
            }
        }

        @media (max-width: 767px) {
            .cta-section-wrap {
                padding: 60px 0;
            }
            
            .cta-section-wrap .section-title {
                font-size: 2rem;
            }
            
            .cta-section-wrap .process-steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .cta-section-wrap .process-steps::before {
                display: none;
            }
            
            .cta-section-wrap .step {
                display: flex;
                align-items: center;
                text-align: left;
                gap: 20px;
            }
            
            .cta-section-wrap .step-icon {
                margin: 0;
                flex-shrink: 0;
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 575px) {
            .cta-section-wrap .step {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
        }

        /* Result */

          .seo-results-section {
           
            padding: 60px 0;
            background-color: #f8f9fa;
        }

      

        .seo-results-section .section-description {
            color: #666;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
.seo-results-section .sec-wrap {
    padding-bottom: 30px;
}
        .seo-results-section .stat-card {
            background: var(--white);
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            border-top: 4px solid var(--electric-blue);
            position: relative;
            overflow: hidden;
        }

        .seo-results-section .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--electric-blue));
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .seo-results-section .stat-card:hover::before {
            transform: scaleX(1);
        }

        .seo-results-section .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .seo-results-section .stat-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(15, 188, 250, 0.1);
            color: var(--primary-blue);
            transition: all 0.3s ease;
        }

        .seo-results-section .stat-card:hover .stat-icon {
            background: var(--primary-blue);
            color: var(--white);
            transform: scale(1.1);
        }

        .seo-results-section .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--dark-blue);
            margin-bottom: 10px;
            line-height: 1;
        }

        .seo-results-section .stat-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 15px;
        }

        .seo-results-section .stat-description {
            color: #666;
            font-size: 1rem;
            line-height: 1.5;
        }

        .seo-results-section .highlight {
            color: var(--primary-blue);
            font-weight: 700;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .seo-results-section {
                padding: 60px 0;
            }
            
            .seo-results-section .section-title {
                font-size: 2rem;
            }
            
            .seo-results-section .stat-card {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 767px) {
            .seo-results-section .section-title {
                font-size: 1.8rem;
            }
            
            .seo-results-section .stat-number {
                font-size: 2.2rem;
            }
        }.pack-testimonial {
    padding: 60px 0;
}

/* Why invest */
section.invest-packges.modern-seo-section {
    background: #fbfbfb;
}
.modern-seo-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
        

      .modern-seo-section .section-description {
    color: var(--black);
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 1;
    text-align: center;
}
section.invest-packges.modern-seo-section .title-wrap {
    padding-bottom: 40px;
}

        .modern-seo-section .tab-interface {
            position: relative;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            border: 1px solid rgba(0, 82, 204, 0.1);
        }

        .modern-seo-section .tab-navigation {
            background: var(--white);
            padding: 40px 0;
            height: 100%;
            position: relative;
        }

        .modern-seo-section .tab-item {
            display: flex;
            align-items: center;
            padding: 20px 30px;
            border: none;
            background: transparent;
            width: 100%;
            text-align: left;
            transition: all 0.3s ease;
            color: var(--black);
            font-weight: 500;
            position: relative;
            border-left: 4px solid transparent;
        }

        .modern-seo-section .tab-item:hover {
            color: var(--dark-blue);
            background: rgba(15, 188, 250, 0.05);
        }

        .modern-seo-section .tab-item.active {
            background: rgba(15, 188, 250, 0.08);
            border-left: 4px solid var(--primary-blue);
            color: var(--dark-blue);
            font-weight: 600;
        }

        .modern-seo-section .tab-icon-wrapper {
            width: 50px;
            height: 50px;
            background: var(--white);
            border: 2px solid var(--primary-blue);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            color: var(--primary-blue);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .modern-seo-section .tab-item.active .tab-icon-wrapper {
            background: var(--primary-blue);
            color: var(--white);
            transform: scale(1.05);
        }

        .modern-seo-section .tab-icon {
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .modern-seo-section .tab-text {
            font-size: 1.05rem;
            line-height: 1.4;
        }

     .modern-seo-section .tab-content-container {
    padding: 60px 50px;
    height: 100%;
    min-height: auto;
    display: flex
;
    align-items: center;
    background: var(--white);
    position: relative;
}

        .modern-seo-section .tab-content {
            display: none;
            animation: fadeInUp 0.5s ease;
        }

        .modern-seo-section .tab-content.active {
            display: block;
        }

        .modern-seo-section .tab-title {
            color: var(--dark-blue);
            font-weight: 800;
            font-size: 2.2rem;
            margin-bottom: 25px;
            line-height: 1.2;
            position: relative;
        }

        .modern-seo-section .tab-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-blue);
            border-radius: 2px;
        }

        .modern-seo-section .tab-description {
            color: var(--black);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 0;
            opacity: 0.9;
        }

        .modern-seo-section .tab-highlight {
            color: var(--primary-blue);
            font-weight: 700;
        }

        .modern-seo-section .content-decoration {
            position: absolute;
            bottom: 30px;
            right: 30px;
            opacity: 0.1;
            font-size: 6rem;
            color: var(--dark-blue);
        }

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

        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .modern-seo-section .tab-content-container {
                padding: 50px 40px;
                min-height: 540px;
            }
        }

        @media (max-width: 991px) {
            .modern-seo-section {
                padding: 80px 0;
            }
            
            .modern-seo-section .section-title {
                font-size: 2.5rem;
            }
            
            .modern-seo-section .tab-navigation {
                padding: 30px 0;
            }
            
            .modern-seo-section .tab-content-container {
                padding: 40px 30px;
                min-height: auto;
            }
            
            .modern-seo-section .tab-item {
                padding: 18px 25px;
            }
        }

        @media (max-width: 767px) {
            .modern-seo-section .section-title {
                font-size: 2.2rem;
            }
            
            .modern-seo-section .section-description {
                font-size: 1.1rem;
            }
            
            .modern-seo-section .tab-content-container {
                padding: 35px 25px;
            }
            
            .modern-seo-section .tab-title {
                font-size: 1.8rem;
            }
            
            .modern-seo-section .tab-item {
                padding: 16px 20px;
            }
            
            .modern-seo-section .content-decoration {
                display: none;
            }
        }

        @media (max-width: 575px) {
            .modern-seo-section {
                padding: 60px 0;
            }
            
            .modern-seo-section .section-title {
                font-size: 1.9rem;
            }
            
            .modern-seo-section .tab-icon-wrapper {
                width: 44px;
                height: 44px;
                margin-right: 15px;
            }
        }


/*========Pagination============*/

span.page-link.current {
    border-radius: 0;
}
 
.page-item:first-child .page-link {
    border-radius: 0;
 
}
 
.page-item:last-child .page-link {
    border-radius: 0;
       padding: 10px 20px;
    width: auto !important;
}
 
.page-link {
    width: 50px;
    height: 40px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
ul.pagination.justify-content-center {
    gap: 10px;
}
 
.page-link.current {
    background: #0fbcfa;
    color: #fff;
}
.page-link:hover{
    background: #0fbcfa;
    color: #fff
}
 ul.pagination.justify-content-center {
    gap: 10px;
    margin-left: 0;
    padding-left: 0;
    justify-content: start !important;
}


/* ============Popup Design============ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(10 14 39 / 0%);
    backdrop-filter: blur(2px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.4s 
ease;
}

.popup-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(40px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.popup-overlay .popup-container {
    background: linear-gradient(145deg, #1e1b4b 0%, #1f2937 100%);
    border-radius: 32px;
       max-width: 780px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(99, 102, 241, 0.3);
    animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-overlay .glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 50%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.popup-overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.popup-overlay .close-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    transform: scale(1.05);
}

.popup-overlay .close-btn svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}

.popup-overlay .popup-content {
    position: relative;
    z-index: 1;
    padding: 50px 40px 40px;
}

.popup-overlay .icon-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    position: relative;
}

.popup-overlay .icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 28px;
    animation: iconFloat 3s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.popup-overlay .icon-bg::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: linear-gradient(145deg, #1e1b4b, #1f2937);
    border-radius: 25px;
}

.popup-overlay .icon-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
}

.popup-overlay .popup-title {
    text-align: center;
    margin-bottom: 0;
}
.popup-overlay .popup-title h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.popup-overlay .gradient-text {
    background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.popup-overlay .popup-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
}

.popup-overlay .offer-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(249, 115, 22, 0.2));
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: #fbbf24;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
       margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.popup-overlay .features-grid {
    display: flex
;
    gap: 14px;
    margin-bottom:10px;
    flex-wrap: wrap;
}
.popup-overlay .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
      padding: 8px 10px;
    display: flex
;
    align-items: center;
    gap: 15px;
    transition: all 0.3s 
ease;
    backdrop-filter: blur(10px);
    width: 48%;
}

.popup-overlay .feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateX(5px);
}

.popup-overlay .feature-icon

 {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    display: flex
;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    background: var(--blue-gradient);
}

.popup-overlay .feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
}

.popup-overlay .feature-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.popup-overlay .cta-section {
    margin-top: 35px;
}

.popup-overlay .cta-button {
    width: 100%;
    padding: 13px;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s 
ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    background: var(--blue-gradient);
}

.popup-overlay .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.popup-overlay .cta-button:hover::before {
    left: 100%;
}

.popup-overlay .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
}

.popup-overlay .cta-button:active {
    transform: translateY(-1px);
}

.popup-overlay .timer-badge {
    text-align: center;
    margin-top: 20px;
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
}

.popup-overlay .timer-badge span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.popup-overlay .timer-badge strong {
    color: #fbbf24;
    font-size: 16px;
    font-weight: 700;
    margin-left: 5px;
}

@media (max-width: 640px) {
    .popup-overlay .popup-container {
        margin: 15px;
        border-radius: 24px;
    }

    .popup-overlay .popup-content {
        padding: 40px 25px 30px;
    }

    .popup-overlay .popup-title h2 {
        font-size: 26px;
    }

    .popup-overlay .icon-container {
        width: 80px;
        height: 80px;
    }

    .popup-overlay .icon-svg {
        width: 40px;
        height: 40px;
    }
}

/* End */


/* Contact Bottom bar */
 /* Mobile App-Style Bottom Bar */
        .mobile-contact-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, rgba(10, 10, 10, 0.95), rgba(15, 15, 15, 0.98));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
            z-index: 1000;
            box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
            display: none;
        }

        /* Show only on mobile */
        @media (max-width: 768px) {
            .mobile-contact-bar {
                display: block;
            }
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            max-width: 500px;
            margin: 0 auto;
        }

    .contact-item {
    display: flex
;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
       padding: 0px 1px;
    border-radius: 16px;
    transition: all 0.3s 
cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

        .contact-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 16px;
        }

        .contact-item:active {
            transform: scale(0.92);
        }

        .contact-item:active::before {
            opacity: 0.15;
        }

        /* Icon Container with Gradient Background */
      .icon-wrapper {
    width: 37px;
    height: 37px;
    border-radius: 14px;
    display: flex
;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
    transition: all 0.3s 
ease;
    margin-right: 7px;
}

        .contact-item:active .icon-wrapper {
            transform: scale(0.9);
        }

        /* Phone - Blue */
        .contact-item.phone .icon-wrapper {
            background: linear-gradient(135deg, #0fbcfa, #00d4ff);
            box-shadow: 0 4px 15px rgba(15, 188, 250, 0.4);
        }

        /* Email - Purple */
        .contact-item.email .icon-wrapper {
            background: linear-gradient(135deg, #667eea, #764ba2);
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        /* WhatsApp - Green */
        .contact-item.whatsapp .icon-wrapper {
            background: linear-gradient(135deg, #25D366, #128C7E);
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
        }

        .icon-wrapper svg {
              width: 19px;
    height: 19px;
            stroke: var(--white);
            fill: none;
            position: relative;
            z-index: 1;
        }

        .whatsapp .icon-wrapper svg {
            fill: var(--white);
        }

        /* Label */
        .contact-label {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.85);
            position: relative;
            z-index: 1;
            letter-spacing: 0.3px;
        }

        /* Pulse Animation for Icons */
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .icon-wrapper {
            animation: pulse 3s ease-in-out infinite;
        }

        .phone .icon-wrapper {
            animation-delay: 0s;
        }

        .email .icon-wrapper {
            animation-delay: 0.3s;
        }

        .whatsapp .icon-wrapper {
            animation-delay: 0.6s;
        }

        /* Badge notification (optional) */
        .notification-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 8px;
            height: 8px;
            background: #ff3b30;
            border-radius: 50%;
            border: 2px solid var(--dark-bg);
            z-index: 2;
            animation: blink 2s ease-in-out infinite;
        }

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

        /* Desktop Message */
        .desktop-message {
            display: none;
            text-align: center;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            margin: 40px auto;
            max-width: 600px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (min-width: 769px) {
            .desktop-message {
                display: block;
            }
        }

        .desktop-message h2 {
            font-size: 24px;
            margin-bottom: 15px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .desktop-message p {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 25px;
        }

        .desktop-contact-links {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .desktop-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .desktop-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .desktop-link svg {
            width: 20px;
            height: 20px;
        }

        /* Haptic feedback simulation */
        @media (hover: none) and (pointer: coarse) {
            .contact-item:active {
                transition: transform 0.1s;
            }
        }

        /* Safe area for notch devices */
        @supports (padding: max(0px)) {
            .mobile-contact-bar {
                padding-bottom: max(12px, env(safe-area-inset-bottom));
            }
        }
/* ENd */


button.cfp-submit-btn.btn.btn-neon{
    white-space: nowrap !important;
}


/* =========================== */
.geo-aeo-pricewrapper .pricing-wrapper {
    max-width: 100%;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    /* box-shadow: 0 10px 40px rgba(0, 82, 204, 0.08); */
    overflow: hidden;
    padding: 0;
    position: relative;
}.geo-aeo-pricewrapper {
    padding: 50px 0;
}
      

        .geo-aeo-pricewrapper .section-title {
            text-align: center;
            margin-bottom: 16px;
            color: #1a1a1a;
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .geo-aeo-pricewrapper .section-subtitle {
            text-align: center;
            margin-bottom: 50px;
            color: #6c757d;
            font-size: 1.15rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
        }

        /* Tab Button Styles */
        .geo-aeo-pricewrapper .tab-buttons {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
            gap: 12px;
            flex-wrap: wrap;
        }

        .geo-aeo-pricewrapper .tab-button {
            background: #f8f9fa;
            border: 2px solid transparent;
            padding: 14px 28px;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            color: #6c757d;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .geo-aeo-pricewrapper .tab-button:hover {
            background: #e9ecef;
            color: var(--dark-blue);
            transform: translateY(-2px);
        }

        .geo-aeo-pricewrapper .tab-button.active {
            background: var(--gradient);
            color: var(--white);
            border-color: var(--primary-blue);
            box-shadow: 0 4px 15px rgba(15, 188, 250, 0.25);
        }

        .geo-aeo-pricewrapper .tab-button i {
            margin-right: 8px;
        }

        /* Tab Content Styles */
        .geo-aeo-pricewrapper .tab-content {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .geo-aeo-pricewrapper .tab-content.active {
            display: block;
        }

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

        /* Pricing Table Styles */
        .geo-aeo-pricewrapper .pricing-table-wrapper {
            overflow-x: auto;
            border-radius: 12px;
            border: 1px solid #e9ecef;
            margin-bottom: 30px;
            background: var(--white);
        }

        .geo-aeo-pricewrapper .pricing-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 900px;
        }

        .geo-aeo-pricewrapper .pricing-table th, 
        .geo-aeo-pricewrapper .pricing-table td {
            padding: 22px 18px;
            text-align: center;
            border-bottom: 1px solid #f1f3f5;
        }

        .geo-aeo-pricewrapper .pricing-table thead th {
            background: #f8f9fa;
            font-weight: 700;
            color: #1a1a1a;
            font-size: 1.1rem;
            position: relative;
        }

       .geo-aeo-pricewrapper .plan-header {
    background: #fafbfc !important;
    position: relative;
    padding-top: 43px !important;
    border-left: 1px solid #f1f3f5;
}

        .geo-aeo-pricewrapper .plan-header.featured {
            background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%) !important;
            color: var(--white);
            box-shadow: 0 4px 20px rgba(0, 102, 255, 0.15);
        }

     .geo-aeo-pricewrapper .popular-badge {
    position: absolute;
    top: -20px;
    left: auto;
    right: 0;
    background: var(--orange-gradient);
    color: var(--white);
    padding: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 20px;
    width: 144px !important;
}
       .geo-aeo-pricewrapper .pricing-table thead th.featured {
    background: linear-gradient(135deg, var(--neon-green), #2ed604) !important;
    color: var(--black);
}

.geo-aeo-pricewrapper .pricing-table thead th {
    background: var(--gradient) !important;
    color: var(--white);
    padding: 25px 20px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    border: none;
    position: sticky;
    top: 0;
    z-index: 10;
}
.geo-aeo-pricewrapper .pricing-table thead th:first-child {
    border-radius: 20px 0 0 0;
    text-align: left;
    background: rgba(15, 188, 250, 0.1) !important;
    backdrop-filter: blur(10px);
    color: #000 !important;
}
        .geo-aeo-pricewrapper .comparison-highlight {
            text-align: left;
            font-weight: 600;
            color: #1a1a1a;
            background: #f8f9fa;
            width: 28%;
            border-right: 1px solid #e9ecef;
        }

        .geo-aeo-pricewrapper .featured-column {
            background: linear-gradient(180deg, rgba(0, 212, 255, 0.04) 0%, rgba(0, 212, 255, 0.02) 100%);
            border-left: 2px solid var(--primary-blue);
            border-right: 2px solid var(--primary-blue);
        }

        .geo-aeo-pricewrapper .feature-value {
            display: block;
            font-size: 0.95rem;
            color: #495057;
            line-height: 1.7;
        }

        .geo-aeo-pricewrapper .feature-check {
            color: #28a745;
            margin-right: 8px;
        }

        .geo-aeo-pricewrapper .cta-cell {
            padding: 28px 18px !important;
            background: #fafbfc;
        }

        .geo-aeo-pricewrapper .featured-column.cta-cell {
            background: linear-gradient(180deg, rgba(0, 212, 255, 0.06) 0%, rgba(0, 212, 255, 0.03) 100%);
        }

        .geo-aeo-pricewrapper .cta-button {
            background: var(--gradient);
            color: var(--white);
            border: none;
            padding: 13px 30px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(15, 188, 250, 0.2);
            text-transform: capitalize;
        }

        .geo-aeo-pricewrapper .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(15, 188, 250, 0.35);
            background: var(--dark-gradient);
        }

        .geo-aeo-pricewrapper .cta-button i {
            transition: transform 0.3s ease;
        }

        .geo-aeo-pricewrapper .cta-button:hover i {
            transform: translateX(4px);
        }

        .geo-aeo-pricewrapper .scroll-indicator {
            text-align: center;
            color: #6c757d;
            font-size: 0.9rem;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        /* Add-ons Section */
        .geo-aeo-pricewrapper .addons-section {
            margin-top: 40px;
            padding: 32px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 12px;
            border-left: 4px solid var(--primary-blue);
            border: 1px solid #e9ecef;
        }

        .geo-aeo-pricewrapper .addons-title {
            font-size: 1.4rem;
            color: #1a1a1a;
            margin-bottom: 24px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .geo-aeo-pricewrapper .addons-title::before {
            content: '';
            width: 4px;
            height: 24px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .geo-aeo-pricewrapper .addon-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
            border-bottom: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }

        .geo-aeo-pricewrapper .addon-item:hover {
            padding-left: 12px;
            background: linear-gradient(90deg, rgba(15, 188, 250, 0.03) 0%, transparent 100%);
        }

        .geo-aeo-pricewrapper .addon-item:last-child {
            border-bottom: none;
        }

        .geo-aeo-pricewrapper .addon-name {
            font-weight: 500;
            color: #495057;
            flex: 1;
        }

        .geo-aeo-pricewrapper .addon-price {
            color: var(--dark-blue);
            font-weight: 700;
            font-size: 1.15rem;
            white-space: nowrap;
            margin-left: 20px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .geo-aeo-pricewrapper body {
                padding: 20px 10px;
            }

            .geo-aeo-pricewrapper .pricing-wrapper {
                padding: 40px 25px;
            }

            .geo-aeo-pricewrapper .section-title {
                font-size: 2rem;
            }

            .geo-aeo-pricewrapper .section-subtitle {
                font-size: 1rem;
            }

            .geo-aeo-pricewrapper .tab-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .geo-aeo-pricewrapper .tab-button {
                width: 100%;
            }

            .geo-aeo-pricewrapper .plan-header {
                padding-top: 60px !important;
            }

            .geo-aeo-pricewrapper .pricing-table th, 
            .geo-aeo-pricewrapper .pricing-table td {
                padding: 16px 10px;
                font-size: 0.9rem;
            }

            .geo-aeo-pricewrapper .cta-button {
                padding: 11px 22px;
                font-size: 0.9rem;
            }

            .geo-aeo-pricewrapper .addon-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .geo-aeo-pricewrapper .addon-price {
                margin-left: 0;
            }
        }

        @media (max-width: 480px) {
            .geo-aeo-pricewrapper .pricing-wrapper {
                padding: 30px 20px;
            }

            .geo-aeo-pricewrapper .section-title {
                font-size: 1.75rem;
            }

            .geo-aeo-pricewrapper .pricing-table th, 
            .geo-aeo-pricewrapper .pricing-table td {
                padding: 14px 8px;
                font-size: 0.85rem;
            }

            .geo-aeo-pricewrapper .feature-value {
                font-size: 0.85rem;
            }

            .geo-aeo-pricewrapper .addons-section {
                padding: 24px;
            }
        }
/* ENd */

/* CTA */
  /* CTA Section Styles */
        .geo-aeo-pricewrapper .cta-section {
            max-width: 1400px;
            margin: 0 auto 60px;
            background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
            border-radius: 20px;
            padding: 60px 50px;
            position: relative;
            overflow: hidden;
        }

        .geo-aeo-pricewrapper .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            filter: blur(80px);
        }

        .geo-aeo-pricewrapper .cta-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: rgba(0, 82, 204, 0.3);
            border-radius: 50%;
            filter: blur(60px);
        }

        .geo-aeo-pricewrapper .cta-container {
            position: relative;
            z-index: 1;
        }

      .geo-aeo-pricewrapper .cta-content {
    text-align: center;
    margin-bottom: 0;
}

        .geo-aeo-pricewrapper .cta-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .geo-aeo-pricewrapper .cta-icon i {
            font-size: 2.5rem;
            color: var(--white);
        }

        .geo-aeo-pricewrapper .cta-title {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .geo-aeo-pricewrapper .cta-description {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.95);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .geo-aeo-pricewrapper .cta-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .geo-aeo-pricewrapper .stat-item {
            text-align: center;
        }

        .geo-aeo-pricewrapper .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 8px;
        }

        .geo-aeo-pricewrapper .stat-label {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

   .geo-aeo-pricewrapper .cta-primary-button {
    background: var(--white);
    color: var(--dark-blue);
    border: none;
    padding: 18px 48px;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s 
ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-transform: capitalize;
    text-decoration: none;
}

        .geo-aeo-pricewrapper .cta-primary-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            background: #f8f9fa;
        }

        .geo-aeo-pricewrapper .cta-primary-button i {
            transition: transform 0.3s ease;
        }

        .geo-aeo-pricewrapper .cta-primary-button:hover i {
            transform: translateX(5px);
        }

        .geo-aeo-pricewrapper .cta-note {
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
        }

      

/* End */


/* Case study details  */
 

       section.case-study-title-main {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

section.case-study-title-main .hero-content {
    flex-direction: column;
}

section.case-study-title-main .hero-content h1 {
    color: #0fbcfa;
    font-size: 60px;
    font-weight: bold;
}

section.case-study-title-main .hero-content p {
    color: #fff;
    font-size: 20px;
}section.case-study-details-page {
    padding: 60px 0;
}

section.case-study-title-main nav ol.breadcrumb li.breadcrumb-item {
    color: #fff;
}

section.case-study-title-main nav ol.breadcrumb li.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

section.case-study-title-main .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

    .case-study-details-page .study-left-side {
    position: sticky;
    top: 106px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
}

        .case-study-details-page .client-details h4 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .case-study-details-page .client-details h4 b {
            font-weight: 700;
        }

        .case-study-details-page .client-details h4::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 18px;
            background: var(--blue-gradient);
            border-radius: 2px;
        }

        .case-study-details-page .client-details p {
            margin-bottom: 20px;
            padding-left: 12px;
            color: var(--dark-gray);
            font-size: 1rem;
        }

        .case-study-details-page .right-side {
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 30px;
            margin-bottom: 30px;
        }

        .case-study-details-page .right-side h3 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .case-study-details-page .right-side h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--blue-gradient);
            border-radius: 2px;
        }

        .case-study-details-page .right-side p {
            color: #555;
            font-size: 1.05rem;
            margin-bottom: 25px;
        }

        .case-study-details-page .result-view-img {
            margin-top: 25px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .case-study-details-page .result-view-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .case-study-details-page .result-view-img:hover img {
            transform: scale(1.03);
        }

        .case-study-details-page .right-side-results {
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 30px;
            margin-bottom: 30px;
        }

        .case-study-details-page .seo-results-tab h5 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }

        .case-study-details-page .case-study-rank {
            overflow-x: auto;
        }

        .case-study-details-page .seo-rank-table {
            width: 100%;
            border-collapse: collapse;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            overflow: hidden;
        }

        .case-study-details-page .seo-rank-table thead {
            background: var(--blue-gradient);
            color: white;
        }

        .case-study-details-page .seo-rank-table th {
            padding: 15px;
            text-align: center;
            font-weight: 600;
            font-size: 1rem;
        }

        .case-study-details-page .seo-rank-table td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }

        .case-study-details-page .seo-rank-table tbody tr:nth-child(even) {
            background-color: rgba(0, 212, 255, 0.05);
        }

        .case-study-details-page .seo-rank-table tbody tr:hover {
            background-color: rgba(0, 212, 255, 0.1);
            transition: background-color 0.3s ease;
        }

        .case-study-details-page .seo-rank-table tbody tr:last-child td {
            border-bottom: none;
        }

        .case-study-details-page .organic-box {
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 30px;
            margin-bottom: 30px;
        }

        .case-study-details-page .result-view {
            margin-top: 25px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .case-study-details-page .result-view img {
            width: 100%;
            height: auto;
            display: block;
        }

        .case-study-details-page .text-center p {
            font-weight: 600;
            color: var(--dark-blue);
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        @media (max-width: 991px) {
            .case-study-details-page .study-left-side {
                position: static;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .case-study-details-page .container {
                padding: 0 15px;
            }
            
            .case-study-details-page .right-side,
            .case-study-details-page .right-side-results,
            .case-study-details-page .study-left-side {
                padding: 20px;
            }
            
            .case-study-details-page .seo-rank-table {
                font-size: 0.9rem;
            }
            
            .case-study-details-page .seo-rank-table th,
            .case-study-details-page .seo-rank-table td {
                padding: 10px 8px;
            }
        }
/* End */

.privacy-policy-wrapper {
    padding: 60px 0;
}
 
.privacy-policy-wrapper h3 {
    font-weight: bold;
    padding-bottom: 0;
}
 
.privacy-policy-wrapper ul, .privacy-policy-wrapper ol {
    padding: 0;
}
 
.privacy-policy-wrapper ul li, .privacy-policy-wrapper ol li {
    margin-left: 29px;
    padding: 6px 0;
}
 
.privacy-policy-wrapper .container {
    border: 1px solid #0fbcfa;
    padding: 30px;
    border-radius: 20px;
}
 
.privacy-policy-wrapper h3 {
    border-left: 4px solid #0fbcfa;
    margin-bottom: 20px;
    margin-top: 20px;
}
 
.privacy-policy-wrapper h2 {
    border-left: 4px solid #0fbcfa;
    margin-bottom: 20px;
    font-weight: bold;
    padding-bottom: 0;
    margin-top: 20px;
}
.link-web {
	    text-decoration: none;
    color: rgb(129 220 255) !important;
}.pricing-pack-wrapper .cta-button {
    text-decoration: none !important;
}