/**
 * Component styles using Bootstrap classes
 */

/* Global Font Family */


body {
  /* font-family: 'GeneralSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; */
  background-color: #030315;
}

/* Fix for FAQ Accordion Lag */
.faqfield-question,
.faqfield-answer {
  transition: none !important;
}

.faqfield-answer {
  overflow: hidden;
}

main[role="main"] {
  background-image: url(../images/home-Background.webp);
}

/* Hero Section */
.hero-section {
  /* background-image: url('../images/dotted-grid-bg.png'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  padding-bottom: 0;
  padding-top: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-image:
    linear-gradient(45deg, rgba(0, 102, 255, 0.1) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(0, 102, 255, 0.1) 25%, transparent 25%); */
  background-size: 60px 60px;
  opacity: 0.3;
  animation: moveBackground 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes moveBackground {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 60px 60px;
  }
}

.hero-content {
  position: relative;
  z-index: 100;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  max-width: 90%;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .hero-content {
    max-width: 70%;
  }
}

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

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #DCDCE3;
  margin-bottom: 2rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

/* Rotating Services Banners Section - AFTER Hero */
.services-banners-section {
  position: relative;
  width: 100%;
  height: 170px;
  overflow: visible;
  background: transparent;
  margin: 0;
  padding: 0;
  z-index: 9999;
}

.services-banners-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 9999;
}

/* Common Banner Styles */
.services-ticker-wrapper {
  position: absolute;
  left: 50%;
  width: 120%;
  height: 85px;
  overflow: hidden;
  will-change: transform;
}

/* White Banner - Rotates Right */
.services-ticker-wrapper.white-banner {
  top: 0;
  background: #FFFFFF;
  transform: translateX(-50%) rotate(6.77deg);
  transform-origin: center;
  z-index: 10000;
}

/* Dark Banner - Rotates Left */
.services-ticker-wrapper.dark-banner {
  bottom: 0;
  background: #1e1e1e;
  transform: translateX(-50%) rotate(-11.77deg);
  transform-origin: center;
  z-index: 10001;
}

.services-ticker {
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 1.5rem;
}

.services-ticker-track {
  display: flex;
  animation: scroll-right 52s linear infinite;
  gap: 2rem;
}

.dark-banner .services-ticker-track {
  display: flex;
  animation: scroll-left 40s linear infinite;
  gap: 2rem;
}

/* Service Icons */
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 12px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Inter', 'GeneralSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  flex-shrink: 0;
}

/* Facebook Icon - Blue */
.service-icon.facebook {
  background: #1877F2;
  color: #FFFFFF;
}

/* Instagram Icon - Pink/Purple gradient */
.service-icon.instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
  color: #FFFFFF;
  font-size: 16px;
}

/* Google Icon - Multi-color */
.service-icon.google {
  background: #FFFFFF;
  color: #4285F4;
  font-weight: 900;
  border: 2px solid #4285F4;
}

/* White banner text (black) */
.white-banner .service-item {
  font-family: 'Inter', 'GeneralSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  white-space: nowrap;
  line-height: 100%;
  display: inline-flex;
  align-items: flex-start;
}

/* Dark banner text (white) */
.dark-banner .service-item {
  font-family: 'Inter', 'GeneralSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #FFFFFF;
  white-space: nowrap;
  line-height: 100%;
  display: inline-flex;
  align-items: flex-start;
  /* gap: 1rem;
  display: flex; */
}

.services-ticker-track>.service-item {
  margin-right: 33px;
  gap: 1rem;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* Tablet and Desktop */
@media (min-width: 768px) {
  .services-banners-section {
    height: 172px;
    padding-top: 4rem;
  }

  .services-banners-container {
    height: 85px;
  }

  .services-ticker-wrapper.white-banner {
    transform: translateX(-50%) rotate(8.99deg);
  }

  .services-ticker-wrapper.dark-banner {
    transform: translateX(-50%) rotate(-8.99deg);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .services-banners-section {
    height: 90px;
  }

  .services-banners-container {
    height: 42px;
  }

  .services-ticker-wrapper.white-banner {
    transform: translateX(-50%) rotate(12.77deg);
  }

  .services-ticker-wrapper.dark-banner {
    transform: translateX(-50%) rotate(-9.23deg);
  }

  .services-ticker-wrapper {
    height: 43px;
  }

  .services-ticker {
    padding-top: 0.25rem;
  }

  .white-banner .service-item,
  .dark-banner .service-item {
    font-size: 24px;
  }

  .service-icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
    margin-right: 8px;
  }

  .service-icon.instagram {
    font-size: 12px;
  }
}

/* Expertise Section - Bootstrap 5 Compatible */
.expertise-section {
  background-image: url('../images/dotted-grid-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding: 80px 0;
}

.expertise-title {
  font-family: 'Inter', 'GeneralSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.2;
}

.expertise-description {
  font-family: 'Inter', 'GeneralSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #9CA3AF;
}

.expertise-card {
  background: #131313;
  border-radius: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border: none;
}

.expertise-card:hover {
  background: #1f1f1f;
}

.expertise-card .card-title {
  font-family: 'Inter', 'GeneralSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #FFFFFF;
}

/* Clickable service cards - link styling */
.expertise-section a {
  display: block;
  height: 100%;
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.expertise-section a:hover {
  transform: translateY(-5px);
  opacity: 0.95;
}

.expertise-section a:hover .expertise-card {
  background: #1f1f1f;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.25);
}

.expertise-section a:focus {
  outline: 2px solid #007bff;
  outline-offset: 3px;
}

/* Service icon styling - Support multiple field names */
.expertise-card .field--name-field-service-icon img,
.expertise-card .field--name-field-service-icon svg,
.expertise-card .field--name-field-icon img,
.expertise-card .field--name-field-icon svg,
.expertise-card .field--name-field-image img,
.expertise-card .field--name-field-image svg,
.expertise-card img {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Ensure image field wrapper doesn't add extra space */
.expertise-card .field--name-field-service-icon,
.expertise-card .field--name-field-icon,
.expertise-card .field--name-field-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

/* Service description (hidden by default) */
.expertise-card .service-description {
  font-size: 0.875rem;
  color: #9CA3AF;
  margin-top: 0.5rem;
}

/* Icon sizing */
.icon-size {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Fix for Drupal image field rendering */
.expertise-card .field__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-contain {
  object-fit: contain;
}

/* Bootstrap utility extensions for responsive font weights */
@media (min-width: 768px) {
  .fw-md-bold {
    font-weight: 700;
  }

  .fs-md-5 {
    font-size: 1.25rem;
  }

  .fs-md-2 {
    font-size: 3rem;
  }
}

/* Mobile font sizes */
@media (max-width: 767px) {
  .expertise-description {
    font-size: 0.875rem;
  }
}

/* Hero CTA Button */
.hero-cta-wrapper {
  margin-top: 2rem;
  text-align: center;
}

.hero-cta-btn {
  display: inline-block;
  background: #00D4FF;
  color: #000000;
  padding: 12px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.hero-cta-btn:hover {
  background: #00B8E6;
  color: #000000;
  text-decoration: none;
}

@media (min-width: 768px) {
  .hero-cta-wrapper {
    margin-top: 2.5rem;
  }

  .hero-cta-btn {
    padding: 14px 50px;
    font-size: 18px;
  }
}

.hero-cta-link {
  text-decoration: none;
  display: inline-block;
}

.hero-cta-button {
  background: #00D4FF;
  color: #000000 !important;
  font-family: 'Inter', 'GeneralSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 2rem;
  border-radius: 100px;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  cursor: pointer;
  min-height: 40px;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-width: 200px;
}

@media (min-width: 768px) {
  .hero-cta-button {
    font-size: 1rem;
    min-height: 45px;
    padding: 0.875rem 2.5rem;
    min-width: 280px;
  }
}

.hero-cta-button:hover {
  background: #00B8E6;
  opacity: 0.8;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 212, 255, 0.3);
}

/* Service Cards */
.service-card {
  background: var(--dark-alt);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
  border-color: rgba(0, 102, 255, 0.3);
}

.service-icon {
  height: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 1.25rem;
  margin-top: 7px;
}

.service-icon i,
.service-icon svg {
  font-size: 2rem;
  color: white;
}

/* Case Study Cards */
.case-study-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--dark-alt);
  transition: transform 0.3s ease;
}

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

.case-study-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-card:hover img {
  transform: scale(1.05);
}

.case-study-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10, 14, 39, 0.95) 0%, transparent 100%);
}

.case-study-category {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(0, 102, 255, 0.2);
  color: var(--primary);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Feature Blocks */
.feature-block {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(0, 102, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(0, 102, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-block:hover {
  background: rgba(0, 102, 255, 0.08);
  border-color: rgba(0, 102, 255, 0.3);
  transform: translateX(8px);
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 102, 255, 0.3);
}

.feature-icon i,
.feature-icon svg {
  font-size: 1.5rem;
  color: white;
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--dark);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 4rem;
  font-family: 'Inter', 'GeneralSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
}

/* Hover styles are defined later in the file with scale(1.08) */

.testimonial-text {
  position: relative;
  z-index: 1;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  object-fit: cover;
}

.testimonial-rating {
  color: #FFD700;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.cta-banner .btn {
  background: white;
  color: var(--primary);
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
}

.cta-banner .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Creative Designs Slider Section */
.designs-slider-section {
  /* background: #020113; */
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-top: 2rem;
}

.designs-slider-title {
  font-size: 30px;
  line-height: 40.8px;
  font-weight: 500;
  letter-spacing: -0.8px;
  color: white;
  margin-bottom: 2.5rem !important;
}

@media (min-width: 768px) {
  .designs-slider-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 992px) {
  .designs-slider-title {
    font-size: 96px;
    line-height: 98.8px;
  }
}

.w-90 {
  width: 90%;
}

.w-80 {
  width: 80%;
}

.designs-carousel-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#designsCarousel {
  width: 70%;
  max-width: 1440px;
}

/* Carousel Item Styling */
.carousel-image-wrapper {
  width: 100%;
  max-width: 92%;
}

.carousel-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}

