:root {
  --themeColor: #0C91EA;
  --primaryColor: #C001FB;
  --secondaryColor: #5A7A89;
  --blackColor: #000;
  --whiteColor: #fff;
  --textcolor: #e8e8e8;
  --textLightColor: #a0a0a0;
  --darkBgPrimary: #0f0f0f;
  --darkBgSecondary: #1a1a1a;
  --darkBgTertiary: #242424;
  --borderDark: rgba(255, 255, 255, 0.1);
}

/* CUSTOM CSS HERE */
* {
  font-family: "Outfit", sans-serif;
  margin: 0;
  padding: 0;
  line-height: normal !important;
}

/* SCROLL ANIMATIONS */

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Slide Up Animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide In From Left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide In From Right */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale In Animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.animated {
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in.animated {
  animation-name: fadeIn;
}

.slide-up.animated {
  animation-name: slideUp;
}

.slide-in-left.animated {
  animation-name: slideInLeft;
}

.slide-in-right.animated {
  animation-name: slideInRight;
}

.scale-in.animated {
  animation-name: scaleIn;
}

/* Stagger Animation Delays */
.animate-on-scroll.delay-1 {
  animation-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
  animation-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
  animation-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
  animation-delay: 0.4s;
}

.animate-on-scroll.delay-5 {
  animation-delay: 0.5s;
}

.animate-on-scroll.delay-6 {
  animation-delay: 0.6s;
}

body {
  margin: 0;
  padding: 0;
  height: 100dvh;
  font-weight: 400;
  box-sizing: border-box;
  line-height: normal;
  background-color: var(--darkBgPrimary) !important;
  color: var(--textcolor);
}

/* Custom Scrollbar */
.page-scroll-area {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.page-scroll-area::-webkit-scrollbar {
  width: 4px;
}

.page-scroll-area::-webkit-scrollbar-track {
  background: #2a2a2a;
  border-radius: 10px;
}

.page-scroll-area::-webkit-scrollbar-thumb {
  background: var(--themeColor);
  border-radius: 10px;
}

.container {
  max-width: 1260px !important;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none !important;
}

/* FONT SIZE */
.font-36 {
  font-size: clamp(1.75rem, 1.5rem + 1vw, 2.25rem) !important;
}

.font-28 {
  font-size: clamp(1.25rem, 1.15rem + 0.4vw, 1.75rem) !important;
}

.font-24 {
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem) !important;
}

.font-22 {
  font-size: clamp(1.125rem, 1.05rem + 0.3vw, 1.375rem) !important;
}

.font-20 {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem) !important;
}

.font-18 {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem) !important;
}

.font-16 {
  font-size: clamp(0.75rem, 0.6994rem + 0.2532vw, 1rem);
}

.font-14 {
  font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem) !important;
}

.font-12 {
  font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem) !important;
}

.font-10 {
  font-size: 10px;
}

.max-w-100 {
  max-width: 100% !important;
}

/* FONT WEIGHT */
.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

/* COLOR */
.primaryColor {
  color: var(--primaryColor);
}

.themeColor {
  color: var(--themeColor);
}

.secondaryColor {
  color: var(--secondaryColor);
}

.textColor {
  color: var(--textcolor);
}

.textLightColor {
  color: var(--textLightColor);
}

.line-height-26 {
  line-height: 26px !important;
}

.line-height-28 {
  line-height: 28px !important;
}

.line-height-24 {
  line-height: 24px !important;
}

.line-height-22 {
  line-height: 22px !important;
}

.cursor-pointer {
  cursor: pointer;
}

/* Navbar */
.navbar-container {
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: clamp(0.5rem, 1.5vw, 0.75rem) 0;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 998;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.7), 0 1px 0 rgba(12, 145, 234, 0.1);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(12, 145, 234, 0.15);
}

.nav-logo {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(1.2);
}

.nav-logo img {
  transition: all 0.4s ease;
  height: clamp(50px, 5vw, 65px);
  filter: brightness(1.2) drop-shadow(0 2px 8px rgba(12, 145, 234, 0.3));
}

.nav-logo:hover {
  transform: translateY(-2px) scale(1.08);
}

.nav-logo:hover img {
  filter: brightness(1.4) drop-shadow(0 4px 12px rgba(12, 145, 234, 0.5));
}

.nav-container {
  padding: 0;
}

.nav-toggle {
  width: clamp(1.25rem, 3vw, 1.5rem);
  height: clamp(1rem, 2.5vw, 1.125rem);
  display: flex;
  z-index: 1000;
}

.nav-toggle span {
  width: 100%;
  height: clamp(2px, 0.5vw, 3px);
  background: var(--themeColor);
  border-radius: 0.125rem;
  transition: all 0.4s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: clamp(0.5rem, 2vw, 1rem);
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: clamp(14rem, 40vw, 16rem);
  padding: clamp(1rem, 2.5vw, 1.25rem);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(12, 145, 234, 0.2);
  border: 1px solid rgba(12, 145, 234, 0.15);
  gap: clamp(0.375rem, 1vw, 0.5rem);
  margin-top: clamp(0.5rem, 1.5vw, 0.75rem);
}

.nav-link-item {
  color: var(--textLightColor);
  text-decoration: none;
  padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(0.75rem, 2vw, 1.25rem);
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  letter-spacing: 0.3px;
}

.nav-link-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.15) 0%, rgba(192, 1, 251, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 10px;
}

.nav-link-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 2px;
}

/* Ensure dropdown-toggle also gets the underline effect */
.nav-link-item.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 2px;
  display: block !important;
}

.nav-link-item:hover {
  color: var(--whiteColor);
  transform: translateY(-2px);
}

.nav-link-item:hover::before {
  opacity: 1;
}

.nav-link-item:hover::after,
.nav-link-item.dropdown-toggle:hover::after {
  width: 60%;
}

.nav-link-item.active {
  color: var(--whiteColor);
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.2) 0%, rgba(192, 1, 251, 0.2) 100%);
  box-shadow: 0 4px 16px rgba(12, 145, 234, 0.3);
}

.nav-link-item.active::after {
  width: 70%;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  box-shadow: 0 0 12px rgba(12, 145, 234, 0.6);
}

/* Dropdown toggle active state */
.dropdown-toggle.active::after {
  width: 70%;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  box-shadow: 0 0 12px rgba(12, 145, 234, 0.6);
}

/* Bootstrap Dropdown - Hide default arrow, use custom icon */
.dropdown-toggle::after {
  display: none !important;
}

.dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.dropdown.show .dropdown-toggle i,
.dropdown-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* Dropdown toggle active state - show underline like other nav items */
.dropdown-toggle.nav-link-item.active {
  color: var(--whiteColor);
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.2) 0%, rgba(192, 1, 251, 0.2) 100%);
  box-shadow: 0 4px 16px rgba(12, 145, 234, 0.3);
}

.dropdown-toggle.nav-link-item.active::after {
  width: 70%;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  box-shadow: 0 0 12px rgba(12, 145, 234, 0.6);
}

/* Dropdown menu styling */
.dropdown-menu {
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(12, 145, 234, 0.2);
  border-radius: 12px;
  padding: 0.5rem;
  margin-top: 0.5rem;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.9);
}

.dropdown-item {
  color: var(--textLightColor);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(12, 145, 234, 0.15);
  color: var(--whiteColor);
}

.dropdown-item:active {
  background: rgba(12, 145, 234, 0.25);
  color: var(--whiteColor);
}

.nav-btn {
  padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 28px);
  border-radius: 12px;
  color: var(--whiteColor) !important;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  background-size: 200% 200%;
  border: none;
  animation: navGradientShift 3s ease infinite, navPulse 2s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(12, 145, 234, 0.4), 0 0 0 0 rgba(12, 145, 234, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

@keyframes navGradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes navPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(12, 145, 234, 0.4), 0 0 0 0 rgba(12, 145, 234, 0.5);
  }

  50% {
    box-shadow: 0 8px 30px rgba(12, 145, 234, 0.6), 0 0 0 10px rgba(12, 145, 234, 0);
  }
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: navShine 2.2s ease-in-out infinite;
}

@keyframes navShine {
  0% {
    left: -120%;
  }

  50%,
  100% {
    left: 120%;
  }
}

.nav-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 35px rgba(12, 145, 234, 0.7), 0 0 0 0 rgba(12, 145, 234, 0);
  animation: none;
  background-position: 100% 50%;
}

.nav-btn:active {
  transform: translateY(0) scale(0.98);
}


/* Footer */
.footer {
  background: linear-gradient(135deg, var(--darkBgPrimary) 0%, var(--darkBgSecondary) 100%);
  padding: clamp(2rem, 6vw, 5rem) 0 0;
  border-top: 1px solid rgba(12, 145, 234, 0.2);
}

.footer-gradient-overlay {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 20% 50%, rgba(12, 145, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(192, 1, 251, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-logo {
  width: clamp(160px, 18vw, 190px);
  transition: all 0.4s ease;
  filter: brightness(1.2) drop-shadow(0 4px 12px rgba(12, 145, 234, 0.3));
}

.footer-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.4) drop-shadow(0 6px 16px rgba(12, 145, 234, 0.5));
}

.footer-tagline {
  letter-spacing: 3px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(40px, 6vw, 50px);
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 2px;
}

.footer-link {
  transition: all 0.3s ease;
  display: inline-block;
  color: var(--textLightColor);
}

.footer-link:hover {
  color: var(--themeColor) !important;
  transform: translateX(5px);
}

.footer-contact-link {
  transition: all 0.3s ease;
  color: var(--textLightColor);
}

.footer-contact-link:hover {
  color: var(--themeColor) !important;
}

.footer-legal-link {
  transition: all 0.3s ease;
  color: var(--textLightColor);
}

.footer-legal-link:hover {
  color: var(--themeColor) !important;
}

.footer-social-icon {
  width: clamp(38px, 5vw, 45px);
  height: clamp(38px, 5vw, 45px);
  border-radius: 50%;
  background: rgba(12, 145, 234, 0.1);
  border: 1px solid rgba(12, 145, 234, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-social-icon i {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--whiteColor);
}

.footer-social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  box-shadow: 0 8px 24px rgba(12, 145, 234, 0.4);
  border-color: transparent;
}

.footer-social-icon:hover i {
  -webkit-text-fill-color: var(--whiteColor);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(12, 145, 234, 0.3) 50%, transparent 100%);
}

/* Hero Section */
.hero-section {
  background: var(--darkBgPrimary);
  min-height: 100vh;
}