/* Custom Carousel Controls */
.designs-carousel-prev,
.designs-carousel-next {
  width: 48px;
  height: 48px;
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.designs-carousel-prev {
  left: -8%;
}

.designs-carousel-next {
  right: -8%;
}

@media (min-width: 992px) {
  .designs-carousel-prev {
    left: -4%;
  }

  .designs-carousel-next {
    right: -4%;
  }
}

.designs-carousel-prev:hover,
.designs-carousel-next:hover {
  background: rgba(0, 0, 0, 0.9);
}

.carousel-control-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
}

/* Hide controls on mobile */
@media (max-width: 767px) {

  .designs-carousel-prev,
  .designs-carousel-next {
    display: none !important;
  }
}

/* Carousel Indicators Styling */
.carousel-indicators {
  margin-bottom: -2rem;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(48, 163, 255, 0.5);
  border: none;
  margin: 0 5px;
}

.carousel-indicators .active {
  background-color: #30A3FF;
}

/* Carousel animations removed - using Bootstrap defaults only */



/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    /* min-height: 70vh; */
  }

  .feature-block {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .designs-slider-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .carousel-image-wrapper {
    max-width: 100%;
  }
}

/* Case Studies & Statistics Section */
.case-studies-stats-section {
  /* background: #020113; */
  padding-top: 2rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .case-studies-stats-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* Case Study Carousel */
.case-study-carousel-container {
  max-width: 1152px;
  width: 100%;
}

.case-study-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.case-study-image-wrapper:hover {
  opacity: 0.9;
}

.case-study-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  border-radius: 1rem;
}

/* Case Study Indicators */
#caseStudiesCarousel .carousel-indicators {
  position: relative;
  margin-bottom: 0;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding-bottom: 4px;
}

.case-study-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  margin: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 1;
}

.case-study-indicator:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.case-study-indicator.active {
  background-color: #ffffff;
  transform: scale(1.2);
}

/* Statistics */
.stat-number {
  font-size: 32px;
  font-weight: 600;
  color: white;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.25rem;
    font-weight: 700;
  }
}

.stat-label {
  color: #9ca3af;
  font-size: 16px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 22px;
  }
}

/* Successful Campaigns Section */
.campaigns-section {
  /* background: #020113; */
  padding-top: 2rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .campaigns-section {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }
}

.campaigns-title {
  font-size: 30px;
  font-weight: 600;
  color: #30A3FF;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .campaigns-title {
    font-size: 3.75rem;
  }
}

/* Campaign Cards */
.campaign-card {
  background: transparent;
  min-height: 280px;
  transition: transform 0.3s ease;
  padding: 1rem;
}

.campaign-card:hover {
  transform: translateY(-5px);
}

.campaign-image-wrapper {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.campaign-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  display: block;
}

.campaign-content {
  padding: 0.5rem 0;
}

.campaign-name {
  font-size: 22px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.campaign-description {
  font-size: 16px;
  font-weight: 400;
  color: #C9C9C9;
  line-height: 1.5;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

/* Campaigns Indicators - All dots */
.campaigns-indicators {
  bottom: auto;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.campaigns-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  margin: 0;
  transition: all 0.3s ease;
  opacity: 1;
}

.campaigns-indicators button.active {
  /* background-color: #ffffff; */
  transform: scale(1.2);
}

.campaigns-indicators button:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Swiper Pagination Bullets */
.swiper-pagination {
  position: relative;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(48, 163, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.swiper-pagination-bullet:hover {
  background-color: rgba(48, 163, 255, 0.8);
}

.swiper-pagination-bullet-active {
  background-color: #30A3FF;
  transform: scale(1.2);
}


/* Responsive adjustments */
@media (max-width: 991px) {
  .carousel-item .col-lg-4 {
    display: none;
  }

  .carousel-item .col-lg-4:nth-child(1),
  .carousel-item .col-lg-4:nth-child(2) {
    display: block;
  }
}

@media (max-width: 767px) {
  .carousel-item .col-md-6 {
    display: none;
  }

  .carousel-item .col-md-6:nth-child(1) {
    display: block;
  }

  .campaign-card {
    text-align: center;
  }
}

/* How We Work Section */
.how-we-work-section {
  /* background: #020113; */
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .how-we-work-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.how-we-work-section .container-xxl {
  max-width: 85%;
}

.how-we-work-title {
  font-size: 32px;
  font-weight: 500;
  color: #30A3FF;
}

@media (min-width: 768px) {
  .how-we-work-title {
    font-size: 3.75rem;
    font-weight: 700;
  }
}

.how-we-work-description {
  color: #9ca3af;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .how-we-work-description {
    font-size: 1.125rem;
  }
}

.workflow-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Process Steps */
.process-step {
  margin: 0;
  margin-bottom: 28px;
  margin-top: 15px;
}

.process-icon-wrapper {
  background-color: #30A3FF;
  border-radius: 50%;
  padding: 0.5rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .process-icon-wrapper {
    border-radius: 14px;
    padding: 0.75rem;
    width: 106px;
    height: 106px;
  }
}

.process-step-title {
  color: #30A3FF;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.process-content {
  max-height: 107px;
  height: 107px;
  padding-left: 10px;
}

@media (min-width: 768px) {
  .process-step-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.process-step-description {
  color: #9ca3af;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .process-step-description {
    width: 100%;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #fff;
  }
}

/* Creative Showcase Section */
.creative-showcase-section {
  background-color: #FFFEF3;
  min-height: 400px;
  padding: 0.75rem;
}

@media (min-width: 576px) {
  .creative-showcase-section {
    padding: 1rem;
  }
}

@media (min-width: 768px) {
  .creative-showcase-section {
    padding: 2rem;
  }
}

@media (min-width: 992px) {
  .creative-showcase-section {
    padding: 3rem;
  }
}

/* Showcase Title */
.showcase-title {
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  color: #FFFFFF;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.59);
  font-weight: 700;
  font-size: 62px;
  top: 3px;
  color: rgb(77, 85, 171);
}

/* Corner Decorations */
.corner-decoration {
  position: absolute;
  z-index: 9999;
}

.corner-top-left {
  top: 0.75rem;
  left: 0.5rem;
  width: 50px;
  height: 50px;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 576px) {
  .corner-top-left {
    top: 1.5rem;
    left: 1rem;
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 768px) {
  .corner-top-left {
    top: 1.5rem;
    left: 1.5rem;
    width: 120px;
    height: 120px;
  }
}

.corner-top-left:hover {
  width: 80px;
  height: 80px;
  top: 2rem;
  transform: rotate(-45deg) scale(1.1);
}

@media (min-width: 576px) {
  .corner-top-left:hover {
    top: 2rem;
  }
}

.corner-top-right {
  top: 0.5rem;
  right: 0.5rem;
  width: 85px;
  transition: all 0.5s ease-in-out;
  position: absolute;
}

@media (min-width: 576px) {
  .corner-top-right {
    top: 1.5rem;
    right: 1rem;
    width: 110px;
  }
}

@media (min-width: 768px) {
  .corner-top-right {
    top: 1rem;
    right: 0.75rem;
    width: 170px;
    height: 140px;
  }
}

.corner-top-right:hover {
  transform: rotate(45deg);
}

.corner-top-right .corner-img-1,
.corner-top-right .corner-img-2 {
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}

.corner-top-right .corner-img-1 {
  opacity: 1;
}

.corner-top-right .corner-img-2 {
  opacity: 0;
}

.corner-top-right:hover .corner-img-1 {
  opacity: 0;
}

.corner-top-right:hover .corner-img-2 {
  opacity: 1;
}

.corner-bottom-right {
  bottom: 0.5rem;
  right: 0.5rem;
  width: 50px;
}

@media (min-width: 576px) {
  .corner-bottom-right {
    bottom: 1rem;
    right: 0.5rem;
    width: 60px;
  }
}

@media (min-width: 768px) {
  .corner-bottom-right {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 100px;
  }
}

.corner-bottom-right img {
  transition: transform 1s ease-in-out;
}

.corner-bottom-right:hover img {
  transform: rotate(360deg);
}

.corner-bottom-left {
  bottom: 0.5rem;
  left: 0.5rem;
  width: 50px;
}

@media (min-width: 576px) {
  .corner-bottom-left {
    bottom: 1rem;
    left: 0.5rem;
    width: 60px;
  }
}

@media (min-width: 768px) {
  .corner-bottom-left {
    bottom: 1.5rem;
    left: 1.5rem;
    width: 100px;
  }
}

.corner-bottom-left img {
  transition: transform 1s ease-in-out;
}

.corner-bottom-left:hover img {
  transform: rotate(360deg);
}

/* Swiper Carousel Container */
.showcase-carousel-container {
  z-index: 10;
  padding: 2.5rem 0;
  width: 70%;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .showcase-carousel-container {
    width: 60%;
  }
}

/* Swiper Slides */
.showcaseSwiper .swiper-slide {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .showcaseSwiper .swiper-slide {
    width: 260px;
  }
}

@media (min-width: 992px) {
  .showcaseSwiper .swiper-slide {
    width: 300px;
  }
}

@media (min-width: 1200px) {
  .showcaseSwiper .swiper-slide {
    width: 340px;
  }
}

.showcaseSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Contact Section - Get In Touch */
.contact-section {
  /* background: #020113; */
  padding: 2rem 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 3rem 2rem;
  }
}

.contact-section .row {
  /* background: rgba(30, 41, 59, 0.3); */
  /* backdrop-filter: blur(10px); */
  max-width: 90%;
}

@media (min-width: 1400px) {
  .contact-section .row {
    max-width: 1440px;
  }
}

/* Contact Info - Left Column */
.contact-info {
  padding: 2rem 1.5rem;
}

.contact-title {
  font-size: 32px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .contact-title {
    font-weight: 600;
  }
}

.contact-divider {
  border: 2px solid #9ca3af;
  width: 40%;
  opacity: 1;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .contact-divider {
    width: 20%;
  }
}

.contact-description {
  color: #FFFFFF;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .contact-description {
    margin-top: 0;
  }
}

/* FAQ List */
.faq-list {
  margin-top: 2rem;
}

.faq-item {
  border-top: 1px solid #9ca3af;
}

.faq-question {
  background: transparent;
  border: none;
  color: #FFFFFF;
  text-decoration: none;
  padding: 1.25rem 0;
  font-size: 16px;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: transparent;
  color: #FFFFFF;
}

.faq-question:focus {
  outline: none;
  box-shadow: none;
}

.faq-icon {
  background-color: #3b82f6;
  padding: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
}

.faq-icon svg {
  color: #000000;
  width: 12px;
  height: 12px;
}

.faq-answer {
  color: #FFFFFF;
  font-size: 15px;
  line-height: 1.6;
}

/* Contact Form - Right Column */
.contact-form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* max-height: 100vh; */
}

.contact-form-container {
  width: 100%;
  max-width: 28rem;
  background: rgba(30, 58, 138, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  /* overflow: hidden; Removed to prevent cutting off form elements */
}

@media (min-width: 992px) {
  .contact-form-container {
    margin-right: 2.5rem;
  }
}

@media (min-width: 1400px) {
  .contact-form-container {
    margin-right: 0;
  }
}

.form-header {
  background-color: #3b82f6;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
}

@media (min-width: 576px) {
  .form-header {
    font-size: 18px;
  }
}

.form-body {
  max-height: 100vh;
  overflow-y: auto;
  padding: 1.5rem;
}

@media (min-width: 992px) {
  .form-body {
    /* max-height: 100vh; */
  }
}

@media (min-width: 1400px) {
  .form-body {
    /* max-height: 70vh; */
  }
}

/* Form Controls */
.form-control-custom {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  padding: 0.75rem 1rem;
  font-size: 14px;
  border-radius: 50px;
  height: 40px;
  transition: all 0.2s ease;
}

@media (min-width: 576px) {
  .form-control-custom {
    padding: 0.875rem 1.25rem;
    font-size: 16px;
    height: 48px;
  }
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-control-custom:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4);
  color: #FFFFFF;
}

.form-control-custom:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

textarea.form-control-custom {
  border-radius: 0.75rem;
  height: auto;
  padding: 0.75rem 1rem;
  resize: vertical;
}

/* Form Labels */
.form-label {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

/* Submit Button */
.contact-form .btn-primary {
  background-color: #3b82f6;
  border-color: #3b82f6;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  font-size: 16px;
  transition: all 0.2s ease;
}

.contact-form .btn-primary:hover {
  background-color: #2563eb;
  border-color: #2563eb;
  transform: translateY(-1px);
}

.contact-form .btn-primary:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4);
}

/* Scrollbar Styling for Form */
.form-body::-webkit-scrollbar {
  width: 6px;
}

.form-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.form-body::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.6);
  border-radius: 10px;
}