/* Background Image */
.hero-bg-image {
  top: 0;
  left: 0;
  background-image: url('../images/png/hero-bg-img.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  animation: bgZoom 20s ease-in-out infinite alternate;
}

@keyframes bgZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

/* Overlay */
.hero-overlay {
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.85) 0%, rgba(26, 26, 26, 0.80) 100%);
  z-index: 2;
}

/* Animated Shapes */
.hero-shape-1 {
  width: clamp(400px, 50vw, 600px);
  height: clamp(400px, 50vw, 600px);
  background: radial-gradient(circle, rgba(12, 145, 234, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -150px;
  filter: blur(80px);
  z-index: 3;
  animation: shapeFloat1 12s ease-in-out infinite;
}

.hero-shape-2 {
  width: clamp(350px, 45vw, 550px);
  height: clamp(350px, 45vw, 550px);
  background: radial-gradient(circle, rgba(192, 1, 251, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -180px;
  left: -120px;
  filter: blur(80px);
  z-index: 3;
  animation: shapeFloat2 15s ease-in-out infinite;
}

.hero-shape-3 {
  width: clamp(300px, 40vw, 500px);
  height: clamp(300px, 40vw, 500px);
  background: radial-gradient(circle, rgba(12, 145, 234, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
  z-index: 3;
  animation: shapePulse 10s ease-in-out infinite;
}

@keyframes shapeFloat1 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(50px, -50px) rotate(120deg);
  }

  66% {
    transform: translate(-30px, 30px) rotate(240deg);
  }
}

@keyframes shapeFloat2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(-40px, 40px) rotate(-120deg);
  }

  66% {
    transform: translate(40px, -40px) rotate(-240deg);
  }
}

@keyframes shapePulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.6;
  }
}

/* Content */
.hero-content-center {
  position: relative;
  z-index: 10;
  animation: fadeInUp 1s ease-out;
}

.hero-row-height {
  min-height: 100vh;
}

.hero-section .container {
  z-index: 10;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.25) 0%, rgba(192, 1, 251, 0.25) 100%);
  border: 1px solid rgba(12, 145, 234, 0.4);
  border-radius: 50px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: var(--themeColor);
  letter-spacing: 2px;
  padding: 8px 20px;
  font-size: 11px;
}

.hero-main-title {
  line-height: 1.3;
}