.form-body::-webkit-scrollbar-thumb:hover {
  background: rgba(59, 130, 246, 0.8);
}

/* Partners Section */
.partners-section {
  /* background: #020113; */
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .partners-section {
    padding: 0rem 0;
    margin: 1rem 0;
    margin: 1rem 0px 4rem 0rem;
    overflow: hidden;
    display: block;
  }
}

.partners-container.container-md {
  width: 90%;
  max-width: 90%;
}

/* Header */
.partners-header {
  border-bottom: 1px solid #464548;
  padding-bottom: 1.5rem;
  margin-bottom: 0;
}

.partners-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .partners-left {
    align-items: flex-start;
  }
}

.partners-wave-icon {
  width: 80px;
  display: none;
}

@media (min-width: 768px) {
  .partners-wave-icon {
    display: block;
  }
}

.partners-title {
  color: #ffffff;
  margin-top: 1.5rem;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .partners-title {
    font-size: 40px;
    text-align: left;
    margin-top: 0;
  }
}

.partners-title .mobile-break {
  display: inline;
}

.partners-title .desktop-break {
  display: none;
}

@media (min-width: 768px) {
  .partners-title .mobile-break {
    display: none;
  }

  .partners-title .desktop-break {
    display: block;
  }
}

.partners-right {
  display: none;
}

@media (min-width: 768px) {
  .partners-right {
    display: block;
  }
}

.partners-description {
  font-size: 24px;
  color: #A8ADB3;
  text-align: left;
  margin: 0;
  line-height: 1.5;
}

.partners-description .desktop-break {
  display: none;
}

@media (min-width: 768px) {
  .partners-description .desktop-break {
    display: block;
  }
}

/* Swiper Section */
.partners-swiper-section {
  position: relative;
  margin-top: 2rem;
  margin-left: -35px;
  padding: 0;
  width: 1203px;
}

/* Swiper Container */
.partners-swiper {
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .partners-swiper {
    max-width: 85%;
  }
}

@media (max-width: 767px) {
  .partners-swiper {
    max-width: 80%;
  }
}

/* Swiper Navigation Arrows */
.partners-swiper-prev,
.partners-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

@media (min-width: 576px) {

  .partners-swiper-prev,
  .partners-swiper-next {
    width: 48px;
    height: 48px;
  }
}

.partners-swiper-prev {
  left: 2%;
}

.partners-swiper-next {
  right: 2%;
}

@media (min-width: 768px) {
  .partners-swiper-prev {
    left: 0;
  }

  .partners-swiper-next {
    right: 0;
  }
}

.partners-swiper-prev:hover,
.partners-swiper-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.partners-swiper-prev svg,
.partners-swiper-next svg {
  width: 100%;
  height: 100%;
  display: block;
}

.partner-logo-box {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-img {
  max-width: 182px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Hide pagination dots for partners carousel */
.partners-swiper-pagination {
  display: none !important;
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials-section {
  /* background: #020113; */
  padding: 50px 0;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .testimonials-section {
    margin: 3rem 0;
    overflow: hidden;
    display: block;
  }
}

.testimonials-container {
  width: 82%;
  max-width: 1440px;
  margin: 0 auto;
}

/* Header */
.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-title {
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-title {
    font-size: 48px;
  }
}

/* Carousel Wrapper - No Controls */
.testimonials-carousel-wrapper {
  position: relative;
  margin-top: 40px;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.testimonials-swiper {
  overflow: visible !important;
  padding: 20px 11px;
  width: 100%;
}

.testimonials-swiper .swiper-wrapper {
  overflow: visible !important;
}

.testimonials-swiper .swiper-slide {
  overflow: visible !important;
}

/* Testimonial Card */
.testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}

@media (min-width: 640px) {
  .testimonial-card {
    border-radius: 16px;
  }
}

.testimonial-card:hover {
  background: #60a5fa;
  color: #ffffff;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  z-index: 10;
  transform: scale(1.05) !important;
}

/* Header */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.testimonial-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 600;
  color: #2563eb;
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-name {
  color: #ffffff;
}

.testimonial-role {
  font-size: 14px;
  color: #000000;
  margin: 0;
  transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-role {
  color: #ffffff;
}

/* Content */
.testimonial-content {
  flex: 1;
}

.testimonial-text {
  margin: 16px 0;
  line-height: 1.6;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.testimonials-section .testimonial-text.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  -webkit-box-orient: initial;
  overflow: visible;
}

.testimonial-card:hover .testimonial-text {
  color: #ffffff;
}

.testimonial-read-more {
  color: #2563eb;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  margin-top: 8px;
  transition: color 0.3s ease;
}

.testimonials-section .testimonial-read-more {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
}

.testimonial-card:hover .testimonial-read-more {
  color: #000000;
}

/* Testimonial Avatar Styling */
.testimonial-card .field--name-field-testimonial-avatar {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.testimonial-card .field--name-field-testimonial-avatar img {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  border: 3px solid #e5e7eb;
  transition: border-color 0.3s ease;
}

.testimonial-card:hover .field--name-field-testimonial-avatar img {
  border-color: #ffffff;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section-wrapper {
  margin-bottom: 60px;
}

.cta-section-wrapper .cta-content-wrapper p {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 1440px;
  height: 300px;
  margin: 0 auto;
  border-radius: 32px;
  background-color: #0f172a;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  padding-bottom: 24px;
  padding: 0;
}

@media (min-width: 768px) {
  .cta-section {
    height: 429px;
  }
}

@media (min-width: 1024px) {
  .cta-section {
    height: 371px;
  }
}

.cta-container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  width: 95%;
  margin: 0 auto;
  gap: 10%;
}

@media (min-width: 768px) {
  .cta-container {
    grid-template-columns: 40% 50%;
  }
}

@media (min-width: 1024px) {
  .cta-container {
    align-items: center;
  }
}

/* Heading Section */
.cta-heading-wrapper {
  position: relative;
  width: 100%;
}

.cta-heading {
  font-weight: 500;
  font-size: 4.5rem;
  text-align: center;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .cta-heading {
    font-weight: 600;
    /* font-size: 4.5rem; */
  }
}

@media (min-width: 1024px) {
  .cta-heading {
    text-align: left;
    font-size: 4.5rem;
    line-height: 1;
    font-weight: bold;
  }
}

/* Content Section */
.cta-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .cta-content-wrapper {
    align-items: flex-start;
  }
}

.cta-description {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin: 20px 0;
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .cta-description {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .cta-description {
    font-size: 20px;
    margin: 24px 0;
  }
}

@media (min-width: 1024px) {
  .cta-description {
    text-align: left;
  }
}

/* Actions */
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .cta-actions {
    flex-direction: row;
  }
}

.cta-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 0;
}

@media (min-width: 640px) {
  .cta-button-wrapper {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .cta-button-wrapper {
    justify-content: center;
  }
}

.cta-phone-link {
  flex-shrink: 0;
  text-decoration: none;
}

.cta-button {
  background-color: #ffffff;
  color: #1e293b;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  height: 50px;
  padding: 0 24px;
  white-space: nowrap;
  font-size: 14px;
}

.cta-button:hover {
  opacity: 0.9;
}

@media (min-width: 768px) {
  .cta-button {
    /* font-size: 15px; */
    padding: 0 28px;
  }
}

@media (min-width: 1024px) {
  .cta-button {
    padding: 0 32px;
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.cta-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .cta-icon {
    width: 40px;
    height: 40px;
  }
}

/* Override region-content padding */
.region-content {
  padding: 0 !important;
}

/* Main section containers - 82% width */
.hero-section .container-xxl,
.about-section .container-xxl,
.expertise-section .container-xxl,
.case-studies-section .container-xxl,
.designs-slider-section .container-xxl,
.creative-showcase-section .container-xxl,
.testimonials-section .container-xxl,
.partners-section .container-xxl,
.contact-section .container-xxl,
.how-we-work-section .container-xxl,
.cta-section .cta-container {
  max-width: 82;
  margin: 0 auto;
}

/* Campaigns section stays full width */
.campaigns-section .container-xxl {
  max-width: 90% !important;
}

/* Add spacing between campaigns and expertise sections */
.expertise-section {
  margin-top: 4rem !important;
  padding-top: 3rem !important;
}

/* ========================================
   Footer
   ======================================== */

footer.site-footer {
  background-color: #2F3573;
  color: #ffffff;
  padding: 48px 24px;
  font-family: MyCustomFont, sans-serif, Nunito;
}

@media (min-width: 640px) {
  footer.site-footer {
    padding: 64px 32px;
  }
}

.region-footer {
  max-width: 1152px;
  margin: 0 auto;
  display: flex !important;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 768px) {
  .region-footer {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
  }
}

/* Remove block wrapper interference */
.region-footer .block-content {
  height: 100%;
}

/* All direct children of region-footer should not override flex */
.region-footer>* {
  display: block;
}

/* FLEXBOX 2-Column Layout - Contact Left, CTA Right */
.region-footer #block-footer-contact-info {
  flex: 1 1 calc(50% - 24px) !important;
  min-width: 0;
  max-width: calc(50% - 24px);
}

.region-footer #block-footer-cta {
  flex: 1 1 calc(50% - 24px) !important;
  min-width: 0;
  max-width: calc(50% - 24px);
}

/* Copyright spans full width below both columns */
.region-footer #block-footer-copyright {
  flex: 1 1 100% !important;
  width: 100%;
  max-width: 100%;
}

/* Footer Contact Block (Left Column) */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-title {
  font-size: 2.25rem;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 0 0;
  font-family: MyCustomFont, sans-serif, Nunito;
  letter-spacing: 0;
}

@media (min-width: 640px) {
  .footer-title {
    font-size: 2.25rem;
    line-height: 1.8rem;
  }
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-icon-wrapper {
  background-color: #22d3ee;
  padding: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-icon {
  width: 20px;
  height: 20px;
  color: #1e3a8a;
}

.footer-contact-content {
  flex: 1;
}

.footer-contact-label {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 4px 0;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .footer-contact-label {
    font-size: 16px;
  }
}

.footer-contact-link {
  color: #67e8f9;
  font-size: 12px;
  line-height: 1.6;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  word-break: break-words;
}

@media (min-width: 640px) {
  .footer-contact-link {
    font-size: 14px;
  }
}

.footer-contact-link:hover {
  color: #a5f3fc;
  text-decoration: underline;
}

.footer-phone-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: linear-gradient(to right, #67e8f9, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

@media (min-width: 640px) {
  .footer-phone-link {
    font-size: 16px;
  }
}

.footer-phone-link:hover {
  background: linear-gradient(to right, #a5f3fc, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: underline;
}

.footer-case-studies {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-case-study-link {
  color: #67e8f9;
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  transition: all 0.2s;
}

@media (min-width: 640px) {
  .footer-case-study-link {
    font-size: 14px;
  }
}

.footer-case-study-link:hover {
  color: #a5f3fc;
  text-decoration: underline;
}

/* Footer CTA Block (Right Column) */
.footer-cta-heading {
  font-weight: 600;
  text-align: left;
  margin: 0 0 16px 0;
  font-family: MyCustomFont, sans-serif, Nunito;
  letter-spacing: -1px;
  text-transform: capitalize;
  background: linear-gradient(to right, #22d3ee, #60a5fa);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.footer-cta-text {
  text-align: left;
  color: #ffffff;
  margin: 0 0 16px 0;
  font-family: MyCustomFont, sans-serif, Nunito;
  letter-spacing: -1px;
  font-size: 1.5rem;
  line-height: 2rem;
}

.footer-cta-button-wrapper {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .footer-cta-button-wrapper {
    margin-top: 24px;
  }
}

.footer-cta-button {
  height: 35px;
  background-color: #30A3FF;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 21px;
  color: #000000;
  font-family: MyCustomFont, sans-serif, Nunito;
  letter-spacing: 0.64px;
  padding: 0 16px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

@media (min-width: 768px) {
  .footer-cta-button {
    height: 40px;
    font-size: 16px;
  }
}

.footer-cta-button:hover {
  opacity: 1;
  background-color: rgb(44, 65, 255);
}

/* Footer Copyright Block */
.footer-copyright {
  max-width: 1152px;
  margin: 0 auto 0;
  padding-top: 32px;
  border-top: 1px solid #1e40af;
  text-align: center;
}

.footer-copyright p {
  color: #9ca3af;
  font-size: 12px;
  margin: 0;
}

@media (min-width: 640px) {
  .footer-copyright p {
    font-size: 14px;
  }
}

/* SEO page Banner START */
/* ===== SEO Banner Section ===== */
.paragraph--cubix_banner {
  position: relative;
  color: #fff;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  overflow: hidden;
}

/* --- Background Image --- */
.banner-background-seo {
  position: relative;
  width: 100%;
  height: 630px;
}

.banner-background-seo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.4);
}

/* --- Overlay --- */
.banner-background-seo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* --- Text Content Wrapper --- */
.banner-content {
  position: absolute;
  top: 6%;
  z-index: 2;
  width: 67%;
  left: 0;
  right: 0;
  margin: auto;
}

/* --- Main Heading --- */
.field--name-field-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 2.5rem;
}

.field--name-field-title span {
  color: #4d8cff;
}

/* --- Description Paragraph --- */
.field--name-field-description {
  font-size: 0.9rem;
  color: #e1e1e1;
  line-height: 1.5rem;
  margin-bottom: 1.8rem;
  text-align: justify;
}

/* --- Subheading ("Here's what sets us apart") --- */
.field--name-field-title-key-values {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
}

/* --- Bullet List Items --- */
.field--name-field-item {
  margin-bottom: 2rem;
}

.field--name-field-item .field__item {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e6e6e6;
}

.field--name-field-item .field__item::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #4d8cff;
  font-size: 1rem;
  top: 2px;
}

/* --- CTA Button --- */
.field--name-field-cta-general {
  display: inline-block;
  background-color: #4d8cff;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(77, 140, 255, 0.3);
}

.field--name-field-cta-general:hover {
  background-color: #3a75e5;
  box-shadow: 0 6px 18px rgba(77, 140, 255, 0.45);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .field--name-field-title {
    font-size: 2.2rem;
  }

  .field--name-field-description {
    font-size: 1rem;
  }

  /* .banner-content {
    top: 55%;
  } */
}

@media (max-width: 768px) {
  .banner-content {
    width: 92%;
    top: 50%;
    /* recenter for small screens */
  }

  .field--name-field-title {
    font-size: 1.9rem;
  }

  .field--name-field-description {
    font-size: 0.95rem;
  }
}

.webform-submission-get-a-custom-strategy-quote-form label {
  display: block;
  color: black;
}

/* SEO page Banner END */

/* Wbform Styling START */
/* === Popup Modal Container === */
.spb-popup-main-wrapper {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: #1e40af33;
  border-radius: 16px;
  overflow-y: auto;
  border: none;
  max-height: 90vh;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: #fff;
  position: relative;
}

/* === Header === */
.spb-popup-main-wrapper h2 {
  background-color: #007bff;
  color: #fff;
  margin: 0;
  padding: 16px;
  border-radius: 16px 16px 0 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 9;
}

/* === Close Button === */
.spb-controls {
  position: sticky;
  top: 8px;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  padding-right: 15px;
  height: 0;
  overflow: visible;
  background: transparent;
  pointer-events: none;
}

.spb-controls button {
  background: #fff;
  color: black;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  pointer-events: auto;
  padding: 0;
}

.spb-controls button:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* === Form Wrapper === */
.webform-submission-form {
  padding: 24px;
  padding-top: 0;
}

/* === Labels === */
.webform-submission-form label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #cbd5e1;
  margin-bottom: 4px;
  font-weight: 600;
  margin-left: 15px;
}

/* === Inputs, Textareas === */
.webform-submission-form input[type="text"],
.webform-submission-form input[type="email"],
.webform-submission-form input[type="tel"],
.webform-submission-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 40px;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-item input.error {
  border: 1px solid rgb(252, 165, 165, 1) !important;
}


.webform-submission-form textarea {
  border-radius: 16px;
  resize: none;
  color: #fff !important;
}

.text-count-message {
  float: right;
  color: rgba(255, 255, 255, 0.5);
  font-size: .75rem;
}

.webform-submission-form input::placeholder,
.webform-submission-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.webform-submission-form input:focus,
.webform-submission-form textarea:focus {
  border-color: #3b82f6;
  background: rgba(255, 255, 255, 0.1);
}

/* === Submit Button === */
#edit-submit {
  width: 100%;
  border: none;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  color: #fff;
  padding: 14px 0;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

#edit-submit:hover {
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
}

/* === Scrollbar Styling === */
.spb-popup-main-wrapper::-webkit-scrollbar {
  width: 8px;
}

.spb-popup-main-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

/* === Responsive Fix === */
@media (max-width: 480px) {
  .spb-popup-main-wrapper {
    width: 90%;
    margin: 0 auto;
  }
}

#edit-name--wrapper legend {
  display: none;
}

/* Wbform Styling END */

/* grid Section SEO page START */
/* FLEX CONTAINER FOR THE 6 BOXES */
.paragraph--grid_layout_card {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.paragraph--grid_layout_card .field--name-field-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.paragraph--grid_layout_card .field--name-field-grid .field__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* keeps them centered */
  gap: 24px;
  /* space between cards */
  margin: 0;
  padding: 0;
}

/* EACH BOX */
.paragraph--grid_layout_card .field--name-field-grid .field__item {
  /* flex: 0 0 calc(33.333% - 16px); 
  max-width: calc(33.333% - 16px); */
  flex-basis: 29%;
}

/* THE CARD ITSELF */
.paragraph--grid_layout_card .paragraph--grid_boxes_layout {
  border-radius: 18px;
  padding: 28px 24px 22px;
  border: 1px solid;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
  border-color: rgb(66 66 69 / var(--tw-border-opacity, 1));
  min-height: 35rem;
}

.paragraph--grid_layout_card .paragraph--grid_boxes_layout:hover {
  /* transform: translate(0, -4px) rotate(0deg) skewX(0deg) skewY(0deg) scaleX(1.03) scaleY(1.03);
  opacity: 0.7; */
  background-color: transparent;
}


/* ICON, TITLE, TEXT, BUTTON (optional but recommended) */
.paragraph--grid_layout_card .field--name-field-upload-image-icon {
  margin-bottom: 22px;
  background-color: #33415580;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  padding: 1.5rem;
}

.paragraph--grid_layout_card .field--name-field-title-grid {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 1.5rem;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  font-weight: 600;
  min-height: 5vw;
}

.paragraph--grid_layout_card .field--name-field-description-grid {
  margin-bottom: 24px;
}

/* Fix for black background strip on sliders */
.case-studies-stats-section .carousel-indicators,
.campaigns-section .carousel-indicators {
  background: transparent !important;
  background-color: transparent !important;
}

.paragraph--grid_layout_card .field--name-field-description-grid p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  max-height: 10.3rem;
  overflow: hidden;
  height: 20rem;
}