.hero-highlight-text {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  display: inline-block;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-desc {
  max-width: clamp(500px, 70%, 700px);
}

/* CTA Button */
.btn-hero-primary {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  background-size: 200% 200%;
  color: var(--whiteColor);
  box-shadow: 0 8px 30px rgba(12, 145, 234, 0.5);
  animation: btnGradient 3s ease infinite;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@keyframes btnGradient {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.btn-hero-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(12, 145, 234, 0.7);
  color: var(--whiteColor);
  animation: none;
  background-position: 100% 50%;
}

/* Trusted Brands Section */
.trusted-section {
  background: var(--darkBgSecondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.trusted-gradient-bg {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 30% 50%, rgba(12, 145, 234, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(192, 1, 251, 0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.trusted-section .container {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4rem);
}



.trusted-underline {
  width: clamp(60px, 8vw, 80px);
  height: 4px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 2px;
  margin: clamp(0.75rem, 1.5vw, 1rem) auto 0;
}

.brands-slider-wrapper {
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands-slider {
  animation: slideLogos 30s linear infinite;
  width: max-content;
}

.brands-slider:hover {
  animation-play-state: paused;
}

@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.brand-card {
  background: rgba(12, 145, 234, 0.05);
  border: 1px solid rgba(12, 145, 234, 0.15);
  border-radius: 16px;
  padding: clamp(12px, 3vw, 1rem);
  min-height: clamp(100px, 12vw, 120px);
  min-width: clamp(180px, 20vw, 220px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.brand-card:hover {
  background: rgba(12, 145, 234, 0.1);
  border-color: rgba(12, 145, 234, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(12, 145, 234, 0.2);
}

.brand-logo {
  max-width: 100%;
  max-height: clamp(50px, 6vw, 60px);
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.4s ease;
}

.brand-card:hover .brand-logo {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

.btn-trusted-cta {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  background-size: 200% 200%;
  color: var(--whiteColor);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 30px rgba(12, 145, 234, 0.4);
  border: none;
  animation: btnGradient 3s ease infinite;
}

.btn-trusted-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(12, 145, 234, 0.6);
  color: var(--whiteColor);
  animation: none;
  background-position: 100% 50%;
}

/* Services Section */
.services-section {
  background: var(--darkBgPrimary);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.services-gradient-bg {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 20%, rgba(12, 145, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(192, 1, 251, 0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.services-content {
  z-index: 2;
}

.services-title {
  letter-spacing: 0.5px;
}

.services-underline {
  width: clamp(60px, 8vw, 80px);
  height: 4px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 40vw, 350px), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.service-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(12, 145, 234, 0.15);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 2.5rem);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  gap: clamp(1rem, 2vw, 1.25rem);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.15) 0%, rgba(192, 1, 251, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 24px;
  z-index: -1;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 24px;
  opacity: 0;
  z-index: -2;
  transition: opacity 0.5s ease;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: transparent;
  box-shadow: 0 24px 64px rgba(12, 145, 234, 0.4), 0 0 0 1px rgba(12, 145, 234, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 0.3;
}

.service-icon-wrapper {
  width: clamp(70px, 9vw, 80px);
  height: clamp(70px, 9vw, 80px);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(12, 145, 234, 0.4);
}

.service-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 20px;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.5s ease;
  z-index: -1;
}

.service-icon-wrapper i {
  font-size: clamp(28px, 4.5vw, 36px);
  color: var(--whiteColor);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(12, 145, 234, 0.6);
}

.service-card:hover .service-icon-wrapper::before {
  opacity: 1;
}

.service-card-title {
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.service-card:hover .service-card-title {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card-desc {
  opacity: 0.80;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-card-desc {
  opacity: 1;
}

/* Marquee Section */
.marquee-section {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  padding: clamp(1.5rem, 3vw, 2rem) 0;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-icon {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--whiteColor);
}

.marquee-text {
  color: var(--whiteColor);
  letter-spacing: 0.5px;
}

/* Why Choose Us Section */
.why-choose-section {
  background: var(--darkBgSecondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.why-choose-gradient-bg {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 30% 30%, rgba(12, 145, 234, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(192, 1, 251, 0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.why-choose-content {
  z-index: 2;
}

.why-choose-header {
  max-width: clamp(600px, 80%, 900px);
  margin: 0 auto;
}

.why-choose-title {
  line-height: 1.3;
}

.why-choose-subtitle {
  margin-top: clamp(1rem, 2vw, 1.5rem);
  opacity: 0.9;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 40vw, 350px), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.why-feature-card {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  border: 1px solid rgba(12, 145, 234, 0.25);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 2.5rem);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.why-feature-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(12, 145, 234, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
  z-index: 0;
}

.why-feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.1) 0%, transparent 50%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  transition: all 0.5s ease;
  z-index: 0;
}

.card-glow-circle {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(192, 1, 251, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -80px;
  right: -80px;
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.card-decorative-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 50%, transparent 100%);
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.card-accent-line {
  width: clamp(60px, 10vw, 80px);
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(12, 145, 234, 0.5);
  z-index: 1;
}

.why-feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(12, 145, 234, 0.5);
  box-shadow: 0 20px 60px rgba(12, 145, 234, 0.3);
}

.why-feature-card:hover::before {
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(12, 145, 234, 0.25) 0%, transparent 70%);
}

.why-feature-card:hover::after {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.2) 0%, rgba(192, 1, 251, 0.1) 50%, transparent 70%);
}

.why-feature-card:hover .card-glow-circle {
  opacity: 1;
}

.why-feature-card:hover .card-decorative-line {
  opacity: 1;
}

.why-feature-icon-wrapper {
  width: clamp(70px, 9vw, 85px);
  height: clamp(70px, 9vw, 85px);
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.15) 0%, rgba(192, 1, 251, 0.15) 100%);
  border-radius: 50%;
  transition: all 0.5s ease;
  box-shadow: 0 0 0 1px rgba(12, 145, 234, 0.3), 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.icon-glow-ring {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(12, 145, 234, 0.4);
  border-radius: 50%;
  animation: ringPulse 3s ease-in-out infinite;
}

.icon-glow-ring-2 {
  position: absolute;
  width: 120%;
  height: 120%;
  border: 1px solid rgba(192, 1, 251, 0.3);
  border-radius: 50%;
  animation: ringPulse 3s ease-in-out infinite reverse;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes ringPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.why-feature-icon-wrapper i {
  font-size: clamp(26px, 4vw, 34px);
  color: var(--whiteColor);
  z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(12, 145, 234, 0.3));
}

.why-feature-card:hover .why-feature-icon-wrapper {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  box-shadow: 0 0 40px rgba(12, 145, 234, 0.6), 0 0 0 1px rgba(12, 145, 234, 0.5);
  transform: scale(1.1) rotate(5deg);
}

.why-feature-card:hover .why-feature-icon-wrapper i {
  -webkit-text-fill-color: var(--whiteColor);
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
}

.why-feature-card:hover .icon-glow-ring {
  border-color: rgba(12, 145, 234, 0.6);
}

.why-feature-card:hover .icon-glow-ring-2 {
  border-color: rgba(192, 1, 251, 0.5);
}

.why-feature-title {
  letter-spacing: 0.3px;
}

.why-feature-desc {
  opacity: 0.80;
  transition: opacity 0.3s ease;
}

.why-feature-card:hover .why-feature-desc {
  opacity: 1;
}


/* CTA Section */
.cta-section {
  background: var(--darkBgPrimary);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.cta-gradient-bg {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 20% 50%, rgba(12, 145, 234, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(192, 1, 251, 0.1) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.cta-content {
  z-index: 2;
}

.cta-title {
  line-height: 1.3;
}

.btn-cta {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  background-size: 200% 200%;
  color: var(--whiteColor);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 30px rgba(12, 145, 234, 0.4);
  border: none;
  animation: btnGradient 3s ease infinite;
  width: fit-content;
}

.btn-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(12, 145, 234, 0.6);
  color: var(--whiteColor);
  animation: none;
  background-position: 100% 50%;
}

.cta-image-wrapper {
  min-height: clamp(300px, 40vw, 400px);
  z-index: 2;
}

.cta-circle-1 {
  width: clamp(250px, 35vw, 350px);
  height: clamp(250px, 35vw, 350px);
  background: transparent;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--themeColor), 0 0 30px rgba(12, 145, 234, 0.4);
  animation: ctaCirclePulse 4s ease-in-out infinite;
}

.cta-circle-2 {
  width: clamp(200px, 28vw, 280px);
  height: clamp(200px, 28vw, 280px);
  background: transparent;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--primaryColor), 0 0 30px rgba(192, 1, 251, 0.4);
  animation: ctaCirclePulse 4s ease-in-out infinite reverse;
}

@keyframes ctaCirclePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.cta-icon-wrapper {
  width: clamp(150px, 20vw, 200px);
  height: clamp(150px, 20vw, 200px);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 50%;
  box-shadow: 0 15px 50px rgba(12, 145, 234, 0.5);
  animation: ctaIconFloat 3s ease-in-out infinite;
  z-index: 3;
}

.cta-icon-ring-1 {
  width: clamp(180px, 24vw, 240px);
  height: clamp(180px, 24vw, 240px);
  border: 3px solid var(--themeColor);
  border-radius: 50%;
  animation: ctaRingPulse 3s ease-in-out infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 0 20px rgba(12, 145, 234, 0.5);
}

.cta-icon-ring-2 {
  width: clamp(210px, 28vw, 280px);
  height: clamp(210px, 28vw, 280px);
  border: 2px solid var(--primaryColor);
  border-radius: 50%;
  animation: ctaRingPulse2 3s ease-in-out infinite reverse;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  box-shadow: 0 0 20px rgba(192, 1, 251, 0.5);
}

@keyframes ctaRingPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

@keyframes ctaRingPulse2 {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

@keyframes ctaIconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.cta-icon-wrapper i {
  font-size: clamp(50px, 8vw, 70px);
  color: var(--whiteColor);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

@media (max-width: 991px) {
  .cta-image-wrapper {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom .col-12 {
    text-align: center !important;
  }
}

/* SEO Services Section */
.seo-services-section {
  background: var(--darkBgPrimary);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.seo-gradient-bg {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 20% 30%, rgba(12, 145, 234, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(192, 1, 251, 0.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.seo-services-section .container {
  z-index: 2;
}

.seo-main-title {
  line-height: 1.3;
  max-width: clamp(600px, 85%, 900px);
  margin-left: auto;
  margin-right: auto;
}

.seo-subtitle {
  opacity: 0.9;
  letter-spacing: 0.3px;
}

.seo-divider {
  width: clamp(80px, 10vw, 120px);
  height: 4px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 2px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 0 15px rgba(12, 145, 234, 0.5);
}

.seo-description {
  opacity: 0.85;
  max-width: 100%;
}

.seo-service-card {
  background: rgba(26, 26, 26, 0.7);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 2.5rem);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  min-height: 420px;
}

.seo-card-content {
  z-index: 2;
}

.seo-card-image-wrapper {
  border-radius: 16px;
  height: clamp(180px, 20vw, 220px);
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  margin-top: auto;
}

.seo-card-image {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s ease;
  opacity: 0.9;
}

.seo-service-card:hover .seo-card-image-wrapper {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.seo-service-card:hover .seo-card-image {
  opacity: 1;
  transform: scale(1.1);
}

.seo-card-overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  transition: all 0.5s ease;
  z-index: 1;
  border-radius: 24px;
}

/* Pink Card */
.seo-card-pink {
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.08) 0%, rgba(26, 26, 26, 0.9) 100%);
  border-color: rgba(255, 182, 193, 0.15);
}

.seo-card-pink .seo-card-overlay {
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.2) 0%, transparent 100%);
}

.seo-card-pink:hover {
  border-color: rgba(255, 182, 193, 0.4);
  box-shadow: 0 20px 60px rgba(255, 182, 193, 0.2);
  transform: translateY(-8px);
}

.seo-card-pink:hover .seo-card-overlay {
  opacity: 0.25;
}

/* Purple Card */
.seo-card-purple {
  background: linear-gradient(135deg, rgba(192, 1, 251, 0.08) 0%, rgba(26, 26, 26, 0.9) 100%);
  border-color: rgba(192, 1, 251, 0.15);
}

.seo-card-purple .seo-card-overlay {
  background: linear-gradient(135deg, rgba(192, 1, 251, 0.2) 0%, transparent 100%);
}

.seo-card-purple:hover {
  border-color: rgba(192, 1, 251, 0.4);
  box-shadow: 0 20px 60px rgba(192, 1, 251, 0.2);
  transform: translateY(-8px);
}

.seo-card-purple:hover .seo-card-overlay {
  opacity: 0.25;
}

/* Blue Card */
.seo-card-blue {
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.08) 0%, rgba(26, 26, 26, 0.9) 100%);
  border-color: rgba(12, 145, 234, 0.15);
}

.seo-card-blue .seo-card-overlay {
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.2) 0%, transparent 100%);
}

.seo-card-blue:hover {
  border-color: rgba(12, 145, 234, 0.4);
  box-shadow: 0 20px 60px rgba(12, 145, 234, 0.2);
  transform: translateY(-8px);
}

.seo-card-blue:hover .seo-card-overlay {
  opacity: 0.25;
}

/* Yellow Card */
.seo-card-yellow {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(26, 26, 26, 0.9) 100%);
  border-color: rgba(255, 215, 0, 0.15);
}

.seo-card-yellow .seo-card-overlay {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, transparent 100%);
}

.seo-card-yellow:hover {
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
  transform: translateY(-8px);
}

.seo-card-yellow:hover .seo-card-overlay {
  opacity: 0.25;
}

.seo-card-title {
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.seo-service-card:hover .seo-card-title {
  transform: translateX(5px);
}

.seo-card-desc {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.seo-service-card:hover .seo-card-desc {
  opacity: 1;
}

.btn-seo-cta {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  background-size: 200% 200%;
  color: var(--whiteColor);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 30px rgba(12, 145, 234, 0.4);
  border: none;
  animation: btnGradient 3s ease infinite;
}

.btn-seo-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(12, 145, 234, 0.6);
  color: var(--whiteColor);
  animation: none;
  background-position: 100% 50%;
}

@media (max-width: 768px) {
  .seo-service-card {
    min-height: auto;
  }
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
    width: auto;
    gap: clamp(0.25rem, 1vw, 0.5rem);
    margin-top: 0;
  }

  .nav-btn {
    margin-left: clamp(0.5rem, 2vw, 1rem);
  }
}

@media (max-width: 991px) {
  .nav-menu {
    align-items: flex-start;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }
}



/* Google Ads Section */
.google-ads-section {
  background: var(--darkBgSecondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.google-ads-gradient-bg {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 20%, rgba(12, 145, 234, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(192, 1, 251, 0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.google-ads-section .container {
  z-index: 2;
}

.google-ads-title {
  line-height: 1.3;
}

.google-ads-subtitle {
  opacity: 0.9;
}

.btn-google-ads-cta {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  background-size: 200% 200%;
  color: var(--whiteColor);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 30px rgba(12, 145, 234, 0.4);
  border: none;
  animation: btnGradient 3s ease infinite;
}

.btn-google-ads-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(12, 145, 234, 0.6);
  color: var(--whiteColor);
  animation: none;
  background-position: 100% 50%;
}

@media (max-width: 991px) {
  .google-ads-accordion-item:hover {
    transform: translateX(4px);
  }
}

@media (max-width: 768px) {
  .google-ads-accordion-item {
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  }

  .accordion-header {
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
  }
}


/* Bootstrap Accordion Customization for Google Ads */
.google-ads-accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
}

.google-ads-accordion-item {
  background: rgba(26, 26, 26, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
}

.google-ads-accordion-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.google-ads-accordion-item:hover {
  border-color: rgba(12, 145, 234, 0.4) !important;
  background: rgba(26, 26, 26, 0.7) !important;
}

.google-ads-accordion-item:hover::before {
  opacity: 1;
}

.google-ads-accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(12, 145, 234, 0.5) !important;
  background: rgba(26, 26, 26, 0.8) !important;
}

.google-ads-accordion-item:has(.accordion-button:not(.collapsed))::before {
  opacity: 1;
}

.google-ads-accordion .accordion-button {
  background: transparent;
  border: none;
  box-shadow: none !important;
  padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1.25rem, 3vw, 1.75rem);
  color: var(--textcolor);
  position: relative;
  z-index: 2;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.google-ads-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--textcolor);
  box-shadow: none !important;
}

.google-ads-accordion .accordion-button:focus {
  box-shadow: none !important;
  border: none;
  outline: none;
}

.google-ads-accordion .accordion-button::after {
  content: '\F64D';
  font-family: 'bootstrap-icons';
  background-image: none;
  width: auto;
  height: auto;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--themeColor);
  transition: all 0.3s ease;
  margin-left: auto;
  flex-shrink: 0;
}

.google-ads-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
  color: var(--themeColor);
}

.accordion-number {
  min-width: clamp(20px, 2.5vw, 24px);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.accordion-title {
  flex: 1;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  text-align: left;
  font-weight: 600;
}

.google-ads-accordion .accordion-button:not(.collapsed) .accordion-title {
  color: var(--themeColor);
}

.google-ads-accordion .accordion-body {
  padding: 0 clamp(1.25rem, 3vw, 1.75rem) clamp(1rem, 2.5vw, 1.5rem) clamp(3rem, 5vw, 4rem);
  background: transparent;
}

.accordion-text {
  opacity: 0.85;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .google-ads-accordion .accordion-body {
    padding: 0 clamp(1rem, 2.5vw, 1.5rem) clamp(0.875rem, 2vw, 1.25rem) clamp(2.5rem, 4vw, 3rem);
  }
}


/* Digital Experiences Section - Clean Minimal Design */
.digital-experiences-section {
  background: var(--darkBgPrimary);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.digital-experiences-gradient-bg {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 20%, rgba(12, 145, 234, 0.06) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.digital-experiences-section .container {
  z-index: 2;
}

.digital-experiences-title {
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.digital-experiences-subtitle {
  opacity: 0.9;
}

/* Features Wrapper */
.digital-features-wrapper {
  width: 100%;
}

/* Feature Item - Clean White Card */
.digital-feature-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: clamp(1.75rem, 3.5vw, 2rem) clamp(1.75rem, 4vw, 2rem);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.digital-feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(12, 145, 234, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(12, 145, 234, 0.15);
}

.digital-feature-inner {
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

/* Feature Name (Title on Left) */
.digital-feature-name {
  min-width: clamp(140px, 18%, 180px);
  max-width: clamp(140px, 18%, 180px);
  line-height: 1.4;
  letter-spacing: 0.3px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.digital-feature-item:hover .digital-feature-name {
  color: var(--themeColor);
}

/* Hide br tags on mobile */
@media (max-width: 991px) {
  .digital-feature-name br {
    display: none;
  }
}

/* Vertical Divider Line */
.digital-vertical-line {
  width: 2px;
  height: clamp(50px, 6vw, 65px);
  background: linear-gradient(180deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  opacity: 0.25;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.digital-feature-item:hover .digital-vertical-line {
  opacity: 0.8;
  box-shadow: 0 0 12px rgba(12, 145, 234, 0.4);
}

/* Feature Text (Description) */
.digital-feature-text {
  flex: 1;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.digital-feature-item:hover .digital-feature-text {
  opacity: 1;
}

/* Feature Icon (Right Side) */
.digital-feature-icon {
  width: clamp(50px, 6vw, 60px);
  height: clamp(50px, 6vw, 60px);
  background: rgba(12, 145, 234, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(12, 145, 234, 0.15);
}

.digital-feature-icon i {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--textcolor);
  transition: all 0.4s ease;
}

.digital-feature-item:hover .digital-feature-icon {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-color: transparent;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(12, 145, 234, 0.4);
}

.digital-feature-item:hover .digital-feature-icon i {
  color: var(--whiteColor);
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

/* CTA Button */
.btn-digital-experiences-cta {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  background-size: 200% 200%;
  color: var(--whiteColor);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 30px rgba(12, 145, 234, 0.4);
  border: none;
  animation: btnGradient 3s ease infinite;
}

.btn-digital-experiences-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(12, 145, 234, 0.6);
  color: var(--whiteColor);
  animation: none;
  background-position: 100% 50%;
}

/* Responsive Design */
@media (max-width: 991px) {
  .digital-feature-inner {
    flex-wrap: wrap;
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
  }

  .digital-feature-name {
    min-width: 100%;
    max-width: 100%;
  }

  .digital-vertical-line {
    display: none;
  }

  .digital-feature-text {
    width: 100%;
    order: 3;
  }

  .digital-feature-icon {
    order: 2;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .digital-feature-item {
    padding: clamp(1.5rem, 3vw, 2rem);
  }

  .digital-feature-icon {
    width: clamp(45px, 5.5vw, 55px);
    height: clamp(45px, 5.5vw, 55px);
  }

  .digital-feature-icon i {
    font-size: clamp(20px, 2.8vw, 26px);
  }
}


/* Diverse Expertise Section */
.diverse-expertise-section {
  background: var(--darkBgSecondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.diverse-expertise-gradient-bg {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 30% 40%, rgba(12, 145, 234, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(192, 1, 251, 0.1) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.diverse-expertise-section .container {
  z-index: 2;
}

/* Main Title */
.diverse-main-title {
  line-height: 1.3;
  letter-spacing: 0.5px;
}

/* Premium Card Design */
.diverse-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(15, 15, 15, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.diverse-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.08) 0%, rgba(192, 1, 251, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 20px;
  z-index: 1;
}

.diverse-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 20px;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.5s ease;
}

.diverse-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(12, 145, 234, 0.25);
}

.diverse-card:hover::before {
  opacity: 1;
}

.diverse-card:hover::after {
  opacity: 0.15;
}

.diverse-card-inner {
  position: relative;
  z-index: 2;
}

/* Icon Wrapper */
.diverse-icon-wrapper {
  width: clamp(75px, 9vw, 90px);
  height: clamp(75px, 9vw, 90px);
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.15) 0%, rgba(192, 1, 251, 0.15) 100%);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(12, 145, 234, 0.25);
  position: relative;
}

.diverse-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -5px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 50%;
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.5s ease;
  z-index: -1;
}

.diverse-icon-wrapper i {
  color: var(--whiteColor);
  filter: drop-shadow(0 2px 8px rgba(12, 145, 234, 0.3));
  transition: all 0.5s ease;
  font-size: clamp(32px, 4.5vw, 38px);
}

.diverse-card:hover .diverse-icon-wrapper {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-color: transparent;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 35px rgba(12, 145, 234, 0.5);
}

.diverse-card:hover .diverse-icon-wrapper::before {
  opacity: 1;
}

.diverse-card:hover .diverse-icon-wrapper i {
  -webkit-text-fill-color: var(--whiteColor);
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}

/* Card Title */
.diverse-card-title {
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.diverse-card:hover .diverse-card-title {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card Description */
.diverse-card-desc {
  opacity: 0.85;
  transition: opacity 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.diverse-card:hover .diverse-card-desc {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .diverse-card {
    padding: clamp(1.75rem, 3.5vw, 2.25rem) clamp(1.25rem, 2.5vw, 1.75rem);
  }

  .diverse-icon-wrapper {
    width: clamp(70px, 8.5vw, 85px);
    height: clamp(70px, 8.5vw, 85px);
  }

  .diverse-icon-wrapper i {
    font-size: clamp(30px, 4vw, 34px);
  }
}

@media (max-width: 576px) {
  .diverse-card {
    padding: clamp(1rem, 3vw, 1rem);
  }

  .about-hero-section {
    min-height: auto !important;
  }

  .hero-row-height,
  .hero-section {
    min-height: 80vh;
  }
}


/* Reach Engage Sell Section - Creative Hexagon Design */
.reach-engage-section {
  background: var(--darkBgSecondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.reach-engage-gradient-bg {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 25% 25%, rgba(12, 145, 234, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(192, 1, 251, 0.15) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
  animation: pulseGradient 8s ease-in-out infinite;
}

@keyframes pulseGradient {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

/* Animated Particles Background */
.reach-particles {
  top: 0;
  left: 0;
  background-image:
    radial-gradient(circle, rgba(12, 145, 234, 0.3) 1px, transparent 1px),
    radial-gradient(circle, rgba(192, 1, 251, 0.3) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px;
  background-position: 0 0, 40px 40px;
  animation: particleMove 20s linear infinite;
  opacity: 0.3;
  z-index: 1;
}

@keyframes particleMove {
  0% {
    background-position: 0 0, 40px 40px;
  }

  100% {
    background-position: 50px 50px, 90px 90px;
  }
}

.reach-engage-section .container {
  z-index: 2;
}

/* Section Header */
.reach-header {
  max-width: 700px;
  margin: 0 auto clamp(3rem, 5vw, 4rem);
}

.reach-main-title {
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.reach-subtitle {
  opacity: 0.85;
}

/* Hexagon Container */
.reach-hexagon-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

/* Hexagon Rows */
.reach-hex-row {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.reach-hex-row-1 {
  /* First row - 3 cards */
}

.reach-hex-row-2 {
  /* Second row - 2 cards centered */
  max-width: 650px;
  margin: 0 auto;
}

/* Hexagon Card */
.reach-hex-card {
  width: clamp(240px, 30vw, 300px);
  position: relative;
  animation: fadeInUp 0.8s ease-out backwards;
}

.reach-hex-card[data-step="1"] {
  animation-delay: 0.1s;
}

.reach-hex-card[data-step="2"] {
  animation-delay: 0.2s;
}

.reach-hex-card[data-step="3"] {
  animation-delay: 0.3s;
}

.reach-hex-card[data-step="4"] {
  animation-delay: 0.4s;
}

.reach-hex-card[data-step="5"] {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hexagon Shape */
.reach-hex-shape {
  position: relative;
  width: 100%;
  padding-bottom: 115%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(15, 15, 15, 0.95) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(12, 145, 234, 0.3);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

/* Gradient Overlay on Hover */
.reach-hex-shape::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.8) 0%, rgba(192, 1, 251, 0.8) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

/* Glowing Border Effect */
.reach-hex-shape::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
  filter: blur(15px);
}

.reach-hex-card:hover .reach-hex-shape {
  transform: translateY(-15px) scale(1.05);
  border-color: transparent;
  box-shadow: 0 30px 80px rgba(12, 145, 234, 0.6);
}

.reach-hex-card:hover .reach-hex-shape::before {
  opacity: 1;
}

.reach-hex-card:hover .reach-hex-shape::after {
  opacity: 1;
}

/* Hexagon Inner Content */
.reach-hex-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  z-index: 2;
}

/* Text Wrapper with Flexbox */
.reach-hex-text {
  width: 100%;
}

/* Hexagon Title */
.reach-hex-title {
  letter-spacing: 0.3px;
  line-height: 1.3;
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}

.reach-hex-card:hover .reach-hex-title {
  color: var(--whiteColor);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Hexagon Description */
.reach-hex-desc {
  opacity: 0.8;
  line-height: 1.5;
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}

.reach-hex-card:hover .reach-hex-desc {
  opacity: 1;
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

/* Step Number */
.reach-hex-number {
  position: absolute;
  top: clamp(-12px, -1.8vw, -18px);
  right: clamp(-12px, -1.8vw, -18px);
  width: clamp(45px, 5.5vw, 55px);
  height: clamp(45px, 5.5vw, 55px);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--whiteColor);
  box-shadow: 0 5px 20px rgba(12, 145, 234, 0.6);
  border: 3px solid var(--darkBgSecondary);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 20;
}

.reach-hex-card:hover .reach-hex-number {
  transform: scale(1.25) rotate(360deg);
  box-shadow: 0 10px 40px rgba(12, 145, 234, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Hexagon Icon */
.reach-hex-icon {
  width: clamp(70px, 8.5vw, 85px);
  height: clamp(70px, 8.5vw, 85px);
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.2) 0%, rgba(192, 1, 251, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(12, 145, 234, 0.4);
  position: relative;
  z-index: 3;
}

/* Glowing Ring Effect */
.reach-hex-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle, rgba(12, 145, 234, 0.6) 0%, rgba(192, 1, 251, 0.6) 50%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
  filter: blur(20px);
  animation: none;
}

.reach-hex-icon i {
  font-size: clamp(30px, 4vw, 38px);
  color: var(--whiteColor);
  filter: drop-shadow(0 2px 8px rgba(12, 145, 234, 0.4));
  transition: all 0.6s ease;
}

.reach-hex-card:hover .reach-hex-icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.2);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
}

.reach-hex-card:hover .reach-hex-icon::before {
  opacity: 1;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.reach-hex-card:hover .reach-hex-icon i {
  -webkit-text-fill-color: var(--whiteColor);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
  transform: scale(1.1);
}

/* Hexagon Title */
.reach-hex-title {
  letter-spacing: 0.3px;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}

.reach-hex-card:hover .reach-hex-title {
  color: var(--whiteColor);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Hexagon Description */
.reach-hex-desc {
  opacity: 0.8;
  line-height: 1.5;
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}

.reach-hex-card:hover .reach-hex-desc {
  opacity: 1;
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .reach-hex-card {
    width: clamp(200px, 35vw, 260px);
  }
}

@media (max-width: 768px) {
  .reach-engage-section {
    overflow: visible;
    padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem, 10vw, 6rem) 0;
  }

  .reach-hexagon-container {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .reach-hex-row {
    flex-wrap: wrap;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    justify-content: center;
  }

  .reach-hex-row-2 {
    max-width: 100%;
  }

  .reach-hex-card {
    width: calc(50% - 1rem);
    min-width: 150px;
    max-width: 170px;
  }

  .reach-hex-shape {
    padding-bottom: 115%;
  }

  .reach-hex-inner {
    width: 88%;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    padding: clamp(1rem, 2vw, 1.25rem) 0px;
  }

  .reach-hex-icon {
    width: clamp(45px, 10vw, 55px);
    height: clamp(45px, 10vw, 55px);
    margin-bottom: clamp(0.25rem, 0.5vw, 0.5rem);
  }

  .reach-hex-icon i {
    font-size: clamp(20px, 4vw, 26px);
  }

  .reach-hex-number {
    width: clamp(35px, 8vw, 42px);
    height: clamp(35px, 8vw, 42px);
    font-size: clamp(13px, 3vw, 15px);
    top: clamp(-8px, -1.5vw, -10px);
    right: clamp(-8px, -1.5vw, -10px);
  }

  .reach-hex-title {
    font-size: clamp(13px, 3.5vw, 16px) !important;
    line-height: 1.3 !important;
  }

  .reach-hex-desc {
    font-size: clamp(9px, 2.2vw, 12px) !important;
    opacity: 0.9;
    margin-bottom: 16px !important;
  }
}

/* Contact CTA Section - New Design */
.contact-cta-section {
  background: var(--darkBgSecondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.contact-cta-gradient-bg {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 30% 50%, rgba(12, 145, 234, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(192, 1, 251, 0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.contact-cta-section .container {
  z-index: 2;
}

/* CTA Wrapper */
.cta-wrapper {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
  border: 1px solid rgba(12, 145, 234, 0.3);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.7);
}

/* Decorative Circles */
.cta-circle-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(12, 145, 234, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -150px;
  right: -100px;
  filter: blur(60px);
  z-index: 0;
}

.cta-circle-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(192, 1, 251, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -100px;
  left: -80px;
  filter: blur(60px);
  z-index: 0;
}

/* Left Content Box */
.cta-content-box {
  padding: clamp(2.5rem, 5vw, 3rem);
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.05) 0%, rgba(192, 1, 251, 0.05) 100%);
  border-right: 1px solid rgba(12, 145, 234, 0.2);
}

/* Badge */
.cta-badge {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  padding: clamp(0.5rem, 1vw, 0.625rem) clamp(12px, 2vw, 1rem);
  border-radius: 50px;
  color: var(--whiteColor);
  width: fit-content;
  box-shadow: 0 4px 20px rgba(12, 145, 234, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(12, 145, 234, 0.4);
  }

  50% {
    box-shadow: 0 6px 30px rgba(12, 145, 234, 0.6);
  }
}

.cta-badge i {
  color: var(--whiteColor);
}

/* Main Title */
.cta-main-title {
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.cta-main-desc {
  opacity: 0.85;
}

/* Feature Check */
.feature-check {
  width: clamp(28px, 3.5vw, 32px);
  height: clamp(28px, 3.5vw, 32px);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-check i {
  color: var(--whiteColor);
}

/* Right Form Box */
.cta-form-box {
  padding: clamp(2.5rem, 5vw, 3rem);
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.form-title {
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.form-subtitle {
  opacity: 0.85;
}

/* Form Inputs */
.cta-input {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(12, 145, 234, 0.25);
  border-radius: 12px;
  padding: clamp(0.875rem, 1.75vw, 1.125rem) clamp(1rem, 2vw, 1.25rem);
  color: var(--textcolor);
  transition: all 0.3s ease;
}

.cta-input::placeholder {
  color: var(--textLightColor);
  opacity: 0.7;
}

.cta-input:focus {
  background: rgba(26, 26, 26, 0.95);
  border-color: var(--themeColor);
  box-shadow: 0 0 0 3px rgba(12, 145, 234, 0.15);
  outline: none;
  color: var(--whiteColor);
}
input[type="date"],
input[type="time"] {
    color-scheme: light;   /* modern solution */
}

/* Chrome / Edge ke liye */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}
/* Select Dropdown */
select.cta-input {
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  background-image: none;
  padding-right: clamp(2rem, 3vw, 2.5rem);
}

select.cta-input option {
  background: var(--darkBgPrimary);
  color: var(--textcolor);
  padding: 0.5rem;
}

/* Submit Button */
.btn-cta-submit {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  background-size: 200% 200%;
  color: var(--whiteColor);
  border: none;
  border-radius: 12px;
  padding: clamp(1rem, 2vw, 1.25rem);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 30px rgba(12, 145, 234, 0.5);
  animation: btnGradient 3s ease infinite;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.btn-cta-submit i {
  transition: transform 0.3s ease;
}

.btn-cta-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(12, 145, 234, 0.7);
  animation: none;
  background-position: 100% 50%;
}

.btn-cta-submit:hover i {
  transform: translateX(5px);
}

.btn-cta-submit:active {
  transform: translateY(-1px);
}

.form-note {
  opacity: 0.7;
}

.form-note i {
  color: var(--themeColor);
}

/* Responsive */
@media (max-width: 767px) {
  .cta-content-box {
    border-right: none;
    border-bottom: 1px solid rgba(12, 145, 234, 0.2);
  }

  .cta-content-box,
  .cta-form-box {
    padding: clamp(2rem, 4vw, 2.5rem);
  }
}


/* About us page */

.about-hero-section {
  background: var(--darkBgSecondary);
  min-height: 80vh;
  padding: clamp(3rem, 10vw, 5rem) 0;
}

.about-bg-image {
  background-image: url('../images/png/about-banner-img.png');
}

.about-hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.2;
}

.about-hero-gradient-text {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-subtitle {
  opacity: 0.9;
}


/* About Content Section */
.about-content-section {
  background: var(--darkBgSecondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.about-content-gradient {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 20% 50%, rgba(12, 145, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(192, 1, 251, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.about-content-section .container {
  z-index: 2;
}

.about-content-title {
  line-height: 1.3;
}

.btn-about-cta {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  background-size: 200% 200%;
  color: var(--whiteColor);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 30px rgba(12, 145, 234, 0.4);
  border: none;
  animation: btnGradient 3s ease infinite;
}

.btn-about-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(12, 145, 234, 0.6);
  color: var(--whiteColor);
  animation: none;
  background-position: 100% 50%;
}

.about-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
}

.about-image-glow {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.2) 0%, rgba(192, 1, 251, 0.2) 100%);
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.about-image-wrapper:hover .about-image-glow {
  opacity: 1;
}

.about-main-image {
  border-radius: 24px;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2;
}

.about-image-wrapper:hover .about-main-image {
  transform: scale(1.02);
}




/* Team Section */
.team-section {
  background: var(--darkBgPrimary);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.team-gradient {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 30% 50%, rgba(12, 145, 234, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(192, 1, 251, 0.06) 0%, transparent 60%);
  z-index: 1;
}

.team-section .container {
  z-index: 2;
}

.team-stat-box {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(36, 36, 36, 0.8) 100%);
  border: 1px solid rgba(12, 145, 234, 0.2);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2rem);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-stat-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.15) 0%, rgba(192, 1, 251, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
  z-index: -1;
}

.team-stat-box:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(12, 145, 234, 0.5);
  box-shadow: 0 20px 50px rgba(12, 145, 234, 0.3);
}

.team-stat-box:hover::before {
  opacity: 1;
}

.stat-number {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-desc-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(12, 145, 234, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.team-desc-card:hover {
  border-color: rgba(12, 145, 234, 0.4);
  box-shadow: 0 30px 80px rgba(12, 145, 234, 0.3);
}

.team-desc-deco {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(192, 1, 251, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  filter: blur(60px);
  z-index: 0;
}

.team-desc-image-box {
  border-radius: 24px 0 0 24px;
  overflow: hidden;
}

.team-desc-image-box img {
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-desc-card:hover .team-desc-image-box img {
  transform: scale(1.1);
}

.team-desc-content {
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

/* Goals Section */
.goals-section {
  background: var(--darkBgSecondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.goals-gradient {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 50%, rgba(12, 145, 234, 0.05) 0%, transparent 60%);
  z-index: 1;
}

.goals-section .container {
  z-index: 2;
}

.mission-card,
.goals-card {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  border: 1px solid rgba(12, 145, 234, 0.25);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.mission-card:hover,
.goals-card:hover {
  transform: translateY(-10px);
  border-color: rgba(12, 145, 234, 0.5);
  box-shadow: 0 25px 70px rgba(12, 145, 234, 0.3);
}

.mission-icon-bg,
.goals-icon-bg {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(12, 145, 234, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  filter: blur(50px);
  z-index: 0;
}

.mission-content,
.goals-content {
  z-index: 1;
}

.mission-icon-wrapper,
.goals-icon-wrapper {
  width: clamp(60px, 8vw, 70px);
  height: clamp(60px, 8vw, 70px);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.mission-icon-wrapper i,
.goals-icon-wrapper i {
  font-size: clamp(28px, 4vw, 34px);
  color: var(--whiteColor);
}

.mission-card:hover .mission-icon-wrapper,
.goals-card:hover .goals-icon-wrapper {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(12, 145, 234, 0.5);
}

.mission-divider {
  width: clamp(60px, 10vw, 80px);
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 2px;
}

.goals-check-icon {
  width: clamp(24px, 3.5vw, 28px);
  height: clamp(24px, 3.5vw, 28px);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.goals-check-icon i {
  font-size: clamp(12px, 2vw, 14px);
  color: var(--whiteColor);
}

.btn-goals-cta {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  background-size: 200% 200%;
  color: var(--whiteColor);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 30px rgba(12, 145, 234, 0.4);
  border: none;
  animation: btnGradient 3s ease infinite;
}

.btn-goals-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(12, 145, 234, 0.6);
  color: var(--whiteColor);
  animation: none;
  background-position: 100% 50%;
}


/* Story Section */
.story-section {
  background: var(--darkBgPrimary);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.story-gradient {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 50%, rgba(12, 145, 234, 0.04) 0%, transparent 60%);
  z-index: 1;
}

.story-section .container {
  z-index: 2;
}

.story-divider {
  width: clamp(80px, 12vw, 100px);
  height: 4px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 2px;
}

.story-text-content p {
  text-align: justify;
}

/* Believe Section */
.believe-section {
  background: var(--darkBgSecondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.believe-gradient {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 30% 50%, rgba(192, 1, 251, 0.04) 0%, transparent 60%);
  z-index: 1;
}

.believe-section .container {
  z-index: 2;
}

.believe-divider {
  width: clamp(80px, 12vw, 100px);
  height: 4px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 2px;
}

.believe-item {
  padding-left: clamp(1.5rem, 3vw, 2rem);
  border-left: 2px solid rgba(12, 145, 234, 0.3);
  transition: all 0.3s ease;
}

.believe-item:hover {
  border-left-color: var(--themeColor);
  padding-left: clamp(2rem, 4vw, 2.5rem);
}

.believe-number {
  font-weight: 700;
  margin-right: clamp(0.5rem, 1vw, 0.75rem);
}

/* Approach Section */
.approach-section {
  background: var(--darkBgPrimary);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.approach-gradient {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 70% 50%, rgba(12, 145, 234, 0.04) 0%, transparent 60%);
  z-index: 1;
}

.approach-section .container {
  z-index: 2;
}

.approach-divider {
  width: clamp(80px, 12vw, 100px);
  height: 4px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 2px;
}

.approach-text-block {
  position: relative;
  padding-left: clamp(1.5rem, 3vw, 2rem);
}

.approach-text-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 2px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.approach-text-block:hover::before {
  opacity: 1;
}


/* Testimonials Section */
.testimonials-section {
  background: var(--darkBgSecondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.testimonials-gradient {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 50%, rgba(12, 145, 234, 0.05) 0%, transparent 60%);
  z-index: 1;
}

.testimonials-section .container {
  z-index: 2;
}

.testimonials-divider {
  width: clamp(80px, 12vw, 100px);
  height: 4px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 2px;
}

.testimonials-slider-wrapper {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.testimonials-slider {
  animation: slideTestimonials 30s linear infinite;
  width: max-content;
}

.testimonials-slider:hover {
  animation-play-state: paused;
}

@keyframes slideTestimonials {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  border: 1px solid rgba(12, 145, 234, 0.2);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 2.5rem);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  width: clamp(320px, 40vw, 400px);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(12, 145, 234, 0.5);
  box-shadow: 0 5px 30px rgba(12, 145, 234, 0.3);
}

.testimonial-quote-icon {
  top: -10px;
  right: 20px;
  font-size: clamp(60px, 8vw, 80px);
  color: rgba(12, 145, 234, 0.1);
  z-index: 0;
}

.testimonial-content {
  z-index: 1;
}

.testimonial-rating i {
  font-size: clamp(14px, 2vw, 16px);
  margin-right: 2px;
}

.author-avatar {
  width: clamp(50px, 7vw, 60px);
  height: clamp(50px, 7vw, 60px);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.author-avatar i {
  font-size: clamp(24px, 3.5vw, 28px);
  color: var(--whiteColor);
}

/* About CTA Section */
.about-cta-section {
  background: var(--darkBgPrimary);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.about-cta-gradient {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 30% 50%, rgba(12, 145, 234, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(192, 1, 251, 0.08) 0%, transparent 60%);
  z-index: 1;
}

.about-cta-section .container {
  z-index: 2;
}

.btn-about-cta-primary {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  background-size: 200% 200%;
  color: var(--whiteColor);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 30px rgba(12, 145, 234, 0.4);
  border: none;
  animation: btnGradient 3s ease infinite;
}

.btn-about-cta-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(12, 145, 234, 0.6);
  color: var(--whiteColor);
  animation: none;
  background-position: 100% 50%;
}

.btn-about-cta-secondary {
  background: transparent;
  color: var(--themeColor);
  border-radius: 50px;
  border: 2px solid var(--themeColor);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-about-cta-secondary:hover {
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  color: var(--whiteColor);
  border-color: transparent;
  box-shadow: 0 15px 40px rgba(12, 145, 234, 0.6);
}

/* Common Reusable Classes for All Sections */

/* Section Background Gradient */
.section-bg-gradient {
  background: radial-gradient(circle at 30% 20%, rgba(12, 145, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(192, 1, 251, 0.1) 0%, transparent 50%);
  z-index: 0;
}

/* Floating Shapes */
.section-shape-1 {
  width: clamp(400px, 50vw, 600px);
  height: clamp(400px, 50vw, 600px);
  background: radial-gradient(circle, rgba(12, 145, 234, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: clamp(-150px, -20vw, -200px);
  right: clamp(-100px, -15vw, -150px);
  filter: blur(clamp(60px, 10vw, 100px));
  z-index: 0;
  animation: shapeFloat1 12s ease-in-out infinite;
}

.section-shape-2 {
  width: clamp(350px, 45vw, 550px);
  height: clamp(350px, 45vw, 550px);
  background: radial-gradient(circle, rgba(192, 1, 251, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  bottom: clamp(-120px, -18vw, -180px);
  left: clamp(-80px, -12vw, -120px);
  filter: blur(clamp(60px, 10vw, 100px));
  z-index: 0;
  animation: shapeFloat2 15s ease-in-out infinite;
}

/* Local SEO Welcome Section - Premium Design */
.local-seo-bg-image {
  background-image: url('../images/png/local-seo-banner-img.png');
}

.local-seo-welcome-section {
  background: var(--darkBgSecondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.local-seo-premium-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
  border: 1px solid rgba(12, 145, 234, 0.3);
  border-radius: clamp(24px, 3vw, 32px);
  padding: clamp(2rem, 6vw, 4rem) clamp(2rem, 5vw, 4rem);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 clamp(20px, 4vw, 40px) clamp(60px, 10vw, 100px) rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(12, 145, 234, 0.1) inset;
  z-index: 2;
  transition: all 0.5s ease;
}

.local-seo-premium-card:hover {
  border-color: rgba(12, 145, 234, 0.5);
  box-shadow: 0 clamp(25px, 5vw, 50px) clamp(80px, 12vw, 120px) rgba(12, 145, 234, 0.2),
    0 0 0 1px rgba(12, 145, 234, 0.2) inset;
}

.local-seo-card-glow {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.05) 0%, rgba(192, 1, 251, 0.05) 100%);
  border-radius: clamp(24px, 3vw, 32px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.local-seo-premium-card:hover .local-seo-card-glow {
  opacity: 1;
}

.local-seo-card-content {
  z-index: 1;
}

.local-seo-badge-dot {
  width: clamp(8px, 1vw, 10px);
  height: clamp(8px, 1vw, 10px);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 0 0 clamp(10px, 2vw, 15px) rgba(12, 145, 234, 0.6);
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 clamp(10px, 2vw, 15px) rgba(12, 145, 234, 0.6);
  }

  50% {
    transform: scale(1.2);
    box-shadow: 0 0 clamp(15px, 3vw, 20px) rgba(12, 145, 234, 0.8);
  }
}

.local-seo-badge-text {
  letter-spacing: clamp(1.5px, 0.2vw, 2.5px);
  text-shadow: 0 0 clamp(10px, 2vw, 15px) rgba(12, 145, 234, 0.5);
}

.local-seo-brand {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.local-seo-brand::after {
  content: '';
  position: absolute;
  bottom: clamp(-4px, -0.5vw, -6px);
  left: 0;
  width: 100%;
  height: clamp(3px, 0.4vw, 4px);
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 2px;
  box-shadow: 0 0 clamp(8px, 1.5vw, 12px) rgba(12, 145, 234, 0.6);
}

.local-seo-description {
  opacity: 0.9;
}


/* What is Local SEO Section - Premium Design */
.what-local-seo-section {
  background: var(--darkBgPrimary);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.what-local-seo-section .container {
  z-index: 2;
}

.what-local-seo-content {
  z-index: 2;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.what-local-seo-highlight {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.what-local-seo-image-wrapper {
  z-index: 2;
}

.what-local-seo-image-glow {
  top: clamp(-10px, -2vw, -20px);
  left: clamp(-10px, -2vw, -20px);
  right: clamp(-10px, -2vw, -20px);
  bottom: clamp(-10px, -2vw, -20px);
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.3) 0%, rgba(192, 1, 251, 0.3) 100%);
  border-radius: clamp(20px, 3vw, 30px);
  filter: blur(clamp(20px, 4vw, 30px));
  opacity: 0.6;
  z-index: 0;
}

.what-local-seo-image {
  border-radius: clamp(20px, 3vw, 30px);
  box-shadow: 0 clamp(20px, 4vw, 40px) clamp(60px, 10vw, 100px) rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
  z-index: 1;
}

.what-local-seo-image:hover {
  transform: translateY(clamp(-8px, -1.5vw, -12px));
  box-shadow: 0 clamp(25px, 5vw, 50px) clamp(80px, 12vw, 120px) rgba(12, 145, 234, 0.3);
}


/* Data Insights Section - Premium Design */
.data-insights-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.data-insights-highlight {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  display: inline;
}

.data-insight-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
  border: 1px solid rgba(12, 145, 234, 0.2);
  border-radius: clamp(16px, 2.5vw, 20px);
  padding: clamp(1.5rem, 3vw, 2rem);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 clamp(10px, 2vw, 15px) clamp(30px, 5vw, 50px) rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.data-insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(4px, 0.5vw, 6px);
  height: 100%;
  background: linear-gradient(180deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: clamp(16px, 2.5vw, 20px) 0 0 clamp(16px, 2.5vw, 20px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.data-insight-card::after {
  content: '';
  position: absolute;
  top: clamp(-50px, -8vw, -80px);
  right: clamp(-50px, -8vw, -80px);
  width: clamp(100px, 15vw, 150px);
  height: clamp(100px, 15vw, 150px);
  background: radial-gradient(circle, rgba(12, 145, 234, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.data-insight-card:hover::before {
  opacity: 1;
}

.data-insight-card:hover::after {
  top: clamp(-40px, -6vw, -60px);
  right: clamp(-40px, -6vw, -60px);
  background: radial-gradient(circle, rgba(12, 145, 234, 0.25) 0%, transparent 70%);
}

.data-card-glow {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.08) 0%, rgba(192, 1, 251, 0.08) 100%);
  border-radius: clamp(16px, 2.5vw, 20px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.data-insight-card:hover {
  transform: translateY(clamp(-8px, -1.5vw, -12px));
  border-color: rgba(12, 145, 234, 0.5);
  box-shadow: 0 clamp(15px, 3vw, 25px) clamp(50px, 8vw, 80px) rgba(12, 145, 234, 0.3);
}

.data-insight-card:hover .data-card-glow {
  opacity: 1;
}

.data-card-content {
  z-index: 1;
  gap: clamp(1rem, 2vw, 1.25rem);
}


/* Why Your Business Needs Local SEO Section - Premium Design */
.why-local-seo-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.why-local-seo-section .container {
  z-index: 2;
}

.why-local-seo-highlight {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  display: inline;
}

.why-benefit-card {
  background: linear-gradient(135deg, rgba(30, 35, 45, 0.95) 0%, rgba(20, 25, 35, 0.98) 100%);
  border-radius: clamp(20px, 3vw, 28px);
  padding: clamp(2rem, 4vw, 2.5rem);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  box-shadow: 0 clamp(8px, 2vw, 12px) clamp(24px, 5vw, 40px) rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.benefit-card-border {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: clamp(20px, 3vw, 28px);
  padding: 2px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.benefit-card-glow {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(12, 145, 234, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(clamp(40px, 8vw, 60px));
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.why-benefit-card:hover {
  transform: translateY(clamp(-12px, -2vw, -16px)) scale(1.02);
  box-shadow: 0 clamp(20px, 4vw, 30px) clamp(60px, 10vw, 100px) rgba(12, 145, 234, 0.25),
    0 0 clamp(30px, 6vw, 50px) rgba(192, 1, 251, 0.15);
}

.why-benefit-card:hover .benefit-card-border {
  opacity: 1;
}

.why-benefit-card:hover .benefit-card-glow {
  opacity: 1;
}

.benefit-card-content {
  z-index: 1;
}

.benefit-icon-wrapper {
  width: clamp(60px, 10vw, 75px);
  height: clamp(60px, 10vw, 75px);
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.2) 0%, rgba(192, 1, 251, 0.2) 100%);
  border-radius: 50%;
  position: relative;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 0 clamp(8px, 1.5vw, 12px) rgba(12, 145, 234, 0.1);
}

.benefit-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: clamp(-4px, -0.8vw, -6px);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 50%;
  opacity: 0;
  filter: blur(clamp(12px, 2vw, 18px));
  transition: opacity 0.6s ease;
  z-index: -1;
}

.benefit-icon-wrapper i {
  font-size: clamp(24px, 4vw, 32px);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.6s ease;
}

.why-benefit-card:hover .benefit-icon-wrapper {
  box-shadow: 0 0 0 clamp(12px, 2vw, 16px) rgba(12, 145, 234, 0.4),
    0 0 clamp(30px, 5vw, 50px) rgba(192, 1, 251, 0.3);
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.3) 0%, rgba(192, 1, 251, 0.3) 100%);
}

.why-benefit-card:hover .benefit-icon-wrapper::before {
  opacity: 1;
}

.why-benefit-card:hover .benefit-icon-wrapper i {
  filter: drop-shadow(0 0 clamp(8px, 1.5vw, 12px) rgba(12, 145, 234, 0.8));
}

.why-benefit-card h3 {
  transition: all 0.4s ease;
}

.why-benefit-card:hover h3 {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* Local SEO Services Section */
.local-seo-services-section {
  background: var(--darkBgPrimary);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.local-seo-services-section .container {
  z-index: 2;
}


.service-box {
  background: linear-gradient(135deg, rgba(40, 35, 30, 0.4) 0%, rgba(35, 30, 25, 0.5) 100%);
  border-radius: clamp(12px, 2vw, 16px);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 0.4s ease;
  min-height: clamp(140px, 20vw, 180px);
}

.service-box:hover {
  background: linear-gradient(135deg, rgba(45, 40, 35, 0.5) 0%, rgba(40, 35, 30, 0.6) 100%);
  transform: translateY(clamp(-4px, -1vw, -6px));
}

.service-box h3 {
  transition: color 0.3s ease;
}

.service-box:hover h3 {
  color: var(--themeColor);
}

/* Why Choose Pixel Nova Section */
.why-choose-pixelnova-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.why-choose-pixelnova-section .container {
  z-index: 2;
}

.choose-feature-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(36, 36, 36, 0.5) 100%);
  border-radius: clamp(16px, 2.5vw, 20px);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(12, 145, 234, 0.15);
  transition: all 0.4s ease;
  overflow: hidden;
}

.choose-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.choose-feature-card:hover::before {
  transform: scaleX(1);
}

.choose-feature-card:hover {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(36, 36, 36, 0.7) 100%);
  border-color: rgba(12, 145, 234, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(12, 145, 234, 0.2);
}

.choose-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
  transition: opacity 0.4s ease;
}

.choose-feature-card:hover .choose-number {
  opacity: 0.3;
}

.choose-feature-card h3 {
  transition: color 0.3s ease;
}

.choose-feature-card:hover h3 {
  color: var(--themeColor);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .why-choose-pixelnova-section {
    padding: clamp(3rem, 6vw, 4rem) 0;
  }
}

/* Why We Must Work Together Section */
.work-together-section {
  background: var(--darkBgPrimary);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.work-bg-overlay {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 50%, rgba(12, 145, 234, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.work-together-section .container {
  z-index: 2;
}

.work-divider {
  width: clamp(80px, 10vw, 100px);
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--themeColor) 50%, transparent 100%);
}

.work-gradient-line {
  width: clamp(100px, 12vw, 120px);
  height: 4px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  border-radius: 2px;
}

.work-description-box {
  max-width: 800px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(26, 26, 26, 0.3);
  border-radius: clamp(12px, 2vw, 16px);
  border-left: 3px solid var(--themeColor);
}

.work-feature-item {
  padding: clamp(1rem, 2vw, 1rem);
  border-radius: clamp(8px, 1.5vw, 12px);
  border: 1px solid transparent;
  background: linear-gradient(var(--darkBgPrimary), var(--darkBgPrimary)) padding-box,
    linear-gradient(90deg, var(--themeColor) 0%, var(--primaryColor) 50%, var(--themeColor) 100%) border-box;
  background-size: 100% 100%, 200% 100%;
  animation: borderRotate 3s linear infinite;
  transition: all 0.3s ease;
}

@keyframes borderRotate {
  0% {
    background-position: 0% 0%, 0% 0%;
  }

  100% {
    background-position: 0% 0%, 200% 0%;
  }
}

.work-feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(12, 145, 234, 0.15);
}

.work-icon-circle {
  height: clamp(20px, 3.5vw, 24px);
  background: var(--themeColor);
  border-radius: 50%;
  transition: all 0.3s ease;
  aspect-ratio: 1;
}

.work-icon-circle i {
  color: var(--whiteColor);
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 700;
}

.work-feature-item:hover .work-icon-circle {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 0 15px rgba(12, 145, 234, 0.5);
}

/* bg images */
.google-adds-bg-image {
  background-image: url('../images/png/gogle-adds-banner-img.png');
}

.web-design-bg-image {
  background-image: url('../images/png/web-design-banner-img.png');
}

.meta-adss-bg-image {
  background-image: url('../images/png/meta-adds-banner-img.png');
}

.content-marketing-bg-image {
  background-image: url('../images/png/media-marketing-banner-img.png');
}

.influencer-marketing-bg-image {
  background-image: url('../images/png/influencer-marketing-bg-img.png');
}

.blogs-bg-image {
  background-image: url('../images/png/blogs-banner-img.png');
}

/*   Blog Section */

/* Blog Section - Premium Dark Theme */
.blog-section {
  background: var(--darkBgPrimary);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.blog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(12, 145, 234, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(192, 1, 251, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.blog-section .container {
  z-index: 2;
}

.blog-item {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(36, 36, 36, 0.8) 100%);
  border: 1px solid rgba(12, 145, 234, 0.2);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.blog-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.1) 0%, rgba(192, 1, 251, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 16px;
  z-index: 0;
}

.blog-item:hover {
  transform: translateY(-8px);
  border-color: rgba(12, 145, 234, 0.5);
  box-shadow: 0 16px 48px rgba(12, 145, 234, 0.3), 0 0 0 1px rgba(12, 145, 234, 0.3);
}

.blog-item:hover::before {
  opacity: 1;
}

.blog-image {
  width: 100%;
  height: clamp(160px, 20vw, 200px);
  z-index: 1;
}

.blog-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 15, 0.6) 100%);
  opacity: 0.7;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.blog-item:hover .blog-image::after {
  opacity: 0.4;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-item:hover .blog-image img {
  transform: scale(1.15);
}

.blog-content {
  padding: clamp(0.875rem, 2vw, 1.25rem);
  gap: clamp(0.5rem, 1vw, 0.75rem);
  flex: 1;
  z-index: 1;
}

.blog-title {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 600;
  color: var(--textcolor);
  line-height: 1.4;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-item:hover .blog-title {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-date {
  font-size: clamp(0.75rem, 1.2vw, 0.8125rem);
  color: var(--textLightColor);
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.blog-date i {
  font-size: 13px;
  color: var(--themeColor);
}

.blog-item:hover .blog-date {
  color: var(--textcolor);
}

.blog-excerpt {
  font-size: clamp(0.8125rem, 1.3vw, 0.875rem);
  color: var(--textLightColor);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.blog-item:hover .blog-excerpt {
  opacity: 1;
}

.blog-btn {
  gap: 0.5rem;
  padding: clamp(0.5rem, 1vw, 0.625rem) clamp(1rem, 2vw, 1.25rem);
  background: transparent;
  color: var(--themeColor);
  font-size: clamp(0.8125rem, 1.3vw, 0.875rem);
  font-weight: 600;
  border: 2px solid rgba(12, 145, 234, 0.3);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.blog-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  transition: width 0.4s ease;
  z-index: -1;
}

.blog-btn:hover {
  color: var(--whiteColor);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(12, 145, 234, 0.4);
}

.blog-btn:hover::before {
  width: 100%;
}

.blog-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.blog-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/*  CAREER PAGE */
.career-bg-image {
  background-image: url('../images/png/career-banner-img.png');
}

.career-section {
  background: var(--darkBgPrimary);
}

.career-form-box {
  background: var(--darkBgSecondary);
  border-radius: clamp(20px, 3vw, 24px);
  border: 1px solid var(--borderDark);
  padding: clamp(24px, 5vw, 40px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.career-form-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(12, 145, 234, 0.15);
  border-color: rgba(12, 145, 234, 0.3);
}

.career-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--borderDark);
  border-radius: clamp(10px, 1.5vw, 12px);
  padding: clamp(14px, 2vw, 16px) clamp(16px, 2.5vw, 20px);
  color: var(--textcolor);
  transition: all 0.3s ease;
}

.career-input:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--themeColor);
  box-shadow: 0 0 0 3px rgba(12, 145, 234, 0.1);
  outline: none;
   color: var(--textcolor);
}

.career-input::placeholder {
  color: var(--textLightColor);
}

.form-select.career-input {
  background-color: rgba(255, 255, 255, 0.03);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23999' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  color: var(--textcolor);
  border: 1px solid var(--borderDark);
}

.form-select.career-input:focus {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--themeColor);
  box-shadow: 0 0 0 3px rgba(12, 145, 234, 0.1);
}

.form-select.career-input option {
  background: var(--darkBgSecondary);
  color: var(--textcolor);
}

.career-file-upload {
  width: 100%;
}

.file-input-hidden {
  display: none;
}

.career-file-label {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--borderDark);
  border-radius: clamp(10px, 1.5vw, 12px);
  cursor: pointer;
  transition: all 0.3s ease;
  display: table;
  width: 100%;
}

.career-file-label:hover {
  border-color: var(--themeColor);
  background: rgba(255, 255, 255, 0.05);
}

.career-file-btn {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  color: #fff;
  padding: clamp(14px, 2vw, 16px) clamp(20px, 3vw, 28px);
  border-radius: clamp(10px, 1.5vw, 12px) 0 0 clamp(10px, 1.5vw, 12px);
  transition: all 0.3s ease;
  white-space: nowrap;
  display: table-cell;
  vertical-align: middle;
}

.career-file-label:hover .career-file-btn {
  background: linear-gradient(135deg, var(--primaryColor) 0%, var(--themeColor) 100%);
  box-shadow: 0 4px 15px rgba(12, 145, 234, 0.3);
}

.career-file-name {
  padding: clamp(14px, 2vw, 16px) clamp(16px, 2.5vw, 20px);
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.career-submit-btn {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--primaryColor) 100%);
  color: #fff;
  border: none;
  padding: clamp(16px, 2.5vw, 18px) clamp(28px, 4vw, 32px);
  border-radius: clamp(10px, 1.5vw, 12px);
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 8px 25px rgba(12, 145, 234, 0.3);
}

.career-submit-btn:hover {
  transform: translateY(clamp(-2px, -0.5vw, -3px));
  box-shadow: 0 12px 35px rgba(12, 145, 234, 0.5);
  background: linear-gradient(135deg, var(--primaryColor) 0%, var(--themeColor) 100%);
}

.career-submit-btn:active {
  transform: translateY(-1px);
}

.career-info-box {
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.05) 0%, rgba(192, 1, 251, 0.05) 100%);
  border-radius: clamp(20px, 3vw, 24px);
  border: 1px solid var(--borderDark);
  padding: clamp(24px, 5vw, 40px);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.career-info-box:hover {
  border-color: rgba(12, 145, 234, 0.3);
  box-shadow: 0 20px 60px rgba(12, 145, 234, 0.1);
}

.career-qual-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: clamp(10px, 1.5vw, 12px);
  border: 1px solid var(--borderDark);
  padding: clamp(14px, 2vw, 16px) clamp(16px, 2.5vw, 20px);
  transition: all 0.3s ease;
  display: inline-block;
  width: 100%;
}

.career-qual-item span {
  vertical-align: middle;
}

.career-qual-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--themeColor);
  transform: translateX(clamp(4px, 1vw, 8px));
  box-shadow: 0 4px 15px rgba(12, 145, 234, 0.2);
}

/*  Contact Section  */
.contact-bg-image {
  background-image: url('../images/png/contact-banner-img.png');
}

.contact-content-section {
  position: relative;
}

.contact-gradient {
  background: linear-gradient(180deg, var(--darkBgPrimary) 0%, var(--darkBgSecondary) 100%);
  z-index: 0;
}

.contact-heading {
  line-height: 1.3;
  font-size: clamp(1.5rem, 4vw, 2.625rem);
}

.contact-info-item {
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateX(5px);
}

.contact-icon-box {
  width: clamp(2.5rem, 5vw, 2.8125rem);
  height: clamp(2.5rem, 5vw, 2.8125rem);
  min-width: clamp(2.5rem, 5vw, 2.8125rem);
  background: linear-gradient(135deg, var(--themeColor), var(--primaryColor));
  border-radius: 12px;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  box-shadow: 0 4px 15px rgba(12, 145, 234, 0.3);
}

.contact-link-text {
  transition: all 0.3s ease;
}

.contact-link-text:hover {
  color: var(--themeColor);
}

.contact-social-box {
  border-top: 1px solid var(--borderDark);
}

.instagram-link {
  padding: clamp(0.625rem, 2vw, 0.75rem) clamp(1.25rem, 3vw, 1.5rem);
  background: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.instagram-link i {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.instagram-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
}

.contact-form-wrapper {
  background: var(--darkBgSecondary);
  border: 1px solid var(--borderDark);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-heading {
  line-height: 1.5;
  font-size: clamp(1rem, 3vw, 1.5rem);
}

.heading-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor), var(--primaryColor));
}


/* ===================================
   Blog Detail Page Styles
   =================================== */
.blogs-inner-bg-image {
  background-image: url('../images/png/blog-inner-banner-img.png');
}

.blog-detail-section {
  background: var(--darkBgPrimary);
}

.blog-featured-img {
  position: relative;
  overflow: hidden;
}

.blog-featured-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-featured-img:hover::before {
  opacity: 1;
}

.blog-featured-img img {
  transition: transform 0.6s ease;
}

.blog-featured-img:hover img {
  transform: scale(1.05);
}

textarea {
  resize: none;
}

.blog-strategy-box {
  background: linear-gradient(135deg, var(--darkBgSecondary) 0%, rgba(12, 145, 234, 0.03) 100%);
  border: 1px solid var(--borderDark);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.blog-strategy-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--themeColor), transparent);
  transition: left 0.6s ease;
}

.blog-strategy-box:hover::before {
  left: 100%;
}

.blog-strategy-box:hover {
  border-color: var(--themeColor);
  box-shadow: 0 8px 30px rgba(12, 145, 234, 0.15);
  transform: translateY(-2px);
}

.strategy-list li {
  line-height: 1.6;
  position: relative;
  padding-left: 8px;
  transition: padding-left 0.3s ease;
}

.strategy-list li:hover {
  padding-left: 12px;
}

.blog-full-content h2 {
  position: relative;
  padding-bottom: 12px;
}

.blog-full-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor), var(--primaryColor));
  border-radius: 2px;
}

/* Sidebar Widgets */
.sidebar-widget {
  background: linear-gradient(135deg, var(--darkBgSecondary) 0%, rgba(12, 145, 234, 0.02) 100%);
  border: 1px solid var(--borderDark);
  transition: all 0.3s ease;
}

.sidebar-widget:hover {
  border-color: rgba(12, 145, 234, 0.3);
  box-shadow: 0 4px 20px rgba(12, 145, 234, 0.1);
}

.widget-title {
  position: relative;
  padding-bottom: 12px;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor), var(--primaryColor));
  border-radius: 2px;
}

.category-link {
  color: var(--textLightColor);
  transition: all 0.3s ease;
  position: relative;
}

.category-link i {
  font-size: 6px;
  color: var(--themeColor);
  transition: all 0.3s ease;
}

.category-link:hover {
  color: var(--themeColor);
  padding-left: 8px;
}

.category-link:hover i {
  transform: scale(1.3);
}

/* Recent Posts */
.recent-post-img {
  width: 80px;
  height: 80px;
  min-width: 80px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.recent-post-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 145, 234, 0.4), rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.recent-post-item:hover .recent-post-img::before {
  opacity: 1;
}

.recent-post-img img {
  transition: transform 0.4s ease;
}

.recent-post-item:hover .recent-post-img img {
  transform: scale(1.1);
}

.recent-post-item {
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid transparent;
}

.recent-post-item:hover {
  background: var(--darkBgTertiary);
  border-color: var(--borderDark);
}

.recent-post-item:hover .recent-post-content h4 {
  color: var(--themeColor);
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta span {
  transition: color 0.3s ease;
}

.blog-meta span:hover {
  color: var(--themeColor);
}

/* Contact Modal */

.modal-content {
  background: linear-gradient(135deg, var(--darkBgSecondary) 0%, rgb(0 47 79) 100%);
  border: 1px solid var(--borderDark);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  width: 100%;
}

.modal-dialog {
  margin: 1rem auto;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 2rem);
}

.modal-close-btn {
  top: 1rem;
  right: 1rem;
  width: clamp(20px, 6vw, 34px);
  height: clamp(20px, 6vw, 34px);
  background: linear-gradient(135deg, var(--themeColor), var(--primaryColor));
  border: none;
  border-radius: 50%;
  color: var(--whiteColor);
  font-size: clamp(10px, 3vw, 16px);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 20px rgba(12, 145, 234, 0.4);
}

.modal-header-custom {
  padding: clamp(1.5rem, 5vw, 3rem) clamp(1rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--borderDark);
  position: relative;
}

.modal-header-custom::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(60px, 15vw, 80px);
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor), var(--primaryColor));
  border-radius: 2px;
}

.modal-title-custom {
  background: linear-gradient(135deg, var(--themeColor), var(--primaryColor));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(20px, 5vw, 28px);
}

.modal-subtitle {
  opacity: 0.8;
  font-size: clamp(12px, 3vw, 14px);
}

.modal-body-custom {
  padding: clamp(1rem, 4vw, 2.5rem);
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.85);
}

.modal.fade .modal-dialog {
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.modal.show .modal-dialog {
  transform: scale(1);
}

@media (max-width: 576px) {
  .modal-dialog {
    margin: 0.5rem auto;
    max-width: calc(100% - 1rem);
    min-height: calc(100vh - 1rem);
  }

  .modal-content {
    border-radius: 16px;
  }

  .modal-close-btn {
    top: 0.75rem;
    right: 0.75rem;
  }
}