.paragraph--grid_layout_card .field--name-field-phone-number a {
  border-style: solid;
  border-color: #e5e7eb;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 3rem;
  padding-right: 4rem;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  border-width: 1px;
  border-radius: .375rem;
  display: inline-block;
  position: relative;
}

.paragraph--grid_layout_card .field--name-field-phone-number a::after {
  content: "";
  background-image: url(../images/arrowright-cirle.png);
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  align-items: center;
  top: 1.4rem;
  right: 2.3rem;
}

.paragraph--grid_layout_card .field--name-field-phone-number a:hover {
  background-color: rgba(48, 163, 255, 1);
  color: rgb(17, 24, 39);
}

.paragraph--grid_layout_card .field--name-field-phone-number {
  margin-top: auto;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {

  /* 2 per row on tablet */
  /* .paragraph--grid_layout_card .field--name-field-grid .field__item {
    flex: 0 0 calc(50% - 16px);
    max-width: calc(50% - 16px);
  } */
}

@media (max-width: 640px) {

  /* 1 per row on mobile */
  /* .paragraph--grid_layout_card .field--name-field-grid .field__item {
    flex: 0 0 100%;
    max-width: 100%;
  } */
}

.paragraph--grid_layout_card .field--name-field-heading {
  font-size: clamp(28px, 6vw, 60px);
  text-align: center;
  width: 72%;
  margin: 0 auto;
  font-weight: 700;
}

.paragraph--grid_layout_card .field--name-field-summery {
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  width: 63%;
  margin: 0 auto;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  font-weight: 400;
  line-height: clamp(22px, 4.5vw, 32px);
  font-size: clamp(16px, 3.5vw, 25px);
  margin-bottom: 5rem;
}

/* grid Section SEO page END */

/* process_highlights_section SEO PAGE START */
/* ========= PROCESS / HIGHLIGHTS SECTION ========= */

.paragraph--process_highlights_section {
  position: relative;
  padding: 4rem 1rem 4rem;
  color: #e5edff;
  overflow: hidden;
  font-family: "General Sans", system-ui, sans-serif;
}

/* Centered inner width */
.paragraph--process_highlights_section>.field--name-field-bullet-heading,
.paragraph--process_highlights_section>.field--name-field-item-lb-ds {
  max-width: 56rem;
  /* ~ max-w-4xl */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.paragraph--process_highlights_section>.field--name-field-item-lb-ds {}

/* ===== BACKGROUND IMAGE + BLUE OVERLAY ===== */

.paragraph--process_highlights_section .field--name-field-background-image-blt {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.paragraph--process_highlights_section .field--name-field-background-image-blt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* blue overlay */
.paragraph--process_highlights_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(30, 58, 138, 0.9);
  /* blue-900 with .opacity-90 */
  z-index: 1;
}

/* ===== HEADING ===== */

.paragraph--process_highlights_section .field--name-field-bullet-heading {
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  /* text-2xl */
}

@media (min-width: 640px) {
  .paragraph--process_highlights_section .field--name-field-bullet-heading {
    margin-bottom: 2rem;
    /* sm:mb-8 */
    font-size: 1.875rem;
    /* sm:text-3xl */
    line-height: 2.25rem;
  }
}

@media (min-width: 768px) {
  .paragraph--process_highlights_section .field--name-field-bullet-heading {
    font-size: 2.25rem;
    /* md:text-4xl */
    line-height: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .paragraph--process_highlights_section .field--name-field-bullet-heading {
    font-size: 3rem;
    /* lg:text-5xl */
    line-height: 1;
  }
}

/* ===== LIST WRAPPER ===== */

.paragraph--process_highlights_section .field--name-field-item-lb-ds .field__items {
  max-width: 48rem;
  /* max-w-3xl */
  margin: 0 auto;
}

.paragraph--process_highlights_section .field--name-field-item-lb-ds .field__item {
  margin-bottom: 1rem;
}

/* vertical spacing between items (space-y-4 / sm:space-y-6) */
.paragraph--process_highlights_section .field--name-field-item-lb-ds .field__items>.field__item+.field__item {
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .paragraph--process_highlights_section .field--name-field-item-lb-ds .field__items>.field__item+.field__item {
    margin-top: 1.5rem;
  }
}

/* ===== EACH ROW (bullet + text) ===== */

.paragraph--process_highlights_section .paragraph--label_description {
  /* display: flex; */
  align-items: flex-start;
  /* gap: 0.75rem; */
  /* space-x-3 */
  color: #dbeafe;
  /* text-blue-100 / gray-100 mix */
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}

/* little bullet circle */
.paragraph--process_highlights_section .paragraph--label_description::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.5rem;
  border-radius: 999px;
  background-color: #93c5fd;
  /* blue-300 */
  margin-right: 20px;
}

/* move slightly right & lighten on hover (hover:translate-x-2) */
.paragraph--label_description {
  position: relative;
  padding-left: 25px;
  /* Creates space for the dot */
  margin-bottom: 15px;
  /* Adds spacing between each list item */
}

.paragraph--label_description::before {
  content: "•";
  /* The dot icon. You can change this to "." if you prefer a small period */
  position: absolute;
  left: 0;
  top: 0;
  /* Adjust this to align with the first line of text */
  font-weight: bold;
  color: #000;
  /* Change color if needed (e.g., to your brand blue) */
  font-size: 20px;
  /* Adjust size of the dot */
  line-height: 1;
  /* Helps with vertical alignment */
}

.paragraph--process_highlights_section .paragraph--label_description:hover {
  transform: translateX(0.5rem);
}

/* LABEL + DESCRIPTION INLINE */

.paragraph--process_highlights_section .field--name-field-label,
.paragraph--process_highlights_section .field--name-field-short-description {
  display: inline;
}

.paragraph--process_highlights_section .field--name-field-label {
  font-weight: 700;
  /* font-bold */
  font-size: 1.125rem;
  /* text-lg */
  line-height: 1.75rem;
  color: #fff;
  /* blue-200-ish */
  transition: color 0.15s ease;
}

.paragraph--process_highlights_section .field--name-field-short-description {
  margin-left: 0.25rem;
  /* ml-1 */
  font-weight: 300;
  /* font-light */
  font-size: 0.875rem;
  /* text-sm */
  line-height: 1.625;
  /* leading-relaxed */
  color: #f3f4f6;
  /* gray-100 */
}

@media (min-width: 640px) {
  .paragraph--process_highlights_section .field--name-field-label {
    /* sm:text-xl */
    font-size: 1.125rem;
    /* line-height: 1.75rem; */
  }

  .paragraph--process_highlights_section .field--name-field-short-description {
    font-size: 1rem;
    /* sm:text-base */
    line-height: 1.5;
  }
}

@media (min-width: 768px) {
  .paragraph--process_highlights_section .field--name-field-short-description {
    font-size: 1.125rem;
    /* md:text-lg */
    line-height: 1.75;
  }
}

/* optional: on hover, make label white */
.paragraph--process_highlights_section .paragraph--label_description:hover .field--name-field-label {
  color: #ffffff;
}

/* process_highlights_section SEO PAGE END */


/* Service Card Grid START - Collapsible Cards Section */
.service-card-grid-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Section Header */
.service-card-grid-section .section-header {
  text-align: center;
  width: 94%;
  margin: 0 auto;
  margin-bottom: 2.5rem;
}

.service-card-grid-section .section-header p {
  width: 60%;
  margin: auto;
  line-height: clamp(22px, 4.5vw, 32px);
  font-weight: 400;
  font-size: clamp(16px, 3.5vw, 25px);
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}

.service-card-grid-section .section-header h2.expertise-title {
  font-weight: 700 !important;
  line-height: clamp(34px, 7vw, 60px);
  font-size: clamp(28px, 6vw, 60px) !important;
}

.service-card-grid-section .field--name-field-section-title h2 {
  font-size: clamp(1.75rem, 6vw, 3.75rem);
  line-height: clamp(2.125rem, 7vw, 3.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  margin-top: 0;
}

.service-card-grid-section .field--name-field-section-description,
.service-card-grid-section .field--name-field-section-description .field__item {
  font-size: clamp(1rem, 3.5vw, 1.5625rem);
  line-height: clamp(1.375rem, 4.5vw, 2rem);
  font-weight: 400;
  color: #d1d5db;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.service-card-grid-section .section-description {
  font-size: clamp(1rem, 3.5vw, 1.5625rem);
  line-height: clamp(1.375rem, 4.5vw, 2rem);
  font-weight: 400;
  color: #d1d5db;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Cards Grid Layout */
.service-card-grid-section .cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 75rem;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .service-card-grid-section .section-header {
    margin-bottom: 3rem;
  }

  .service-card-grid-section .section-description {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .service-card-grid-section .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .service-card-grid-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .service-card-grid-section .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* Card Column */
.service-card-grid-section .card-column {
  display: flex;
}

/* Service Card Collapsible */
.service-card-collapsible {
  background: linear-gradient(180deg, #0c0c0c 0%, #292930 100%);
  border: 1px solid #424245;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.service-card-collapsible:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .service-card-collapsible {
    padding: 3rem;
  }
}

/* Card Icon */
.service-card-collapsible .card-icon-wrapper {
  width: 5rem;
  height: 5rem;
  background: rgba(100, 116, 139, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.service-card-collapsible .card-icon-wrapper img {
  width: 75%;
  height: 63%;
  object-fit: contain;
}

@media (min-width: 576px) {
  .service-card-collapsible .card-icon-wrapper {
    width: 6rem;
    height: 6rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 992px) {
  .service-card-collapsible .card-icon-wrapper {
    width: 8rem;
    height: 8rem;
  }
}

/* Card Title */
.service-card-collapsible .card-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .service-card-collapsible .card-title {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 2rem;
  }
}

/* Card Description */
.service-card-collapsible .card-description {
  font-family: 'Noto Sans', sans-serif;
  color: #9ca3af;
  text-align: left;
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .service-card-collapsible .card-description {
    margin-bottom: 2.5rem;
  }
}

.service-card-collapsible .short-desc {
  margin-bottom: 1rem;
}

.service-card-collapsible .full-desc {
  margin-bottom: 1rem;
}

/* Collapse Toggle Button */
.service-card-collapsible .collapse-toggle {
  font-size: 0.875rem;
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
  border: none;
  background: none;
  padding: 0;
  margin-left: 0.5rem;
  cursor: pointer;
}

.service-card-collapsible .collapse-toggle:hover {
  color: #93c5fd;
  text-decoration: none;
}

/* Features Wrapper */
.service-card-collapsible .features-wrapper {
  margin-top: 1rem;
}

.service-card-collapsible .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card-collapsible .feature-item {
  display: flex;
  align-items: flex-start;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.service-card-collapsible .feature-bullet {
  color: #60a5fa;
  margin-right: 0.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* CTA Button */
.service-card-collapsible .services-button-nu {
  border: 1px solid #6b7280;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding: 1rem 3rem 1rem 2rem;
  color: #6b7280;
  border-radius: 0.375rem;
  display: inline-block;
  position: relative;
  width: 67%;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  margin-top: auto;
}

.service-card-collapsible .services-button-nu:hover {
  background: #30a3ff;
  color: #111827;
  border-color: #30a3ff;
}

.service-card-collapsible .cta-arrow {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
  display: inline-flex;
}

.service-card-collapsible .services-button-nu:hover .cta-arrow {
  transform: translateX(0.25rem);
}

/* Card description + toggle on one line */
.service-card-collapsible .card-description p {
  display: inline;
  /* text flows inline */
  margin: 0;
  /* remove default bottom margin */
}

/* The [+] / [−] toggle button */
.service-card-collapsible .card-description .collapse-toggle {
  display: inline-block;
  /* keep it on same line as the text */
  margin-left: 4px;
  /* small gap after the paragraph */
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: #38bdf8;
  /* adjust to your theme color */
  cursor: pointer;
}

/* Service Card Grid End */

/* Static Banner in page START */
/* ===== Static banner wrapper ===== */
.paragraph--static_banner {
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

/* Main container – center content vertically */
.paragraph--static_banner .st-banner-cntr {
  position: relative;
  padding: 61px 5vw;
  display: flex;
  align-items: center;
}

/* ===== Background image + blue overlay ===== */
.paragraph--static_banner .st-bk-area {
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0; */
  z-index: 0;
}

/* Make the image cover the whole area */
.paragraph--static_banner .st-bk-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Blue overlay on top of image */
.paragraph--static_banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 58, 140, 0.90);
  /* deep blue overlay */
  z-index: 1;
}

/* ===== Text content ===== */
.paragraph--static_banner .st-inner-content-area {
  position: relative;
  z-index: 2;
  width: 74%;
  margin: 0 auto;
  color: #ffffff;
  text-align: left;
}

/* Title */
.paragraph--static_banner .field--name-field-title-banner {
  font-weight: 800;
  font-size: clamp(2.4rem, 3.2vw + 1rem, 3.8rem);
  /* responsive */
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .paragraph--static_banner .field--name-field-title-banner {
    font-size: 3rem;
    line-height: 1;
  }
}

/* Body text */
.paragraph--static_banner .field--name-field-body {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Paragraph inside body */
.paragraph--static_banner .field--name-field-body p {
  margin: 0;
  color: #CFD4E3;
  font-weight: 300;
}

@media (min-width: 768px) {
  .paragraph--static_banner .field--name-field-body p {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

/* ===== Responsive tweaks ===== */
@media (max-width: 991.98px) {
  .paragraph--static_banner .st-banner-cntr {
    padding: 80px 1.5rem;
    min-height: 320px;
  }

  .paragraph--static_banner .field--name-field-title-banner {
    font-size: 2rem;
    text-align: center;
  }

  .paragraph--static_banner .st-inner-content-area,
  .paragraph--static_banner .field--name-field-body {
    text-align: center;
  }

  .paragraph--static_banner .field--name-field-body {
    font-size: 0.98rem;
  }
}

@media (max-width: 575.98px) {
  .paragraph--static_banner .st-banner-cntr {
    padding: 60px 1.25rem;
  }

  .paragraph--static_banner .field--name-field-title-banner {
    font-size: 1.7rem;
  }
}

/* Static Banner in page END */

/* Cubix Banner with Webform START */

.paragraph--cubix_banner_webform {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.paragraph--cubix_banner_webform .field--name-field-webform {
  position: absolute;
  top: 30px;
  right: 3rem;
  width: 30%;
  z-index: 9;

}

.paragraph--cubix_banner_webform .banner-content {
  left: 10rem;
  margin: unset;
  width: 50%;
}

/* .paragraph--cubix_banner_webform .field--name-field-webform .field__label{
  color: #fff !important;
} */
.paragraph--cubix_banner_webform .field--name-field-webform h2 {
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  background-color: #3F8DF8;
  font-weight: 500;
  font-size: .875rem;
  line-height: 1.25rem;
  text-align: center;
  padding: 1rem 0;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.paragraph--cubix_banner_webform .field--name-field-webform #block-webform {
  background-color: #1e40af33;
  border-radius: 29px;
  border: 1px solid #ffffff1a;
}


.paragraph--cubix_banner_webform .field--name-field-webform .webform-submission-form {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.75) rgba(0, 0, 0, 0.4);
  height: 480px;
  max-height: 600px;
  padding-top: 0;

}

/* WebKit (Chrome, Edge, Safari) */
.paragraph--cubix_banner_webform .field--name-field-webform .webform-submission-form::-webkit-scrollbar {
  width: 6px;
}

.paragraph--cubix_banner_webform .field--name-field-webform .webform-submission-form::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.4);
}

.paragraph--cubix_banner_webform .field--name-field-webform .webform-submission-form::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
}

.paragraph--cubix_banner_webform .field--name-field-webform .webform-submission-form::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.95);
}

/* Cubix Banner with Webform START */


/*  Static banner dark bule START */
.paragraph--static_banner_dark_bule {
  background-color: #050f25;
  /* dark blue */
  color: #ffffff;
  padding: 80px 1.5rem;
  text-align: center;
}


/* Optional: subtle grid overlay (remove if not needed) */
.paragraph--static_banner_dark_bule {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 60px 60px;
}

/* Inner max width & centering */

.paragraph--static_banner_dark_bule>.field--name-field-title-bl-bk,
.paragraph--static_banner_dark_bule>.field--name-field-description-bl-bk {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph--static_banner_dark_bule .field--name-field-title-bl-bk {
  font-weight: 800;
  font-size: clamp(2.4rem, 3vw + 1rem, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.paragraph--static_banner_dark_bule .field--name-field-description-bl-bk {
  font-size: 1.05rem;
  line-height: 1.7;
}

.paragraph--static_banner_dark_bule .field--name-field-description-bl-bk p {
  margin: 0;
  padding-left: 7rem;
  padding-right: 7rem;
  color: rgb(209 213 219);
  font-weight: 400;
  padding-top: 0rem;
  font-size: clamp(16px, 3.5vw, 25px);
  line-height: clamp(22px, 4.5vw, 32px);
}

/* Small screen tweak */
@media (max-width: 575.98px) {
  .paragraph--static_banner_dark_bule {
    padding: 60px 1.25rem;
  }

  /*   .paragraph--static_banner_dark_bule .field--name-field-title-bl-bk {
    font-size: 2rem;
  } */
}

/*  Static banner dark bule END */

/* Get in Touch START */
/* ===== Get in touch CTA card ===== */
.paragraph--get_in_touch {
  width: 90%;
  margin: 60px auto;
  padding: 40px 60px;
  background: #32a8ff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #ffffff;
  min-height: 216px;
  height: 100%;
  cursor: pointer;
}

/* Title */
.paragraph--get_in_touch .field--name-field-title-get-touch {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 10px;
}

/* Description */
.paragraph--get_in_touch .field--name-field-description-get-touch {
  font-size: 1.05rem;
  font-weight: 400;
}

/* Wrap title + description together on the left */
.paragraph--get_in_touch .field--name-field-title-get-touch,
.paragraph--get_in_touch .field--name-field-description-get-touch {
  max-width: 750px;
}

/* CTA field styled as button on the right */
.paragraph--get_in_touch .field--name-field-cta {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: #ffffff;
  color: #1d8af5;
  border-radius: 999px;
  /* pill shape */
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

/* Optional hover */
.paragraph--get_in_touch .field--name-field-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

/* ===== Responsive ===== */
@media (max-width: 767.98px) {
  .paragraph--get_in_touch {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .paragraph--get_in_touch .field--name-field-cta {
    margin-top: 20px;
  }
}

/* Get in Touch END */

/* Get in Touch V2 START  */
/* ===========================================
   GET IN TOUCH V2 – with top icon + bg image
   =========================================== */

/* Main wrapper */
.paragraph--get_in_touch_v2 {
  position: relative;
  width: 88%;
  margin: 0 auto;
  padding: 38px 20px 38px;
  border-radius: 40px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

/* Background image (full card) */
.paragraph--get_in_touch_v2 .field--name-field-background-image-gt {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}

.paragraph--get_in_touch_v2 .field--name-field-background-image-gt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== TOP ICON IMAGE ===== */

.paragraph--get_in_touch_v2 .field--name-field-top-image {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  text-align: center;
}

/* Hide "Top Image" label */
.paragraph--get_in_touch_v2 .field--name-field-top-image .field__label {
  display: none !important;
}

/* Icon itself */
.paragraph--get_in_touch_v2 .field--name-field-top-image .field__item img {
  max-width: 140px;
  height: auto;
  display: inline-block;
}

/* ===== TEXT + BUTTON (on top of background) ===== */

.paragraph--get_in_touch_v2 .field--name-field-title-gt-2,
.paragraph--get_in_touch_v2 .field--name-field-description-gt-2,
.paragraph--get_in_touch_v2 .field--name-field-cta-gt-v2 {
  position: relative;
  z-index: 1;
}


/* Title */
.paragraph--get_in_touch_v2 .field--name-field-title-gt-2 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

@media (min-width: 1024px) {
  .paragraph--get_in_touch_v2 .field--name-field-title-gt-2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

/* Description */
.paragraph--get_in_touch_v2 .field--name-field-description-gt-2 {
  font-size: 1.1rem;
  margin-bottom: 29px;
}

/* CTA button */
.paragraph--get_in_touch_v2 .field--name-field-cta-gt-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 48px;
  border-radius: 999px;
  background: #ffffff;
  color: #237adf;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  white-space: nowrap;
}

/* Hover */
.paragraph--get_in_touch_v2 .field--name-field-cta-gt-v2:hover {
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 767.98px) {
  .paragraph--get_in_touch_v2 {
    padding: 60px 20px 70px;
    border-radius: 28px;
  }

  .paragraph--get_in_touch_v2 .field--name-field-title-gt-2 {
    font-size: 1.9rem;
  }

  .paragraph--get_in_touch_v2 .field--name-field-description-gt-2 {
    font-size: 0.98rem;
  }
}

/* Get in Touch V2 END  */

/* Why 7KC Banner START */

.paragraph--why_7_kings_banner {
  position: relative;
  padding: 90px 5vw;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}


.paragraph--why_7_kings_banner .field--name-field-background-image-7kc {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  overflow: hidden;
  pointer-events: none;
}

.paragraph--why_7_kings_banner .field--name-field-background-image-7kc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.paragraph--why_7_kings_banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 71, 163, 0.9);
  /* adjust if needed */
  z-index: 1;
}

.paragraph--why_7_kings_banner .field--name-field-title-7kc,
.paragraph--why_7_kings_banner .field--name-field-description-7kc {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph--why_7_kings_banner .field--name-field-title-7kc {
  font-weight: 800;
  font-size: clamp(2.4rem, 3vw + 1rem, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  word-spacing: -4px;
}

@media (min-width: 1024px) {
  .paragraph--why_7_kings_banner .field--name-field-title-7kc {
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -2px;
    word-spacing: -4px;
  }
}


.paragraph--why_7_kings_banner .field--name-field-description-7kc {
  font-size: 1.05rem;
  line-height: 1.8;
}

.paragraph--why_7_kings_banner .field--name-field-description-7kc p {
  margin: 0;
  color: rgba(243, 244, 246, 1);
  font-size: 1.125rem;
  line-height: 1.75rem;
  width: 72%;
  margin: auto;
  text-align: left;
  margin-bottom: 1.8rem;
}

@media (min-width: 768px) {
  .paragraph--why_7_kings_banner .field--name-field-description-7kc p {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  /* .paragraph--why_7_kings_banner {
    padding: 70px 1.5rem;
  } */

  .paragraph--why_7_kings_banner .field--name-field-title-7kc {
    font-size: 2rem;
  }

  .paragraph--why_7_kings_banner .field--name-field-description-7kc {
    font-size: 0.98rem;
  }
}

/* Why 7KC Banner END */

/* Faq's Secrion START */
.paragraph--faq_s {
  padding: 80px 1.5rem;
  color: #f9fafb;
  text-align: center;
}

.paragraph--faq_s .field--name-field-title-faq {
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.paragraph--faq_s .field--name-field-description-faq-cu {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.paragraph--faq_s .field--name-field-description-faq-cu p {
  color: #fffc;
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .paragraph--faq_s .field--name-field-description-faq-cu p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}


.paragraph--faq_s .field--name-field-faq .ui-accordion {
  max-width: 800px;
  margin: 0 auto;
}

/* Hide default jQuery UI icon sprite */
.paragraph--faq_s .field--name-field-faq .ui-accordion-header-icon.ui-icon {
  display: none;
}


.paragraph--faq_s .faqfield-question {
  position: relative;
  margin: 10px 0;
  padding: 20px 54px 20px 40px;
  border-radius: 9px;
  background-color: #2F3573;
  color: #f9fafb;
  font-size: 0.97rem;
  font-weight: 500;
  border: 0;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
}


.paragraph--faq_s .faqfield-question::before {
  content: "";
  position: absolute;
  left: 20px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: rgb(255, 255, 255, 1);
}


.paragraph--faq_s .faqfield-question::after {
  content: "+";
  position: absolute;
  right: 22px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.paragraph--faq_s .faqfield-question.ui-accordion-header-active::after {
  content: "–";
}

.paragraph--faq_s .faqfield-answer {
  margin-top: -15px;
  margin-bottom: 8px;
  padding: 14px 24px 18px;
  border-radius: 0 0 16px 16px;
  color: #e5e7eb;
  font-size: 0.94rem;
  line-height: 1.6;
  border: 0;
  background-color: #2F3573;
  text-align: left;
}

/* Remove extra default jQuery UI styles */
.paragraph--faq_s .faqfield-answer,
.paragraph--faq_s .faqfield-question {
  box-shadow: none;
}

.paragraph--faq_s .faqfield-answer p {
  border-top: 1px solid #ffffff4d;
  padding-top: 14px;
  scroll-behavior: unset;
}

@media (max-width: 575.98px) {
  .paragraph--faq_s {
    padding: 60px 1rem;
  }

  .paragraph--faq_s .faqfield-question {
    padding: 12px 48px 12px 36px;
    font-size: 0.95rem;
  }

  .paragraph--faq_s .faqfield-answer {
    font-size: 0.92rem;
  }
}

/* Faq's Secrion END */

/* Rich Text Editor Scrolling-bar START */
/* Main Paragraph Wrapper */



/* scroll bar START */
/* === Outer card (paragraph wrapper) === */
.paragraph--ppc_services_guide {
  position: relative;
  width: 70%;
  height: 235px;
  border-radius: 32px;
  background: linear-gradient(135deg, #303c89 0%, #2e3574 100%);
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 4rem;
}

/* === Inner scroll area (this gets the scrollbar) === */
.paragraph--ppc_services_guide .ppc-services-guide-scroll {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 42px;
  right: 30px;
  overflow-y: auto;
  color: #f9fafb;
}

/* Make sure the field itself is NOT adding its own scroll */
.paragraph--ppc_services_guide .field--name-field-rich-text-editor {
  overflow: visible;
}

/* Typography */
.paragraph--ppc_services_guide .ppc-services-guide-scroll h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.paragraph--ppc_services_guide .ppc-services-guide-scroll h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .paragraph--ppc_services_guide .ppc-services-guide-scroll h4 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.paragraph--ppc_services_guide .ppc-services-guide-scroll p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #f3f4f6;
}

@media (min-width: 768px) {
  .paragraph--ppc_services_guide .ppc-services-guide-scroll p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

/* ==== Scrollbar styling (inside card) ==== */

/* Firefox */
.paragraph--ppc_services_guide .ppc-services-guide-scroll {
  scrollbar-width: thin;
  scrollbar-color: #9ca3af #ffffff;
}

/* WebKit (Chrome/Edge/Safari) */
.paragraph--ppc_services_guide .ppc-services-guide-scroll::-webkit-scrollbar {
  width: 22px;
}

/* Track (white bar) */
.paragraph--ppc_services_guide .ppc-services-guide-scroll::-webkit-scrollbar-track {
  background: #ffffff;
}

/* Thumb (grey pill) */
.paragraph--ppc_services_guide .ppc-services-guide-scroll::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 999px;
  border: 6px solid #ffffff;
}

/* Top arrow */
.paragraph--ppc_services_guide .ppc-services-guide-scroll::-webkit-scrollbar-button:vertical:start:decrement {
  height: 18px;
  background: #ffffff;
  border-width: 0 7px 7px 7px;
  border-style: solid;
  border-color: transparent transparent #9ca3af transparent;
}

/* Bottom arrow */
.paragraph--ppc_services_guide .ppc-services-guide-scroll::-webkit-scrollbar-button:vertical:end:increment {
  height: 18px;
  background: #ffffff;
  border-width: 7px 7px 0 7px;
  border-style: solid;
  border-color: #9ca3af transparent transparent transparent;
}

/* scroll bar END */

/* Rich Text Editor Scrolling-bar END */

/* blogs Detail Page START */
/* ===========================
   Blog Banner – Outer section
   =========================== */

.paragraph--blog_banner {
  position: relative;
  overflow: hidden;
}

/* Full-width background image behind the card */
.blog-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/landing-Background-ChF2DviG.svg) no-repeat;
  z-index: -2;
  background-position: 65% 29%;
}

/* Optional dark overlay to keep text readable */
.paragraph--blog_banner::after {
  /* content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55); /* #0f172a with opacity */
  z-index: -1;
}

/* ===========================
   Card container
   =========================== */

.paragraph--blog_banner .main-blog-container {
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 56px;
  padding: 4rem 3rem 4rem;
  border-radius: 40px;
  /* box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45); */
  width: 90%;
  border-color: #e5e7eb;
  background-color: rgba(243, 244, 246, 0.4);
}

/* Left & right columns */
.paragraph--blog_banner .left-blog-crn {
  /* flex: 0 0 52%; */
  display: flex;
  align-items: center;
}

.paragraph--blog_banner .inner-blog-ctn {
  width: 80%;
}

.paragraph--blog_banner .right-blog-ctn {
  /* flex: 0 0 48%;
  display: flex; */
  align-items: center;
  justify-content: center;
}

/* ===========================
   Left side content
   =========================== */

/* Category line */
.paragraph--blog_banner .field--name-field-category {
  margin-bottom: 32px;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.paragraph--blog_banner .field--name-field-category .field__label {
  color: #e5e7eb;
  font-weight: 500;
  padding-right: 2px;
}

.paragraph--blog_banner .field--name-field-category .field__item {
  color: #38bdf8;
  /* accent blue */
  font-weight: 600;
}

/* Title */
.paragraph--blog_banner .field--name-field-title-blg {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1;
  color: rgb(47, 53, 115, 1);
}

@media (min-width: 768px) {
  .paragraph--blog_banner .field--name-field-title-blg {
    font-size: 2.7rem;
    line-height: 1;
  }
}

.paragraph--blog_banner .field--name-field-description-blg {
  font-size: 16px;
  line-height: 1.7;
  color: #d1d5db;
  max-width: 640px;
}

.paragraph--blog_banner .field--name-field-link {
  margin-top: 4rem;
}

.paragraph--blog_banner .field--name-field-link a {
  color: rgb(255, 255, 255, 1);
}

.paragraph--blog_banner .field--name-field-link a::after {
  content: "\2192";
  /* → */
  display: inline-block;
  font-size: 1rem;
  color: rgb(255, 255, 255, 1);
  margin-left: 0.25rem;
}

.paragraph--blog_banner .field--name-field-link a:hover::after {
  color: rgb(29, 78, 216, 1);
}

.paragraph--blog_banner .field--name-field-link a:hover {
  color: rgb(29, 78, 216, 1);
}

.paragraph--blog_banner .field--name-field-posted-on {
  display: inline-flex;
  float: right;
  margin-top: 0rem;
  position: relative;
  top: 4rem;
}

/* ===========================
   Right side image
   =========================== */

.paragraph--blog_banner .field--name-field-right-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  margin-top: 3rem;
}

/* ===========================
   Responsive tweaks
   =========================== */

@media (max-width: 1024px) {
  .paragraph--blog_banner .main-blog-container {
    padding: 40px 28px 36px;
    gap: 36px;
  }

  .paragraph--blog_banner .field--name-field-title-blg {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .paragraph--blog_banner {
    padding: 72px 16px 100px;
  }

  .paragraph--blog_banner .main-blog-container {
    flex-direction: column;
    padding: 32px 24px 32px;
    border-radius: 28px;
  }

  .paragraph--blog_banner .left-blog-crn,
  .paragraph--blog_banner .right-blog-ctn {
    flex: 1 1 auto;
  }

  .paragraph--blog_banner .field--name-field-title-blg {
    font-size: 30px;
  }

  .paragraph--blog_banner .field--name-field-description-blg {
    font-size: 15px;
  }

  .paragraph--blog_banner .field--name-field-right-image img {
    max-height: 360px;
  }
}

.paragraph--title .field--name-field-page-title {
  font-size: 4.5rem;
  line-height: 1;
  color: rgb(255, 255, 255, 1);
  font-style: italic;
  font-weight: 700;
  text-align: center;
  margin-top: 6rem;
  /* margin-bottom: 6rem; */
}

article[data-history-node-id="10"] {
  background-image: url("../images/landing-Background-ChF2DviG.svg");
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
}

.paragraph--title {
  /* margin-bottom: 3rem; */
}

/* #block-sevenkm-page-title {
  width: 83%;
  margin-top: 4rem;
  margin-left: 2rem;
} */

#block-sevenkm-page-title .page-title {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.page-node-type-blogs .field--name-field-published {
  margin-bottom: 3rem;
}

.page-node-type-blogs .field--name-field-blog-banner-image {
  margin-bottom: 3rem;
}

/* blogs Detail Page END */

/* Blog Listing page START */


/* Put the SVG grid background only behind the listing section */
.blog-listing-grid {
  position: relative;
  /* needed for ::before layering */
  z-index: 0;
  padding-top: 9rem;
}

.blog-listing-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../images/landing-Background-ChF2DviG.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  opacity: 1;
  pointer-events: none;
}

/* Blog Listing page END */

#block-sevenkm-webform {
  display: none;
}

@media (min-width: 768px) {
  .expert-section-ini {
    margin-top: 40px !important;

  }

  .growth-stats {
    width: 98%;
    margin: 0 auto;
  }
}

.expert-section-ini p {
  color: rgb(156, 163, 175, 1);
}

.spb-popup-main-wrapper {
  top: 30% !important;
}

.webform-submission-form strong.error.form-item--error-message {
  position: relative;
  color: rgb(252, 165, 165, 1);
  font-size: .75rem;
  line-height: 1rem;
  margin-top: 7px;
}

.form-item--error-message::before {
  position: absolute;
  left: -17px;
  top: -0.8px;
}

.spb_close {
  margin-top: -1px;
}

.form-item {
  margin-bottom: 0;
}

.captcha__title {
  margin-top: 18px;
}

.webform-submission-get-a-custom-strategy-quote-form .fieldset-legend {
  display: none;
}

#edit-phone-error {
  margin-top: 2px;
}

.form-item textarea.error {
  border: 1px solid rgb(252, 165, 165, 1);
}

.path-frontpage .hero-section {
  margin-top: 4rem;
}

textarea.webform-counter-warning,
textarea.form-textarea.webform-counter-warning {
  background: none;
}