/* ===== GLOBAL DESIGN TOKENS & UTILITIES ===== */
/* Dynamic CSS will be loaded from admin/includes/generate-dynamic-css.php */
@import url('../admin/includes/generate-dynamic-css.php');

:root {
  /* Color Palette - These will be overridden by dynamic CSS */
  --primary-green: #2CA65A;
  --primary-green-light: #bbf7d0;
  --primary-green-dark: #166534;
  --primary-blue: #1F6FBC;
  --primary-blue-light: #e0f2fe;
  --primary-blue-dark: #2563eb;
  --neutral-dark: #2D3748;
  --neutral-light: #F5F8FA;
  --secondary-accent: #087A74;
  --warm-accent: #F4A261;
  --optional-highlight: #9AE6B4;
  --primary-orange: #f59e42;
  --primary-pink: #ec4899;
  --primary-purple: #a21caf;
  --pastel-green: #bbf7d0;
  --pastel-blue: #dbeafe;
  --pastel-purple: #f3e8ff;
  
  /* Breakpoints */
  --breakpoint-xs: 480px;
  --breakpoint-sm: 600px;
  --breakpoint-md: 900px;
  --breakpoint-lg: 1200px;
  --breakpoint-xl: 1536px;
  
  /* Font Sizes */
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-md: 1.125rem;
  --font-lg: 1.25rem;
  --font-xl: 1.5rem;
  --font-2xl: 2rem;
  --font-3xl: 2.5rem;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
}

/* ===== BLOG CATEGORY BUTTONS ===== */
.blog-category-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
  position: relative;
  z-index: 10;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
}

.blog-category-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
  border-radius: 9999px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.blog-category-btn:hover::before {
  opacity: 1;
}

.blog-category-btn-active {
  background: var(--primary-green);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(34, 197, 94, 0.4);
  border-color: var(--primary-green);
}

.blog-category-btn-active:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px 0 rgba(34, 197, 94, 0.5);
}

.blog-category-btn-inactive {
  background: white;
  color: var(--primary-green);
  border-color: var(--primary-green);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}

.blog-category-btn-inactive:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px 0 rgba(34, 197, 94, 0.3);
  border-color: var(--primary-green);
}

.blog-category-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
}

.blog-category-btn:active {
  transform: translateY(0) scale(1.02);
}

/* Ensure buttons are always visible on hover */
.blog-category-btn:hover {
  z-index: 20;
  position: relative;
}

/* Utility classes for colors */
.bg-pastel-green { background: var(--pastel-green); }
.bg-pastel-blue { background: var(--pastel-blue); }
.bg-pastel-purple { background: var(--pastel-purple); }
.text-primary-purple { color: var(--primary-purple); }
.text-primary-blue { color: var(--primary-blue-dark); }
.bg-primary-purple { background: var(--primary-purple); }
.bg-primary-blue-light { background: var(--primary-blue-light); }
.bg-primary-green-dark { background: var(--primary-green-dark); }
.text-primary-green-dark { color: var(--primary-green-dark); }
.bg-primary-green { background: var(--primary-green); }

/* Utility classes for SVG gradients */
.hero-blob-green-gradient {
  stop-color: var(--primary-green);
}

.hero-blob-green-gradient-light {
  stop-color: var(--pastel-green);
}

.hero-blob-animated-bounce { 
  position: absolute;
  left: 5%;
  top: 10%;
  z-index: 1;
  opacity: 0.18;
  pointer-events: none;
  animation: heroBlobBounce 22s cubic-bezier(.4,0,.2,1) infinite alternate;
}

/* ===== BASE STYLES ===== */
body {
  font-family: 'Poppins', "Times New Roman", Times, serif;
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  background: #f8fafc;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ===== CLICKABLE CONTACT LINKS ===== */
.contact-link {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}

.contact-link:hover {
  color: var(--primary-green) !important;
  transform: translateX(2px);
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-green);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-link:hover::after {
  width: 100%;
}

/* Mobile header contact links */
#mobile-offcanvas .contact-link {
  text-decoration: none;
  color: inherit;
}

#mobile-offcanvas .contact-link:hover {
  color: var(--primary-green) !important;
}

/* Desktop header contact links */
.hidden.md\\:flex .contact-link,
.hidden.lg\\:flex .contact-link,
.hidden.xl\\:flex .contact-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hidden.md\\:flex .contact-link:hover,
.hidden.lg\\:flex .contact-link:hover,
.hidden.xl\\:flex .contact-link:hover {
  color: var(--primary-green) !important;
  transform: scale(1.02);
}

/* Footer contact links */
.footer-contact .contact-link {
  text-decoration: none;
  color: inherit;
}

.footer-contact .contact-link:hover {
  color: var(--primary-green) !important;
}

/* Ensure Poppins font is applied to all elements */
* {
  font-family: 'Poppins', sans-serif;
}

/* Prevent horizontal scroll on mobile */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Mobile offcanvas menu fixes */
#mobile-offcanvas {
  overflow: hidden !important;
  width: 100vw;
  max-width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}

#mobile-offcanvas .absolute.right-0 {
  max-width: 85vw;
  width: 320px;
}

/* Ensure mobile menu opens properly */
#mobile-offcanvas.translate-x-full {
  transform: translateX(100%) !important;
}

#mobile-offcanvas:not(.translate-x-full) {
  transform: translateX(0) !important;
}

/* Hide hamburger button when mobile menu is open */
body.mobile-menu-open #test-hamburger {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: scale(0.8) !important;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease !important;
}

/* Smooth transition for hamburger button */
#test-hamburger {
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease !important;
}

/* Mobile submenu styles */
.mobile-menu-toggle {
  transition: all 0.3s ease;
}

.mobile-menu-toggle i {
  transition: transform 0.3s ease;
}

.mobile-submenu {
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

.mobile-submenu:not(.hidden) {
  max-height: 500px;
}

.mobile-submenu a {
  transition: all 0.2s ease;
}

/* Mobile menu group spacing */
.mobile-menu-group {
  margin-bottom: 0.5rem;
}

/* Professional Navigation Styles */
.nav-link {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  padding: 0.75rem 1rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.nav-link:hover {
  transform: translateY(-1px) scale(1.05) !important;
  box-shadow: 0 4px 12px rgba(44, 166, 90, 0.15) !important;
  color: white !important;
}

.nav-link-bg {
  z-index: 1 !important;
  box-shadow: 0 2px 8px rgba(44, 166, 90, 0.1) !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to right, #2CA65A, #22c55e) !important;
  border-radius: 8px !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform 0.3s ease-out !important;
}

.nav-link span {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

/* Active state for navigation */
.nav-link.active {
  color: white;
}

.nav-link.active .nav-link-bg {
  transform: scaleX(1);
}

/* Hover effects for better UX */
.nav-link:hover .nav-link-bg {
  box-shadow: 0 4px 16px rgba(44, 166, 90, 0.2) !important;
  transform: scaleX(1) !important;
}

.group:hover .nav-link-bg {
  transform: scaleX(1) !important;
}

/* Smooth transitions for all nav elements */
nav ul li {
  transition: all 0.3s ease;
}

nav ul li:hover {
  transform: translateY(-1px);
}

/* Professional typography improvements */
nav ul {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  letter-spacing: 0.025em;
}

/* Enhanced spacing and alignment */
nav ul li a,
.professional-nav-ul li a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  padding: 0.75rem 1rem !important;
  border-radius: 8px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-decoration: none !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Professional navigation container */
nav.w-full.flex.flex-row.bg-white.shadow-sm,
.professional-nav {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  border-bottom: 1px solid rgba(44, 166, 90, 0.1) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: blur(10px) !important;
  padding: 0 !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 50 !important;
  width: 100% !important;
}

.professional-nav-ul {
  padding: 5px 0 !important;
}

/* Subtle animation for nav items on page load */
@keyframes navItemFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

nav ul li {
  animation: navItemFadeIn 0.6s ease-out forwards;
}

nav ul li:nth-child(1) { animation-delay: 0.1s; }
nav ul li:nth-child(2) { animation-delay: 0.2s; }
nav ul li:nth-child(3) { animation-delay: 0.3s; }
nav ul li:nth-child(4) { animation-delay: 0.4s; }
nav ul li:nth-child(5) { animation-delay: 0.5s; }
nav ul li:nth-child(6) { animation-delay: 0.6s; }
nav ul li:nth-child(7) { animation-delay: 0.7s; }

/* Focus states for accessibility */
.nav-link:focus {
  outline: 2px solid rgba(44, 166, 90, 0.5);
  outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .nav-link {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
}

@media (max-width: 768px) {
  .nav-link {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }
}

/* YouTube Video Background Styles */
#youtube-video {
  width: 100vw !important;
  height: 100vh !important;
  object-fit: cover !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(1.1) !important;
  z-index: -1 !important;
  pointer-events: none !important;
}

#video-player-container {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

/* Ensure video covers entire section without black borders */
.hero-slide {
  overflow: hidden !important;
}

/* Enhanced video background styles for Google Drive */
#office-intro-video {
  width: 100vw !important;
  height: 100vh !important;
  object-fit: cover !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(1.1) !important;
  z-index: 1 !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
}

/* Ensure no black bars or gaps */
#video-player-container {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  background: #000 !important;
}

/* Force video to cover entire viewport */
#hero-section {
  overflow: hidden !important;
  background: #000 !important;
}

/* Prevent horizontal scroll on page load */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  
  /* Ensure mobile menu doesn't cause horizontal scroll */
  #mobile-offcanvas {
    overflow: hidden !important;
    transform: translateX(100%) !important;
    width: 100vw !important;
    max-width: 100vw !important;
  }
  
  #mobile-offcanvas.open {
    transform: translateX(0) !important;
  }
  
  /* Fix for mobile menu inner container */
  #mobile-offcanvas .absolute.right-0 {
    max-width: 85vw !important;
    width: 320px !important;
    right: 0 !important;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: none; }
}

@keyframes fadeInUpSlow {
  0% { opacity: 0; transform: translateY(60px); }
  60% { opacity: 0.7; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.8); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes marquee-ltr {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-rtl {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes spin-slow {
  100% { transform: rotate(360deg); }
}

@keyframes floatBg {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(40px) scale(1.08); }
}

@keyframes floatBg2 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-60px) scale(1.12); }
}

@keyframes bounceIcon {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

@keyframes pulseIcon {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.13); opacity: 0.7; }
}

@keyframes spinIcon {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fade-in-right {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: none; }
}

@keyframes where-bg-move {
  0% { transform: translateX(-30vw); }
  100% { transform: translateX(30vw); }
}

@keyframes statOverlayAnim {
  0% { filter: blur(0px) brightness(1.05); }
  100% { filter: blur(8px) brightness(1.15); }
}

@keyframes tech-slide-down {
  0% { transform: translateY(0); }
  100% { transform: translateY(50%); }
}

@keyframes tech-slide-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes heroBlobBounce {
  0%   { transform: translate(0, 0) scale(1) rotate(0deg); }
  20%  { transform: translate(60px, 30px) scale(1.04) rotate(3deg); }
  40%  { transform: translate(120px, -10px) scale(1.08) rotate(-2deg); }
  60%  { transform: translate(80px, 60px) scale(1.04) rotate(2deg); }
  80%  { transform: translate(-40px, 40px) scale(1.02) rotate(-3deg); }
  100% { transform: translate(0, 0) scale(1) rotate(0deg); }
}

@keyframes icon-bounce-phenom {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.18); }
  50%  { transform: scale(0.92); }
  70%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes customMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

/* Animation Classes */
.animate-fadeInUpSlow {
  animation: fadeInUpSlow 1.2s cubic-bezier(.77,0,.18,1) both;
}

.animate-bounceIn {
  animation: bounceIn 1.1s 0.5s both;
}

.animate-fade-in-up {
  animation: fade-in-up 1s cubic-bezier(.4,0,.2,1) both;
}

.animate-fade-in-right {
  animation: fade-in-right 1s cubic-bezier(.4,0,.2,1) both;
}

.animate-tech-slide-down {
  animation: tech-slide-down linear infinite;
}

.animate-tech-slide-up {
  animation: tech-slide-up linear infinite;
}

.animate-spin-slow {
  animation: spin-slow 2.5s linear infinite;
}

.marquee-ltr {
  animation: marquee-ltr 14s linear infinite;
}

.marquee-rtl {
  animation: marquee-rtl 14s linear infinite;
}

/* ===== HEADER COMPONENT STYLES ===== */

/* Main Header */
header.main-header {
  background: #ffffff !important;
  border-bottom: 2px solid #22c55e !important;
  overflow: visible !important;
}

/* Logo Container */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0;
  margin: 0;
}

/* Logo Styles */
.header-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block !important;
  opacity: 1 !important;
  background: none !important;
  z-index: 1000 !important;
  border: none !important;
  transition: transform 0.3s ease !important;
  margin: 0;
  max-width: 220px;
  min-width: 120px;
}

.header-logo:hover {
  transform: scale(1.05) !important;
}

/* Ensure logo container has proper dimensions */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0;
  margin: 0;
  min-width: 120px;
  max-width: 220px;
}

/* Marquee Styles */
.header-marquee {
  min-width: 250px;
  max-width: 300px;
  display: flex;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  overflow: hidden;
  position: relative;
  background: transparent !important;
  border: none !important;
}

.header-marquee-animation {
  animation: headerMarquee 300s linear infinite;
  white-space: nowrap;
  display: inline-block;
  will-change: transform;
  transform: translateX(0%);
}

@keyframes headerMarquee {
  0% {
    transform: translateX(0%);
  }
  25% {
    transform: translateX(-25%);
  }
  50% {
    transform: translateX(-50%);
  }
  75% {
    transform: translateX(-75%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Contact Button Styles */
.cta-btn {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  border: 2px solid #22c55e !important;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3) !important;
  transition: all 0.3s ease !important;
}

.cta-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4) !important;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
}

/* CTA Buttons */
.cta-btn-primary, .cta-btn-green {
  background: var(--primary-green);
  color: #fff;
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 16px 0 rgba(44,166,90,0.13);
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0.9em 2.2em;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.cta-btn-primary:hover, .cta-btn-green:hover {
  background: var(--primary-green-dark);
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(44,166,90,0.18);
  transform: scale(1.04);
}

.cta-btn-secondary, .cta-btn-outline-green {
  background: #fff;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  border-radius: 999px;
  box-shadow: 0 4px 16px 0 rgba(44,166,90,0.13);
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0.9em 2.2em;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.cta-btn-secondary:hover, .cta-btn-outline-green:hover {
  background: var(--primary-green);
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(44,166,90,0.18);
  transform: scale(1.04);
}

/* Header Dividers */
.header-divider {
  width: 24px;
  height: 3px;
  background: #2CA65A;
  border-radius: 2px;
  display: inline-block;
}

.header-divider-small {
  width: 20px;
  height: 2px;
  background: #2CA65A;
  border-radius: 2px;
  display: inline-block;
}

/* ===== CLEANED MEGA MENU CSS ===== */
.mega-menu.wide-mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  z-index: 9999 !important;
  background: rgba(255,255,255,0.95) !important;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 12px 40px 0 rgba(44,166,90,0.10), 0 4px 20px 0 rgba(0,0,0,0.08);
  overflow: visible !important;
  backdrop-filter: blur(8px) !important;
  border: 1.5px solid rgba(44,166,90,0.10);
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr 1fr !important;
  gap: 0 !important;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
}

li.group:hover .mega-menu.wide-mega-menu,
nav ul li:hover .mega-menu.wide-mega-menu {
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr 1fr !important;
  z-index: 9999 !important;
  transform: translateY(0) !important;
}

.mega-menu-link {
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: #222;
  border-radius: 0.4rem;
  margin: 0.08rem 0.2rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
  background: transparent;
  letter-spacing: 0.01em;
}

.mega-menu-link:hover {
  background: var(--primary-green, #2CA65A);
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(44,166,90,0.13);
  transform: translateX(3px);
}

/* Navigation positioning */
nav {
  overflow: visible !important;
  position: relative !important;
  z-index: 1000 !important;
}

/* Homepage glassmorphism */
.homepage .mega-menu.wide-mega-menu {
  background: rgba(255,255,255,0.55) !important;
  backdrop-filter: blur(18px) !important;
}

/* ===== END CLEANED MEGA MENU CSS ===== */

/* ===== PORTFOLIO ===== */
.portfolio-tab[data-tab="ecommerce"].active, 
.portfolio-tab[data-tab="ecommerce"]:focus {
  background: #34d399;
  color: #fff;
}

.portfolio-tab[data-tab="informative"].active, 
.portfolio-tab[data-tab="informative"]:focus {
  background: #60a5fa;
  color: #fff;
}

#portfolio-grid {
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}

.portfolio-box-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.portfolio-box-link:hover .portfolio-box,
.portfolio-box-link:focus .portfolio-box {
  box-shadow: 0 8px 32px 0 rgba(34, 34, 34, 0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
  transform: translateY(-8px) scale(1.03);
  z-index: 2;
  border-radius: 1.5rem;
}

.portfolio-box-link:hover .portfolio-img-container,
.portfolio-box-link:focus .portfolio-img-container {
  border-radius: 1.5rem;
}

.portfolio-box {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(34,197,94,0.08);
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 420px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.portfolio-box:hover {
  box-shadow: 0 16px 48px 0 rgba(34,197,94,0.18);
  transform: translateY(-6px) scale(1.03);
}

.portfolio-img-container {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: var(--neutral-light);
  border-radius: 1.5rem 1.5rem 0 0;
}

.portfolio-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.portfolio-box:hover .portfolio-img {
  transform: translateY(calc(-100% + 320px));
}

.portfolio-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34,197,94,0.04) 0%, rgba(34,197,94,0.13) 100%);
  pointer-events: none;
}

.portfolio-info {
  flex: 1 1 auto;
  padding: 1.5rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 0 0 1.5rem 1.5rem;
}

/* Portfolio Tabs */
.portfolio-tabs {
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.portfolio-tabs::-webkit-scrollbar {
  display: none;
}

.portfolio-tab {
  flex: 0 0 auto;
  min-width: 140px;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: var(--neutral-light);
  color: var(--neutral-dark);
  border: 2px solid transparent;
  font-family: var(--font-family, 'Poppins', Arial, sans-serif);
}

.portfolio-tab.active {
  background: var(--primary-green);
  color: #fff;
  border-color: var(--primary-green);
}

.portfolio-tab:hover:not(.active) {
  background: var(--primary-green-light);
  color: var(--primary-green);
}

/* ===== PARTNER/ASSOCIATE CARDS ===== */
.partner-card, .associate-card {
  padding: 8px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(34,197,94,0.10), 0 1.5px 8px 0 rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.partner-card img, .associate-card img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  margin: 0;
  background: transparent;
}

/* ===== MARQUEES & SLIDERS ===== */
.client-marquee-diagonal-container {
  overflow: hidden;
  position: relative;
  top: 38px;
  width: 100vw;
  min-width: 100vw;
  right: 0;
  background: #2CA65A;
  border-radius: 0;
  margin: 0 0 0.5rem 0;
  box-shadow: 0 4px 24px #2CA65A22;
  max-width: none;
  transform: rotate(355deg);
}

.client-marquee-diagonal {
  display: flex;
  min-width: 100%;
}

.client-marquee-diagonal-content {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.7rem 0;
  letter-spacing: 0.01em;
}

.client-marquee-diagonal-content i {
  font-size: 1.2em;
  margin-right: 0.3em;
}

.client-marquee-diagonal-container:hover .marquee-ltr,
.client-marquee-diagonal-container:hover .marquee-rtl {
  animation-play-state: paused;
}

.client-logos-marquee-section {
  background: transparent;
  padding: 32px 0;
}

.client-logos-marquee {
  display: flex;
  min-width: 100%;
  overflow: hidden;
  align-items: center;
  margin: 0;
  padding: 0.5rem 2vw;
}

.client-logos-marquee-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  white-space: nowrap;
}

.client-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44,166,90,0.08);
  background: #fff;
  padding: 6px 12px;
}

.client-logo:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(44,166,90,0.18);
}

.client-logos-marquee.marquee-ltr {
  animation: marquee-ltr 22s linear infinite;
}

.client-logos-marquee.marquee-rtl {
  animation: marquee-rtl 22s linear infinite;
}

.client-logo-carousel-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 100px auto 0 auto;
  position: relative;
}

.client-logo-carousel {
  display: flex;
  overflow: hidden;
  gap: 0;
  padding: 12px 0;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.client-logo-carousel::-webkit-scrollbar { 
  display: none; 
}

.client-logo-carousel-content {
  display: flex;
  gap: 2rem;
}

.carousel-logo-link {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44,166,90,0.08);
  padding: 8px 18px;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 72px;
}

.carousel-logo-link:hover {
  box-shadow: 0 6px 24px rgba(44,166,90,0.18);
  transform: scale(1.06);
}

.carousel-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.marquee-logo-ltr {
  display: flex;
  animation: marquee-ltr 32s linear infinite;
}

.client-logo-carousel-section:hover .marquee-logo-ltr,
.client-logo-carousel-section:focus-within .marquee-logo-ltr,
.client-logo-carousel-section:active .marquee-logo-ltr {
  animation-play-state: paused;
}

.client-marquee {
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.client-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-ltr 22s linear infinite;
}

.client-marquee-rtl .client-marquee-track {
  animation: marquee-rtl 22s linear infinite;
}

.client-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.10));
  border-radius: 1.25rem;
  background: #fff;
  padding: 1.5rem 2.5rem;
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
  box-shadow: 0 2px 16px 0 rgba(34,197,94,0.08);
}

.client-logo-img:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 32px 0 rgba(34,197,94,0.18);
  filter: drop-shadow(0 8px 32px rgba(34,197,94,0.18));
  z-index: 2;
}

.client-marquee-glass {
  background: rgba(255,255,255,0.45);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px 0 rgba(34,197,94,0.10), 0 1.5px 8px 0 rgba(0,0,0,0.04);
  border: 1.5px solid rgba(180, 255, 210, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.client-marquee-track-glass {
  display: flex;
  align-items: center;
  width: calc(14 * 180px + 13 * 32px); /* 14 logos, 13 gaps */
  animation: marquee-ltr 22s linear infinite;
}

.client-marquee-track-glass-rtl {
  display: flex;
  align-items: center;
  width: calc(14 * 180px + 13 * 32px);
  animation: marquee-rtl 22s linear infinite;
}

.client-logo-img-glass {
  height: 120px;
  width: 160px;
  object-fit: contain;
  background: rgba(255,255,255,0.85);
  border-radius: 1.25rem;
  box-shadow: 0 2px 16px 0 rgba(34,197,94,0.08);
  border: 1.5px solid rgba(180, 255, 210, 0.18);
  margin: 0 16px;
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
}

.client-logo-img-glass:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 32px 0 rgba(34,197,94,0.18);
  filter: drop-shadow(0 8px 32px rgba(34,197,94,0.18));
  z-index: 2;
}

.client-marquee-fw {
  background: transparent;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 0;
}

.client-marquee-track-fw {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-ltr 22s linear infinite;
}

.client-marquee-track-fw-rtl {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-rtl 22s linear infinite;
}

.client-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 2px 16px 0 rgba(34,197,94,0.08);
  border: 1.5px solid #e2e8f0;
  margin: 0 18px;
  padding: 1rem 1.5rem;
  min-width: 150px;
  height: 80px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.client-logo-container:hover {
  box-shadow: 0 8px 32px 0 rgba(34,197,94,0.18);
  transform: scale(1.06) rotate(-2deg);
  z-index: 2;
}

.client-logo-img-fw {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}

.partner-slider {
  animation: marquee-ltr 18s linear infinite;
}

.associate-slider {
  animation: marquee-rtl 22s linear infinite;
}

.partner-slider:hover, .associate-slider:hover {
  animation-play-state: paused;
}

/* Marquee container for inverted style */
.marquee-container-inverted {
  width: 100%;
  background: #f0fdf4;
  border-top: 2px solid #bbf7d0;
  border-bottom: 2px solid #bbf7d0;
  box-shadow: 0 2px 12px rgba(34,197,94,0.06);
  border-radius: 0;
  overflow: hidden;
  margin: 1.5rem 0;
  padding: 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 1.15rem;
  color: #166534;
  font-weight: 500;
  padding: 1.1rem 0;
  animation: customMarquee 30s linear infinite;
  will-change: transform;
}

.marquee-container-inverted:hover .marquee-track,
.marquee-track:focus {
  animation-play-state: paused;
}

/* ===== TECH SLIDERS ===== */
.tech-col-slider:hover {
  animation-play-state: paused;
}

/* ===== SERVICES TABS ===== */
#services-tabs { 
  min-height: 100vh; 
}

#services-tab-nav {
  gap: 0;
  width: 100%;
  justify-content: stretch;
  margin: 0;
  padding: 0;
  border-radius: 32px 32px 0 0;
  background: var(--neutral-light);
  box-shadow: 0 2px 16px 0 rgba(44,166,90,0.08);
  z-index: 2;
}

.services-tab-content {
  min-height: 320px;
  background: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 2px 16px 0 rgba(44,166,90,0.08);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
  border-top: none;
}

.services-tab-pane {
  display: none;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  width: 100%;
  min-height: 320px;
}

.services-tab-pane[style*='display:flex'] {
  display: flex;
}

/* ===== SECTION STYLES ===== */
.section-green-overlay {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.section-green-overlay .section-green-bg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 90vw;
  height: 100%;
  min-height: 320px;
  opacity: 0.13;
  filter: blur(24px);
}

.section-pastel-bg {
  position: relative;
  background: linear-gradient(120deg, #f8fafc 0%, #e0f7fa 60%, #f0abfc 100%);
  overflow: hidden;
}

.section-pastel-bg .section-blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(64px);
  opacity: 0.22;
}

.bg-overlay-svg {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  filter: blur(0.5px);
}

.bg-overlay-blur {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: floatBg 18s ease-in-out infinite alternate;
}

.bg-overlay-blur2 {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.13;
  animation: floatBg2 22s ease-in-out infinite alternate;
}

/* Section Headings */
.section-heading {
  color: var(--primary-green);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  padding-bottom: 40px;
  text-shadow: 2px 2px 0 var(--primary-green-light), 4px 4px 0 #fff;
  line-height: 1.1;
}

.section-subheading {
  color: var(--neutral-dark);
  font-family: var(--font-family, 'Poppins', Arial, sans-serif);
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
}

/* Alternate section backgrounds */
.bg-alt-1 { background: #f8fafc; }
.bg-alt-2 { background: #fff; }
.bg-alt-3 { background: #f3f4f6; }

/* ===== SERVICE CARD ===== */
.service-card {
  background: rgba(255,255,255,0.85);
  border-radius: 2rem;
  box-shadow: 0 4px 32px 0 rgba(34,197,94,0.10), 0 1.5px 8px 0 rgba(0,0,0,0.04);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(52,211,153,0.08);
}

.service-card:hover {
  box-shadow: 0 8px 40px 0 rgba(34,197,94,0.18);
  background: rgba(236,253,245,0.98);
  transform: translateY(-8px) scale(1.03);
}

.service-icon-oval {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 64px;
  background: linear-gradient(120deg, #d1fae5 60%, #f0fdf4 100%);
  border-radius: 48px/32px;
  box-shadow: 0 2px 16px 0 rgba(34,197,94,0.08);
  transition: box-shadow 0.3s, background 0.3s;
}

.group:hover .service-icon-oval {
  background: linear-gradient(120deg, #6ee7b7 60%, #f0fdf4 100%);
  box-shadow: 0 8px 32px 0 rgba(34,197,94,0.18);
}

/* ===== WHERE TO BUY SECTION ===== */
.where-bg-anim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.where-bg-anim-text {
  position: absolute;
  white-space: nowrap;
  font-size: 8vw;
  font-weight: 900;
  text-transform: uppercase;
  color: #00b6ff22;
  letter-spacing: 0.05em;
  user-select: none;
  left: 0;
  top: 20%;
  animation: where-bg-move 32s linear infinite;
}

.where-bg-anim-text2 {
  top: 55%;
  left: -30vw;
  color: #00b6ff18;
  animation-delay: 16s;
}

.where-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 80, 180, 0.10);
  z-index: 1;
  pointer-events: none;
}

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

.where-logo-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0001;
  padding: 1.2rem 2.2rem;
  display: flex;
  align-items: center;
  min-width: 160px;
  min-height: 64px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid #e0e7ef;
}

.where-logo-box:hover {
  box-shadow: 0 6px 24px #00b6ff33;
  transform: translateY(-4px) scale(1.04);
  border-color: #38bdf8;
}

.where-logo-img {
  max-height: 40px;
  max-width: 120px;
  object-fit: contain;
}

/* ===== SCROLL TO TOP ===== */
#scroll-to-top {
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

#scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scroll-to-top:hover {
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

/* ===== SPECIFIC SECTION STYLES ===== */
section#section-our-clients-marquee-2 {
  padding-bottom: 120px;
}

#section-our-clients, #section-our-clients-marquee-2 {
  background: var(--color-bg-light, #fff);
}

#section-our-clients .section-heading {
  color: var(--color-primary-dark, #16a34a);
  font-family: var(--font-heading, inherit);
}

#section-our-clients-marquee-1.client-marquee-diagonal-container,
#section-our-clients-marquee-2 .client-marquee-diagonal-container {
  overflow: hidden;
  position: relative;
  top: 38px;
  width: 120vw !important;
  left: 50% !important;
  position: relative !important;
  transform: translateX(-50%) !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
  background: var(--color-primary-dark, #2CA65A);
  border-radius: 0;
  margin: 0;
  box-shadow: 0 4px 24px var(--color-primary-dark, #2CA65A22);
  max-width: none;
  transform: rotate(355deg);
  margin-bottom: 0.5rem;
}

#section-core-services.section-core-services {
  background: var(--color-bg-gradient, linear-gradient(to bottom right, #f8fafc 0%, #e0f7fa 60%, #f0abfc 100%));
}

#section-core-services .section-heading {
  color: var(--color-primary-dark, #16a34a);
  font-family: var(--font-heading, inherit);
}

/* ===== ACCESSIBILITY & SEO ===== */
header nav ul li a {
  outline: none;
}

header nav ul li a:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* ===== ANIMATED BACKGROUNDS ===== */
.animated-bg {
  position: relative;
  overflow: hidden;
}

.animated-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg,rgba(34,197,94,0.07) 0%,rgba(250,204,21,0.07) 50%,rgba(244,114,182,0.07) 100%);
  animation: statOverlayAnim 6s linear infinite alternate;
  opacity: 0.7;
}

.stat-icon { 
  z-index: 1; 
}

/* ===== HERO SCROLL SNAP ===== */
.hero-bg-scroll-snap {
  position: relative;
  width: 100vw;
  height: 400vh;
  scroll-snap-type: y mandatory;
  overflow: visible;
}

.bg-images-snap-stack {
  width: 100vw;
  height: 400vh;
  display: flex;
  flex-direction: column;
}

.bg-image-snap {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  scroll-snap-align: start;
}

.img1 { background-image: url('assets/images/static/office.png'); }
.img2 { background-image: url('assets/images/team/2-2.webp'); }
.img3 { background-image: url('assets/images/team/9.webp'); }
.img4 { background-image: url('assets/images/portfolio/carpet.png'); }

.glass-effect-snap {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  width: 90vw;
  max-width: 1400px;
  height: 220px;
  background: rgba(255,255,255,0.18);
  border-radius: 48px;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
  backdrop-filter: blur(18px) saturate(180%) brightness(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(180%) brightness(1.2);
  border: 2.5px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.glass-effect-snap.hide {
  opacity: 0;
  pointer-events: none;
}

/* ===== CTA SECTIONS ===== */
.get-in-touch-unique {
  position: relative;
  z-index: 10;
}

.glass-cta-box {
  animation: fade-in-up 1.1s cubic-bezier(.4,0,.2,1) both;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(18px) saturate(180%) brightness(1.15);
  border: 2.5px solid rgba(44,166,90,0.13);
  box-shadow: 0 8px 32px 0 rgba(44,166,90,0.13);
}

.cta-pattern-svg { 
  mix-blend-mode: multiply; 
}

.cta-icon-bounce { 
  z-index: 21; 
}

/* ===== SECTION HEADINGS ===== */
.outlined-h2 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  text-shadow:
    0 2px 0 var(--primary-green-light),
    0 4px 0 var(--primary-green-light),
    2px 0 0 #22c55e,
    -2px 0 0 #22c55e,
    0 0 8px #22c55e;
  letter-spacing: 2px;
}

.modern-heading-bg {
  position: relative;
  background: #17702a;
  color: #fff;
  text-align: center;
  padding: 2.5rem 1rem;
  margin: 2rem 0 2.5rem 0;
  overflow: hidden;
}

.modern-heading-bg h1 {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.modern-heading-bg::before,
.modern-heading-bg::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 18px;
  background: repeating-linear-gradient(
    135deg,
    #fff 0 8px,
    transparent 8px 16px
  );
  z-index: 1;
}

.modern-heading-bg::before {
  top: 0;
  transform: translateY(-100%);
}

.modern-heading-bg::after {
  bottom: 0;
  transform: translateY(100%);
}

.modern-h2-bg {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 1rem;
  margin: 2.5rem 0 2.5rem 0;
  background: linear-gradient(135deg, #16a34a 60%, #22d3ee 100%);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(22,163,74,0.12);
}

.modern-h2-bg h2 {
  position: relative;
  z-index: 10;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
}

.modern-h2-bg::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 48px;
  background: url('data:image/svg+xml;utf8,<svg width="100%25" height="48" viewBox="0 0 400 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 24 Q50 48 100 24 T200 24 T300 24 T400 24 V48 H0Z" fill="white" fill-opacity="0.08"/></svg>') repeat-x bottom;
  background-size: 100% 48px;
  opacity: 1;
  z-index: 2;
  pointer-events: none;
}

.section-animated-h2-bg {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(90deg, #d1fae5 0%, #6ee7b7 50%, #67e8f9 100%);
  overflow: hidden;
  padding: 3.5rem 0 4.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.section-animated-h2-bg h2 {
  position: relative;
  z-index: 2;
  font-size: 2.2rem;
  font-weight: 800;
  color: #166534;
  text-align: center;
  margin: 0;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.section-animated-h2-bg .animated-wave {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
  pointer-events: none;
}

.section-animated-h2-bg .lottie-bg {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
}

/* ===== ABOUT SECTION STYLES ===== */
.about-pattern-svg { mix-blend-mode: multiply; }
.about-pattern-circle { fill: #22c55e; }
.about-pattern-rect { stroke: #e0e7ef; stroke-width: 0.5; }

.about-btn-primary { background: #22c55e; color: #fff; border: none; }
.about-btn-primary:hover { background: #166534; color: #fff; }
.about-btn-secondary { background: transparent; color: #22c55e; border: 2px solid #22c55e; }
.about-btn-secondary:hover { background: #f0fdf4; color: #166534; border-color: #166534; }

.about-img-wrapper { box-sizing: border-box; }
.about-global-img-container { min-height: 320px; position: relative; }
.about-img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; position: relative; z-index: 2; }
.about-float-star { background: #facc15; z-index: 3; }
.about-float-check { background: #22c55e; z-index: 3; }

.about-service-section { transition: background 0.3s; }
.about-service-section .container { max-width: 1200px; }

/* ===== TEAM, CERTIFICATIONS, TECHNOLOGIES SECTIONS ===== */
.section-team { background: #fff; position: relative; overflow: hidden; }
.team-swiper { width: 100%; }

.team-card { 
  background: #f0fdf4; 
  border-radius: 1.5rem; 
  box-shadow: 0 4px 24px rgba(34,197,94,0.08); 
  padding: 2rem 1.5rem; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  transition: box-shadow 0.3s;
}

.team-card-img-wrapper { 
  width: 100px; 
  height: 100px; 
  border-radius: 50%; 
  overflow: hidden; 
  margin-bottom: 1rem; 
  box-shadow: 0 2px 8px rgba(34,197,94,0.12); 
}

.team-card-img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  border-radius: 50%; 
}

.team-card-name { 
  font-size: 1.25rem; 
  font-weight: 600; 
  color: #166534; 
  margin-bottom: 0.25rem; 
}

.team-card-role { 
  font-size: 1rem; 
  color: #22c55e; 
  margin-bottom: 0.5rem; 
}

.team-card-desc { 
  font-size: 0.95rem; 
  color: #64748b; 
  text-align: center; 
}

.team-card .team-name {
  font-size: 1.1rem;
  margin-top: 0.7rem;
}

.team-card .team-role {
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.team-social-row {
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.team-social-icon {
  width: 38px;
  height: 38px;
  font-size: 1.2rem;
}

.team-profile-img {
  width: 72px;
  height: 72px;
  border-width: 4px;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
}

.section-certifications { background: #f9fafb; }
.certifications-grid { display: grid; gap: 1.5rem; }

.cert-card { 
  background: #fff; 
  border-radius: 1rem; 
  box-shadow: 0 2px 12px rgba(34,197,94,0.06); 
  padding: 1.25rem 1rem; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
}

.cert-card-img { 
  width: 60px; 
  height: 60px; 
  object-fit: contain; 
  margin-bottom: 0.5rem; 
}

.cert-card-title { 
  font-size: 1rem; 
  color: #166534; 
  font-weight: 500; 
  text-align: center; 
}

.section-technologies { 
  background: #F5F5F5; 
  position: relative;
  overflow: hidden;
}

.section-technologies::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.02) 0%, rgba(34, 197, 94, 0.05) 100%);
  pointer-events: none;
}
.technologies-grid { display: grid; gap: 1.5rem; }

.tech-card { 
  background: #f0fdf4; 
  border-radius: 1rem; 
  box-shadow: 0 2px 8px rgba(34,197,94,0.06); 
  padding: 1rem 0.5rem; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
}

.tech-icon { 
  width: 48px; 
  height: 48px; 
  object-fit: contain; 
  margin-bottom: 0.5rem; 
}

.tech-title { 
  font-size: 0.95rem; 
  color: #166534; 
  font-weight: 500; 
  text-align: center; 
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero { min-height: 180px; background: linear-gradient(120deg, #f8fafc 70%, #e0f7fa 100%); }
.contact-logo-img { z-index: 2; }
.contact-title { letter-spacing: 1px; }

.frosted-glass-form {
  background: rgba(255,255,255,0.18);
  border: 2.5px solid rgba(255,255,255,0.35);
  box-shadow: 0 8px 32px 0 rgba(44,166,90,0.18);
  backdrop-filter: blur(18px) saturate(180%) brightness(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(180%) brightness(1.15);
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}

.frosted-glass-form::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(44,166,90,0.08) 0%, rgba(37,99,235,0.07) 100%);
  border-radius: inherit;
}

.frosted-glass-form:hover {
  box-shadow: 0 16px 48px 0 rgba(44,166,90,0.22);
  transform: scale(1.015);
}

.frosted-input:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 2px rgba(44,166,90,0.18);
  background: rgba(255,255,255,0.95);
}

.frosted-btn-overlay {
  content: '';
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  background: linear-gradient(120deg, rgba(44,166,90,0.13) 0%, rgba(37,99,235,0.10) 100%);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s;
  border-radius: 999px;
}

.cta-btn:hover .frosted-btn-overlay { opacity: 1; }

/* ===== SOCIAL ICONS ===== */
/* Note: Footer social icons are now handled by .social-link classes in footer styles */

/* ===== GLASSMORPHISM CARD ===== */
.card-glass {
  background: rgba(255,255,255,0.18);
  border: 2.5px solid rgba(255,255,255,0.35);
  box-shadow: 0 8px 32px 0 rgba(34,197,94,0.18);
  backdrop-filter: blur(18px) saturate(180%) brightness(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(180%) brightness(1.15);
  position: relative;
  border-radius: 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.card-glass:hover {
  box-shadow: 0 16px 48px 0 rgba(34,197,94,0.22);
  transform: scale(1.015);
}

/* ===== ICON CIRCLES ===== */
.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  width: 56px;
  height: 56px;
  font-size: 2rem;
  box-shadow: 0 2px 12px rgba(44,166,90,0.10);
  color: #22c55e;
  transition: box-shadow 0.2s, transform 0.2s;
  z-index: 2;
}

.icon-circle-green {
  background: linear-gradient(135deg, #bbf7d0 0%, #22c55e 100%);
  color: #166534;
}

.icon-circle-lg {
  width: 80px;
  height: 80px;
  font-size: 2.5rem;
}

.icon-circ {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-green);
}

.icon-circ-img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 2px 8px 0 rgba(34,197,94,0.10);
}

.icon-circ-img-lg {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 2px 8px 0 rgba(34,197,94,0.10);
}

.icon-circ-sm {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-green);
}

.icon-circ-lg {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-green);
}

/* ===== CARD STYLES ===== */
.card-title {
  font-weight: 700;
  color: var(--neutral-dark);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.card-desc {
  color: var(--neutral);
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ===== LINK STYLES ===== */
.link-green {
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}

.link-green:hover {
  color: var(--primary-green-dark);
}

/* ===== BACKGROUNDS ===== */
.bg-gradient-primary-light {
  background: linear-gradient(120deg, var(--neutral-light) 70%, var(--primary-green-light) 100%);
}

.bg-neutral-light {
  background: var(--neutral-light);
}

.bg-gradient-primary-dark {
  background: linear-gradient(90deg, var(--primary-green), #166534 100%);
}

/* ===== PATTERN OVERLAY ===== */
.pattern-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.15;
  z-index: 0;
  background-image: repeating-radial-gradient(circle at 40px 40px, var(--primary-green) 2.5px, transparent 0, transparent 80px), repeating-linear-gradient(var(--neutral-light), var(--neutral-light));
  mix-blend-mode: multiply;
}

/* ===== GALLERY TABS ===== */
.gallery-tabs {
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-tabs.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar-touch::-webkit-scrollbar { display: none; }
.no-scrollbar-touch { scrollbar-width: none; }

.gallery-tab {
  flex: 0 0 auto;
  min-width: 120px;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: var(--neutral-light);
  color: var(--neutral-dark);
  border: 2px solid transparent;
  font-family: var(--font-family, 'Poppins', Arial, sans-serif);
}

.gallery-tab.active {
  background: var(--primary-green);
  color: #fff;
  border-color: var(--primary-green);
}

.gallery-tab:hover:not(.active) {
  background: var(--primary-green-light);
  color: var(--primary-green);
}

/* ===== PVM CARD STYLES ===== */
.pvm-card {
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.25s;
  box-shadow: 0 6px 32px 0 rgba(31,111,188,0.10), 0 2px 8px 0 rgba(44,166,90,0.06);
  border: 1.5px solid #e5e7eb;
  position: relative;
  z-index: 1;
}

.pvm-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 12px 48px 0 rgba(44,166,90,0.13), 0 4px 16px 0 rgba(31,111,188,0.10);
  border-color: var(--primary-green);
}

.icon-circle-pvm {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  font-size: 2.3rem;
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(31,111,188,0.10);
}

.icon-circle-pvm i { color: #fff; }

/* ===== CTA BACKGROUND SLIDER ===== */
#cta-bg-slider { pointer-events: none; }

.cta-bg-slide {
  will-change: opacity, transform;
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}

.glass-cta-bg-bright {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px) saturate(1.5);
  box-shadow: 0 8px 40px 0 rgba(44,166,90,0.10), 0 2px 8px 0 rgba(31,111,188,0.08);
  border: 1.5px solid #e5e7eb;
}

/* ===== SEO SERVICE PAGE ICON BOXES ===== */

/* ===== SEO SERVICE PAGE ICON BOXES ===== */
.feature-card-seo {
  background: linear-gradient(135deg, #f0fdf4 60%, #e0f2fe 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(34,197,94,0.10), 0 2px 8px rgba(31,111,188,0.08);
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s, background 0.22s;
  border: 1.5px solid #bbf7d0;
  position: relative;
  overflow: hidden;
}

.feature-card-seo:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(34,197,94,0.18), 0 4px 16px rgba(31,111,188,0.13);
  background: linear-gradient(135deg, #e0f2fe 60%, #f0fdf4 100%);
  border-color: #22c55e;
}

.feature-card-seo .seo-icon {
  font-size: 2.5rem;
  color: #22c55e;
  background: linear-gradient(135deg, #bbf7d0 60%, #e0f2fe 100%);
  border-radius: 50%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(34,197,94,0.10);
  transition: background 0.22s, color 0.22s;
}

.feature-card-seo:hover .seo-icon {
  background: linear-gradient(135deg, #22c55e 60%, #38bdf8 100%);
  color: #fff;
}

.process-step-seo {
  background: rgba(34,197,94,0.07);
  border-radius: 1.25rem;
  box-shadow: 0 2px 12px rgba(34,197,94,0.08);
  border: 1.5px solid #e0f2fe;
  transition: transform 0.22s, box-shadow 0.22s, border 0.22s;
  position: relative;
  overflow: hidden;
}

.process-step-seo:hover {
  transform: scale(1.03) translateY(-3px);
  box-shadow: 0 6px 24px rgba(34,197,94,0.13);
  border-color: #22c55e;
}

.process-step-seo .seo-icon {
  font-size: 2.2rem;
  color: #fff;
  background: linear-gradient(135deg, #22c55e 60%, #38bdf8 100%);
  border-radius: 50%;
  padding: 0.7rem;
  margin-bottom: 0.7rem;
  box-shadow: 0 2px 8px rgba(34,197,94,0.10);
  transition: background 0.22s, color 0.22s;
}

.process-step-seo:hover .seo-icon {
  background: linear-gradient(135deg, #38bdf8 60%, #22c55e 100%);
  color: #22c55e;
}

.benefit-card-seo {
  background: rgba(255,255,255,0.85);
  border-radius: 1.25rem;
  box-shadow: 0 2px 12px rgba(34,197,94,0.10);
  border: 1.5px solid #bbf7d0;
  transition: box-shadow 0.22s, border 0.22s, background 0.22s;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
}

.benefit-card-seo:hover {
  box-shadow: 0 8px 32px rgba(34,197,94,0.15);
  border-color: #22c55e;
  background: rgba(236,254,255,0.97);
}

.benefit-card-seo .seo-icon {
  font-size: 2rem;
  color: #22c55e;
  background: #e0f2fe;
  border-radius: 50%;
  padding: 0.6rem;
  transition: background 0.22s, color 0.22s;
}

.benefit-card-seo:hover .seo-icon {
  background: #22c55e;
  color: #fff;
}

/* ===== ICON BOX STYLES ===== */
.iconbox-phenom {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(44,166,90,0.10);
  border: 1.5px solid #e0e7ef;
  max-width: 340px;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s, border 0.22s;
  position: relative;
}

.iconbox-phenom .icon-phenom {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(44,166,90,0.10);
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #22c55e;
  border: 1.5px solid #e0e7ef;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.22s;
}

.iconbox-phenom:hover {
  transform: translateY(-12px) scale(1.05) rotateX(3deg) rotateY(-3deg);
  box-shadow: 0 12px 36px rgba(44,166,90,0.18), 0 6px 24px rgba(31,111,188,0.10);
  border-color: #22c55e;
}

.iconbox-phenom:hover .icon-phenom {
  animation: icon-bounce-phenom 0.5s;
  background: #22c55e;
  color: #fff;
  box-shadow: 0 4px 16px rgba(34,197,94,0.18);
}

.iconbox-phenom h4 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 0.5rem;
  text-align: center;
}

.iconbox-phenom p {
  color: #475569;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 0;
}

.iconbox-badge {
  position: absolute;
  top: 14px;
  right: 18px;
  background: #fff;
  color: #facc15;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(44,166,90,0.10);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  border: 1.5px solid #e0e7ef;
  z-index: 2;
}

/* ===== PACKAGE FEATURES ===== */
.tick-icon {
  color: #22c55e;
  font-size: 1.25rem;
  font-weight: bold;
  text-shadow: 0 1px 2px #fff, 0 0 2px #e5e5e5;
  background: #e6fbf0;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}

.package-card ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.package-card {
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s, border 0.22s;
}

.package-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 16px 48px rgba(44,166,90,0.18), 0 8px 32px rgba(31,111,188,0.10);
  border: 1.5px solid #22c55e;
  z-index: 2;
}

/* ===== INFO ICON AND TOOLTIP ===== */
.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  font-size: 0.95rem;
  margin-left: 0.5rem;
  cursor: pointer;
  position: relative;
  transition: background 0.18s, color 0.18s;
}

.info-icon:hover, .info-icon:focus {
  background: #166534;
  color: #fff;
}

.info-tooltip {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 120%;
  transform: translateX(-50%);
  min-width: 220px;
  max-width: 320px;
  background: #fff;
  color: #222;
  font-size: 0.98rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 24px rgba(44,166,90,0.10);
  z-index: 10;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}

.info-icon:hover .info-tooltip,
.info-icon:focus .info-tooltip,
.info-icon.active .info-tooltip {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.info-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/* ===== CLIENT HIGHLIGHT BOX ===== */
.client-highlight-box {
  border: 2px solid rgba(34,197,94,0.13);
  transition: box-shadow 0.3s, border-color 0.3s;
  box-shadow: 0 4px 24px 0 rgba(34,197,94,0.10), 0 1px 4px 0 rgba(0,0,0,0.06);
  background: linear-gradient(90deg, #f0fdf4 0%, #fff 100%);
}

.client-highlight-box:hover {
  box-shadow: 0 8px 32px 0 rgba(34,197,94,0.18), 0 2px 8px 0 rgba(0,0,0,0.08);
  border-color: rgba(34,197,94,0.27);
}

/* ===== RESPONSIVE STYLES ===== */
@media (min-width: 1200px) {
  .carousel-logo-link {
    min-width: 200px;
  }
  
  .client-logo-carousel-content {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .admin-main-content {
    margin-left: 250px;
    width: 83%;
    max-width: none;
    overflow-x: visible;
  }
}

@media (min-width: 768px) {
  .logo-container { height: 90px; }
  .header-logo { height: 90px; }
  .section-heading { font-size: 3rem; }
}

@media (max-width: 1200px) {
  .header-logo {
    height: 44px;
  }
  
  /* Override for mobile header specifically */
  .md\\:hidden .header-logo {
    height: 45px !important;
  }
  
  .main-nav ul {
    gap: 10px;
  }
  
  .header-social {
    gap: 5px;
  }
  
  #certifications .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  #certifications .grid-rows-2 {
    grid-template-rows: repeat(4, 1fr);
  }
  
  .carousel-logo-link {
    min-width: 200px;
  }
  
  .client-marquee-glass {
    max-width: 98vw;
  }
  
  .client-logo-img-glass {
    height: 80px;
    width: 110px;
  }
  
  .client-logo-img-fw {
    height: 50px;
  }
  
  .client-logo-container {
    padding: 0.75rem 1rem;
    margin: 0 8px;
  }
}

@media (max-width: 1199px) and (min-width: 900px) {
  .carousel-logo-link {
    min-width: 18vw;
  }
}

@media (max-width: 1100px) {
  .client-marquee-glass {
    max-width: 98vw;
  }
  
  .client-logo-img-glass {
    height: 80px;
    width: 110px;
  }
  
  .client-logo-img-fw {
    height: 50px;
  }
  
  .client-logo-container {
    padding: 0.75rem 1rem;
    margin: 0 8px;
  }
}

@media (max-width: 1024px) {

  
  .contact-main-grid { 
    grid-template-columns: 1fr; 
  }
  
  .payment-guide-section .grid { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .admin-main-content {
    margin-left: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: auto;
  }
  
  /* Header responsive fixes */
  .header-marquee {
    display: none !important;
  }
  
  .main-header .hidden.md\\:flex {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Prevent text wrapping in header */
  .main-header .flex.items-center.gap-2 span {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  header .header-grid {
    grid-template-columns: 70px 1fr;
  }
  
  .header-logo {
    height: 48px;
  }
  
  /* Override for mobile header specifically */
  .md\\:hidden .header-logo {
    height: 45px !important;
  }
  
  .main-nav ul {
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .header-social, .header-cta {
    margin-left: 0;
    margin-top: 4px;
  }
  
  .header-bottom {
    padding: 0 4px 4px 4px;
  }
  
  .header-contact {
    gap: 6px 8px;
    font-size: 0.95rem;
  }
  
  .sub-nav ul {
    gap: 5px;
    font-size: 0.95rem;
  }
  
  .features {
    flex-direction: column;
    gap: 18px;
  }
  
  main {
    padding: 20px 8px 30px 8px;
  }
  
  nav ul > li.group .mega-menu {
    display: none;
  }
  
  .main-nav {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .client-logo-img {
    height: 80px;
    padding: 1rem 1.5rem;
  }
  
  .client-marquee-track {
    gap: 2rem;
  }
  
  .technologies-section-flex {
    display: flex;
    flex-direction: column-reverse;
  }
  
  .technologies-section-flex > .technologies-grid {
    order: 2;
  }
  
  .technologies-section-flex > .technologies-info {
    order: 1;
  }
  
  .max-w-xl {
    min-width: 0;
    width: 100%;
  }
  
  .tech-section-flex {
    flex-direction: column;
  }
  
  .tech-slider-mobile-fix {
    max-width: 100vw;
    max-height: 320px;
    width: 100vw;
  }
  
  .services-tab-content, .services-tab-pane {
    flex-direction: column;
    padding: 2rem 1rem;
    min-height: 420px;
    border-radius: 0 0 32px 32px;
  }
  
  .services-tab-pane > .flex-1 {
    padding-right: 0;
  }
  
  .services-tab-pane > .flex-1:last-child {
    margin-top: 2rem;
  }
  
  #services-tab-nav {
    flex-direction: column;
    padding-left: 24px;
    padding-right: 24px;
    border-radius: 32px 32px 0 0;
  }
  
  .services-tab-btn {
    border-radius: 20px 20px 0 0;
    margin-bottom: 8px;
    width: 100%;
  }
  
  .icon-box-green-all {
    min-width: 90vw;
    min-height: 320px;
    padding: 2rem 1rem;
  }
  
  .icon-circle-all {
    width: 56px;
    height: 56px;
  }
  
  .icon-box-bgcircle-green-all {
    width: 140px;
    height: 140px;
    top: -40px;
    right: -40px;
  }
  
  .icon-box-bottom-border-all {
    height: 10px;
    border-radius: 0 0 18px 18px;
  }
  
  .carousel-logo-link {
    min-width: 28vw;
  }
  
  #portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .portfolio-img-container {
    height: 300px;
  }
  
  .team-slider {
    padding: 0 10px;
  }
  
  .team-card-oval {
    min-width: 90vw;
    max-width: 98vw;
  }
  
  .team-slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }
  
  .tech-section-seamless {
    min-height: 600px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  
  .tech-content-mobile-fix {
    margin-bottom: 32px;
  }
  
  .section-heading {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  
  .where-logos {
    gap: 1.2rem 1rem;
  }
  
  .where-logo-box {
    min-width: 120px;
    padding: 0.8rem 1.2rem;
  }
  
  .about-service-section .container { 
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .about-global-img-container, .about-img { 
    min-height: 180px; 
    border-radius: 18px; 
  }
  

  
  .iconbox-phenom {
    max-width: 95vw;
    padding: 1.5rem 1rem;
  }
  
  .glass-effect-snap { 
    height: 140px; 
    border-radius: 32px; 
  }
  
  .cta-bg-slide { 
    /* Animation properties handled by JavaScript */
  }
  
  .glass-cta-bg-bright { 
    background: rgba(255,255,255,0.93); 
  }
}

@media (max-width: 899px) and (min-width: 600px) {
  .carousel-logo-link {
    min-width: 28vw;
  }
}

@media (max-width: 768px) {
  .hamburger-menu {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    z-index: 60;
    box-shadow: 0 2px 8px rgba(44,166,90,0.10);
    position: relative;
  }
  
  .hamburger-menu:focus {
    outline: 2px solid var(--primary-green);
  }
  

  
  .icon-box {
    padding: 1.5rem;
  }
  
  .icon-circle {
    width: 70px;
    height: 70px;
  }
  
  .icon-box-bgcircle {
    width: 100px;
    height: 100px;
    top: -25px;
    right: -25px;
  }
  
  .icon-circle svg {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 767px) {
  .iconbox-phenom {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    height: auto;
    min-height: 0;
    max-height: none;
  }
}

@media (max-width: 700px) {
  .section-heading {
    font-size: 2rem;
  }
  
  #certifications .grid-cols-4 {
    grid-template-columns: 1fr;
  }
  
  #certifications .grid-rows-2 {
    grid-template-rows: repeat(8, 1fr);
  }
  
  #certifications .cert-card {
    padding: 0;
  }
  
  .client-logo-img-glass {
    height: 56px;
    width: 70px;
    margin: 0 8px;
  }
  
  .client-marquee-track-glass, .client-marquee-track-glass-rtl {
    width: calc(14 * 86px + 13 * 16px);
  }
  
  .client-logo-img-fw {
    height: 36px;
  }
  
  .client-logo-container {
    padding: 0.25rem;
    margin: 0 2px;
  }
  
  .payment-guide-section .grid { 
    grid-template-columns: 1fr; 
  }
  
  .partners-section .grid { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .card-glass { 
    padding: 1.2rem 0.7rem; 
    border-radius: 1.2rem; 
  }
  
  .gallery-tabs { 
    gap: 10px; 
    padding-bottom: 8px; 
  }
  
  .gallery-tab { 
    min-width: 100px; 
    font-size: 0.9rem; 
    padding: 0.5rem 1rem; 
  }
  
  .portfolio-tabs { 
    gap: 10px; 
    padding-bottom: 8px; 
  }
  
  .portfolio-tab { 
    min-width: 100px; 
    font-size: 0.9rem; 
    padding: 0.5rem 1rem; 
  }
  
  .contact-form-glass, .contact-info-box > div { 
    padding: 1.2rem 0.7rem; 
    border-radius: 1.2rem; 
  }
  
  /* Footer social icons are now handled by .social-link classes */
  
  .glass-cta-box { 
    padding: 2rem 0.7rem; 
    border-radius: 1.5rem; 
  }
  
  .get-in-touch-unique { 
    padding-top: 2.5rem; 
    padding-bottom: 2.5rem; 
  }
  
  .glass-cta-box h2 { 
    font-size: 1.5rem; 
  }
  
  .client-highlight-box {
    padding: 1.2rem;
    max-width: 98vw;
  }
  
  .client-highlight-box p {
    font-size: 1.1rem;
  }
  
  .section-heading {
    font-size: 1.75rem;
    margin: 0;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
  }
  
  .portfolio-img-container {
    height: 180px;
    border-radius: 1.2rem;
  }
  
  .portfolio-box {
    border-radius: 1.2rem;
    overflow: hidden;
    display: block;
    height: auto;
    min-height: 0;
  }
  
  .portfolio-info {
    padding: 1rem 0.7rem;
    border-radius: 0 0 1.2rem 1.2rem;
    display: block;
    flex: none;
    justify-content: initial;
    min-height: 0;
  }
  
  .portfolio-info h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
  }
  
  .portfolio-info p {
    font-size: 0.92rem;
  }
  
  .portfolio-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    padding-bottom: 8px;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  
  .portfolio-tab {
    min-width: 110px;
    font-size: 0.98rem;
    padding: 0.5rem 1.1rem;
    border-radius: 1.2rem;
    white-space: nowrap;
    margin-bottom: 2px;
  }
  
  .portfolio-info h3 {
    font-size: 1rem !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin-bottom: 0.5rem !important;
  }
  
  .portfolio-info {
    min-height: 2.2em;
  }
}

@media (max-width: 600px) {
  header .header-grid {
    display: block;
  }
  
  .logo-container {
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    height: 60px;
    min-width: 120px;
  }
  
  .header-top, .header-bottom {
    padding: 10px 6px;
  }
  
  .header-logo {
    height: 50px;
    max-height: 50px;
    width: auto;
    object-fit: contain;
  }
  
  /* Mobile header specific fixes - override Tailwind */
  .md\\:hidden.flex.items-center.justify-between.px-0.py-2 {
    padding: 0 8px 8px 8px !important;
    gap: 12px !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  /* Logo container - compact and left-aligned */
  .md\\:hidden .logo-container {
    flex-shrink: 0 !important;
    height: 50px !important;
    max-width: 140px !important;
    min-width: 100px !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  /* Logo image - proper size */
  .md\\:hidden .header-logo {
    height: 45px !important;
    max-height: 45px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
  }
  
  /* Social icons container - proper spacing */
  .md\\:hidden .flex.items-center.gap-1 {
    margin: 0 !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
  }
  
  /* Social icons individual spacing */
  .md\\:hidden .flex.items-center.gap-1 a {
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Hamburger button - completely circular */
  .md\\:hidden #test-hamburger {
    margin: 0 !important;
    flex-shrink: 0 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 2px;
  }
  
  .header-social {
    gap: 2px;
  }
  
  .header-cta {
    padding: 3px 0;
  }
  
  .header-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    font-size: 0.9rem;
  }
  
  .sub-nav ul {
    flex-direction: column;
    gap: 1px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta-btn {
    font-size: 1rem;
    padding: 10px 18px;
  }
  
  nav ul > li.group .mega-menu {
    display: none;
  }
  
  .header-marquee {
    width: 95vw;
    max-width: 98vw;
    min-width: 0;
    font-size: 0.92rem;
    height: 26px;
    padding: 0 6px;
    border-radius: 8px;
  }
  
  .marquee-text {
    font-size: 0.9rem;
  }
  
  .mobile-nav-panel {
    padding: 18px 8px 8px 8px;
  }
  
  .services-tab-btn {
    font-size: 0.98rem;
    min-width: 80px;
    padding: 0.7rem;
  }
  
  .services-tab-content {
    padding: 1rem 0.5rem;
    border-radius: 0 0 24px 24px;
  }
  
  #portfolio-tabs {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  
  #portfolio-tabs::-webkit-scrollbar {
    display: none;
  }
  
  #portfolio-tabs .portfolio-tab {
    min-width: 180px;
    flex: 0 0 auto;
    width: auto;
    text-align: center;
  }
  
  .portfolio-tab {
    width: auto;
    min-width: 80px;
    max-width: 100%;
    padding: 0.5rem 1.5rem;
    text-align: center;
    display: inline-block;
  }
  

  
  @media (max-width: 700px) {
    .portfolio-tab {
      min-width: 60px;
      padding: 0.5rem 1rem;
      font-size: 1rem;
      width: auto;
      display: inline-block;
    }
    #portfolio-tabs, #services-tabs-bar-clean {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      gap: 10px;
    }
  }
}

@media (max-width: 599px) {
  .carousel-logo-link {
    min-width: 80vw;
  }
  
  .client-logo-carousel-content {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  #mobile-offcanvas .absolute.right-0 {
    width: 100%;
  }
}

/* ENHANCED HERO SECTION STYLES */
#hero-section {
  overflow: hidden !important;
  background: #fff !important;
}

#hero-slider {
  width: 100vw;
  height: 80vh;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video Background Styles */
#video-player-container {
  position: relative;
  width: 100vw;
  height: 80vh;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-video, #office-intro-video {
  width: 100vw !important;
  height: 80vh !important;
  object-fit: cover !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(1.1) !important;
  z-index: 1 !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
}

/* Single Image Background Styles */
#single-image-container {
  position: relative;
  width: 100vw;
  height: 80vh;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-single-image {
  width: 100vw !important;
  height: 80vh !important;
  object-fit: cover !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(1.1) !important;
  z-index: 1 !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
}

/* Image Slider Background Styles */
.hero-slider-image {
  width: 100vw !important;
  height: 80vh !important;
  object-fit: cover !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(1.1) !important;
  z-index: 1 !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  transition: transform 1.2s ease-in-out;
}

/* Hero Content Overlay Styles */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-title {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  animation: fadeInUp 1s ease-out 0.4s both;
}

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

/* Fallback Styles */
.hero-fallback, #video-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  z-index: 10;
}

.hero-fallback.flex, #video-fallback.flex {
  display: flex !important;
}

#video-fallback[style*="display: flex"] {
  display: flex !important;
}

.hero-play-btn, #play-button {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 2rem 3rem;
  border-radius: 9999px;
  font-size: 1.25rem;
  font-weight: 600;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
  outline: none;
}

/* Responsive Hero Styles */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.125rem !important;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem !important;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
  }
}
.hero-play-btn:hover, #play-button:hover {
  background: rgba(255,255,255,0.3);
}

/* About section spacing refinement */
.section-about {
  padding-top: 3.5rem !important; /* py-14 */
  padding-bottom: 3.5rem !important;
}
.section-heading {
  margin-bottom: 2rem !important; /* mb-8 */
}
.about-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
@media (max-width: 1024px) {
  .section-about {
    padding-top: 2.5rem !important; /* py-10 */
    padding-bottom: 2.5rem !important;
  }
  .section-heading {
    margin-bottom: 1.5rem !important;
  }
}
/* Remove excessive gap between columns */
.flex.flex-col.lg\:flex-row.items-center.gap-12.lg\:gap-16 {
  gap: 2.5rem !important; /* gap-10 */
}
@media (max-width: 1024px) {
  .flex.flex-col.lg\:flex-row.items-center.gap-12.lg\:gap-16 {
    gap: 1.5rem !important; /* gap-6 */
  }
}
/* Reduce margin below paragraph and icon list */
#about-global-webify p.text-lg {
  margin-bottom: 1.5rem !important;
}
#about-global-webify .space-y-6.mb-10 {
  margin-bottom: 1.5rem !important;
}

@media (max-width: 768px) {
  /* Left align all section headings and text on mobile */
  section,
  .section-about,
  .section-team,
  .section-testimonials,
  .section-technologies,
  .section-pastel-bg,
  .section-core-services,
  .section-our-clients,
  .section-certifications {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  section p,
  section .text-lg,
  section .text-base,
  section .text-md {
    text-align: left !important;
  }
}

/* Reduce marquee padding for index page marquees */
#index-hero-marquee, #section-our-clients .marquee-container-inverted, #section-our-clients-marquee-1.client-marquee-diagonal-container, #section-our-clients-marquee-2.client-marquee-diagonal-container {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
#index-hero-marquee .marquee-track, #section-our-clients .marquee-track, #section-our-clients-marquee-1 .marquee-track, #section-our-clients-marquee-2 .marquee-track {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Fix horizontal marquee rows to overflow screen edges */
.client-logos-marquee,
.client-marquee,
.client-marquee-glass,
.client-marquee-fw {
  width: 120vw !important;
  left: 50% !important;
  position: relative !important;
  transform: translateX(-50%) !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}
.client-logos-marquee-content,
.client-marquee-track,
.client-marquee-track-glass,
.client-marquee-track-fw {
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Apply rotation to slanted marquees (skew removed) */
#section-our-clients-marquee-1.client-marquee-diagonal-container,
#section-our-clients-marquee-2.client-marquee-diagonal-container {
  transform: translateX(-50%) rotate(-3deg) !important;
}
#section-our-clients-marquee-1 .marquee-track,
#section-our-clients-marquee-2 .marquee-track {
  transform: none !important;
}

/* Permanent styling for index page marquee content */
#section-our-clients-marquee-1 .client-marquee-diagonal-content,
#section-our-clients-marquee-2 .client-marquee-diagonal-content {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
  padding: 0.2rem 0;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .section-our-clients-marquee-group {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  #section-our-clients-marquee-2 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .section-clients-alt {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
  }
  .section-clients-alt h2,
  .section-clients-alt .section-heading {
    text-align: center !important;
  }
}

@media (max-width: 600px) {
  #section-our-clients .section-heading {
    text-align: center !important;
    margin-bottom: 1rem !important;
    padding-bottom: 16px !important;
    font-size: 2rem !important;
  }
  .section-our-clients-marquee-group {
    padding-bottom: 1rem !important;
  }
  .section-clients-alt {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
  }
  .client-logo-img-fw {
    max-width: 90px !important;
    height: auto !important;
  }
}

/* Force center alignment for Our Clients section heading */
#section-our-clients .section-heading {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  width: 100% !important;
}

@media (max-width: 600px) {
  #section-our-clients .section-heading {
    font-size: 2rem !important;
    padding-bottom: 16px !important;
    margin-bottom: 1rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* 1. Remove left padding/margin from hero section and slider on mobile */
@media (max-width: 600px) {
  #hero-section,
  #hero-slider,
  #hero-section > .relative,
  #hero-section > div,
  #hero-section .hero-slide,
  #hero-section .hero-slide > div {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
}

/* 3. Leave About section heading and subtext left-aligned */
#about-global-webify .section-heading,
#about-global-webify .section-subheading,
#about-global-webify h2,
#about-global-webify h3,
#about-global-webify h4,
#about-global-webify h5,
#about-global-webify h6,
#about-global-webify p,
#about-global-webify .text-lg,
#about-global-webify .text-base,
#about-global-webify .text-md {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* 4. Remove extra margin from centered headings on mobile */
@media (max-width: 600px) {
  section:not(#about-global-webify):not(#technologies) .section-heading {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* Force left alignment for all text inside the glass card in services tabs */
.services-tab-content-glass {
  align-items: flex-start !important;
  display: flex !important;
  flex-direction: column !important;
}
.services-tab-content-glass > * {
  width: 100% !important;
}
.services-tab-content-glass, .services-tab-content-glass * {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* On mobile, stack image on top and text below in services tab section */
@media (max-width: 900px) {
  .tab-wrapper-glass {
    flex-direction: column !important;
  }
  .tab-content-clean {
    flex-direction: column !important;
  }
  .tab-content-clean > .flex-1.flex.items-center.justify-center {
    order: 1;
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .tab-content-clean > .services-tab-content-glass {
    order: 2;
    width: 100%;
  }
}

/* Technologies Section Mobile Fixes */
@media (max-width: 900px) {
  #technologies.section-technologies {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
    min-height: auto !important;
    height: auto !important;
  }
  
  #technologies .w-full.px-4.md\\:px-8 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  #technologies .flex.flex-col.lg\\:flex-row {
    flex-direction: column !important;
    gap: 2rem !important;
  }
  
  #technologies .tech-slider-container {
    order: 1;
    margin-top: 2rem;
    max-width: 100% !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
    padding: 1rem !important;
    height: 380px !important;
  }
  
  #technologies .tech-card {
    width: 110px !important;
    height: 110px !important;
    font-size: 0.9rem !important;
    border-radius: 18px !important;
  }
  
  #technologies .tech-icon-circle {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
  }
  
  #technologies .tech-label {
    font-size: 0.85rem !important;
    margin-top: 10px !important;
    line-height: 1.2 !important;
  }
  
  #technologies .tech-gap > .tech-card {
    margin-bottom: 16px !important;
  }
  
  #technologies .flex-1.max-w-xl {
    order: 2;
    max-width: 100% !important;
    text-align: left !important;
  }
  
  #technologies .section-heading {
    text-align: left !important;
    margin-bottom: 1rem !important;
  }
  
  #technologies p.text-lg {
    text-align: left !important;
    margin-bottom: 1.5rem !important;
  }
  
  #technologies .flex.flex-row.flex-wrap {
    gap: 0.75rem !important;
  }
  
  #technologies .about-btn-primary,
  #technologies .about-btn-secondary {
    flex: 1 !important;
    min-width: 0 !important;
    font-size: 0.9rem !important;
    padding: 0.75rem 1rem !important;
  }
}

@media (max-width: 600px) {
  #technologies.section-technologies {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  
  #technologies .w-full.px-4.md\\:px-8 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  
  #technologies .tech-slider-container {
    gap: 0.75rem !important;
    padding: 0.75rem !important;
    height: 320px !important;
  }
  
  #technologies .tech-card {
    width: 100px !important;
    height: 100px !important;
    border-radius: 16px !important;
  }
  
  #technologies .tech-icon-circle {
    width: 32px !important;
    height: 32px !important;
    font-size: 1rem !important;
  }
  
  #technologies .tech-label {
    font-size: 0.7rem !important;
    margin-top: 6px !important;
  }
  
  #technologies .tech-gap > .tech-card {
    margin-bottom: 10px !important;
  }
}

/* Desktop: Make layout wider for better heading display */
@media (min-width: 1024px) {
  #technologies .w-full.px-4.md\\:px-8 {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  
  #technologies .flex.flex-col.lg\\:flex-row {
    gap: 4rem !important;
  }
  
  #technologies .flex-1.max-w-xl {
    max-width: 500px !important;
    flex: 1.2 !important;
  }
  
  #technologies .tech-slider-mobile-fix {
    flex: 1 !important;
    max-width: 600px !important;
  }
  
  #technologies .section-heading {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }
}

#technologies .section-heading,
#technologies .section-heading *,
#technologies p.text-lg {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.tech-python { background: #3776ab; }
.tech-python .tech-icon-circle i { 
  color: #ffd43b !important; 
  font-size: 1.2em !important;
}

/* Fallback for missing icons */
.tech-icon-circle i {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ensure Python icon is always visible */
.tech-python .tech-icon-circle {
  background: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.tech-python .tech-icon-circle i::before {
  content: "🐍" !important;
  font-size: 1.5rem !important;
  line-height: 1 !important;
}

/* === FOOTER STYLES === */

/* Modern Footer Base */
.modern-footer {
  position: relative;
  color: #374151;
  box-shadow: 0 -4px 20px rgba(34, 197, 94, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  font-family: var(--font-family, 'Poppins', Arial, sans-serif);
}

/* Footer Background Pattern */
.footer-bg-pattern {
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-60px) translateY(-60px); }
}

/* Footer Logo */
.footer-logo {
  width: 180px;
  height: auto;
  filter: brightness(1) contrast(1);
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

/* Footer Stats */
.footer-stats { 
  flex-direction: row !important; 
  border-top: 1px solid rgba(34, 197, 94, 0.2);
  padding-top: 1rem;
}

.footer-stats .stat-item { 
  width: 50% !important; 
  transition: transform 0.3s ease;
}

.footer-stats .stat-item:hover {
  transform: translateY(-2px);
}

/* Footer Links */
.footer-link {
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 2px 0;
}

.footer-link:hover {
  color: #22c55e;
  transform: translateX(5px);
}

.footer-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #22c55e;
  transition: width 0.3s ease;
}

.footer-link:hover::before {
  width: 100%;
}

/* Service Categories */
.service-category h5 {
  border-bottom: 2px solid #22c55e;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* Contact Items */
.contact-item {
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

/* Footer Middle Section */
.footer-middle-section {
  background: rgba(34, 197, 94, 0.05);
  border-top: 1px solid rgba(34, 197, 94, 0.1);
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

/* Payment Methods */
.payment-method {
  transition: transform 0.3s ease;
}

.payment-method:hover {
  transform: scale(1.2);
}

.payment-btn {
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  border: 2px solid #2563eb;
  display: inline-flex !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.payment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  background: #1d4ed8 !important;
}

/* Social Links */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.social-link:hover::before {
  left: 100%;
}

.social-link.facebook { background: #1877f2; }
.social-link.twitter { background: #1da1f2; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.linkedin { background: #0077b5; }
.social-link.youtube { background: #ff0000; }
.social-link.whatsapp { background: #25d366; }

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Center payment and social sections */
.payment-section, .social-section { 
  text-align: center !important; 
  justify-content: center !important; 
  align-items: center !important; 
  margin-left: auto !important; 
  margin-right: auto !important; 
}

.payment-methods, .social-links { 
  justify-content: center !important; 
  align-items: center !important; 
  margin-left: auto !important; 
  margin-right: auto !important; 
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
  .footer-logo {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .footer-top-section {
    padding: 2rem 1rem;
  }
  
  .footer-logo {
    width: 120px;
  }
  
  .footer-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .payment-methods {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    width: 100px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 700px) {
  #portfolio-grid,
  .portfolio-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.2rem !important;
  }
  #portfolio-grid > * {
    max-width: 100% !important;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  .portfolio-box,
  .card-glass {
    max-width: 100% !important;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  .portfolio-img-container {
    width: 100% !important;
    min-width: 0 !important;
  }
  .portfolio-info h3 {
    font-size: 1rem !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin-bottom: 0.5rem !important;
  }
  #portfolio-grid > a:nth-child(n+5),
  .portfolio-grid > a:nth-child(n+5),
  #portfolio-grid > .portfolio-box-link:nth-child(n+5),
  .portfolio-grid > .portfolio-box-link:nth-child(n+5),
  #portfolio-grid > div:nth-child(n+5),
  .portfolio-grid > div:nth-child(n+5) {
    display: block !important;
  }
}

/* === HOMEPAGE INLINE STYLES MOVED FROM index.php === */

/* Portfolio Tabs */
#portfolio-tabs::-webkit-scrollbar { display: none; }
#portfolio-tabs { scrollbar-width: none; }
.portfolio-tab { flex: 0 0 auto; min-width: 140px; text-align: center; }
@media (max-width: 700px) {
  #portfolio-tabs { gap: 10px; padding-bottom: 8px; }
  .portfolio-tab { min-width: 120px; font-size: 1rem; }
}

/* Services Tabs Bar (Clean) */
#services-tabs-bar-clean::-webkit-scrollbar { display: none; }
#services-tabs-bar-clean { scrollbar-width: none; }
.portfolio-tab { flex: 0 0 auto; min-width: 140px; text-align: center; }
@media (max-width: 700px) {
  #services-tabs-bar-clean { gap: 10px; padding-bottom: 8px; }
  .portfolio-tab { min-width: 120px; font-size: 1rem; }
}
.services-tab-content-glass {
  background: rgba(255,255,255,0.7);
  box-shadow: 0 4px 32px 0 rgba(44,166,90,0.10), 0 1.5px 8px 0 rgba(0,0,0,0.04);
  border-radius: 1.5rem;
  padding: 2rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.services-tab-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(34,197,94,0.08);
  background: #f3f4f6;
}
@media (max-width: 900px) {
  .tab-wrapper-glass { flex-direction: column !important; }
  .services-tab-img { height: 200px; margin-top: 2rem; }
}

/* Fix services tabs padding on mobile */
@media (max-width: 700px) {
  .services-tab-content-glass {
    padding: 1rem 0.5rem !important;
  }
  .tab-wrapper-glass {
    padding: 0 0.25rem !important;
  }
  .tab-content-clean {
    padding: 0 !important;
  }
  #services-tabs {
    padding: 0 0.25rem !important;
  }
  .services-tab-pane {
    padding: 0 0.25rem !important;
  }
}

/* Certifications Section Responsive Grid */
@media (max-width: 1200px) {
  #certifications .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  #certifications .grid-rows-2 { grid-template-rows: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  #certifications .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  #certifications .grid-rows-2 { grid-template-rows: repeat(4, 1fr); }
}

/* Social Icon Oval Hover */
.social-icon-oval:hover {
  background: #fff;
  color: #166534;
  border: 2px solid #22c55e;
  box-shadow: 0 0 0 4px #bbf7d0, 0 2px 12px 0 #22c55e;
}

/* Remove duplicate/overridden rules as needed. */
@media (max-width: 700px) {
  /* Compact vertical spacing for CERTIFICATIONS section on mobile */
  .section-certifications {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .section-certifications .section-heading {
    margin-bottom: 0.8rem !important;
    padding-bottom: 0 !important;
  }
  .section-certifications p,
  .section-certifications .text-lg {
    margin-bottom: 1.2rem !important;
  }
  .section-certifications .flex.flex-row.flex-wrap.gap-3,
  .section-certifications .flex.flex-row.flex-wrap.gap-3.sm\:gap-4 {
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
  }
  /* Fix min-width for right column on mobile */
  .section-certifications .max-w-xl {
    min-width: 0 !important;
    width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

@media (max-width: 700px) {
  /* 2rem padding on all sides for CERTIFICATIONS section and right column on mobile */
  .section-certifications {
    padding: 2rem !important;
  }
  .section-certifications .max-w-xl {
    min-width: 0 !important;
    width: 100% !important;
    padding: 2rem !important;
  }
  .section-certifications .section-heading {
    margin-bottom: 0.8rem !important;
    padding-bottom: 0 !important;
  }
  .section-certifications p,
  .section-certifications .text-lg {
    margin-bottom: 1.2rem !important;
  }
  .section-certifications .flex.flex-row.flex-wrap.gap-3,
  .section-certifications .flex.flex-row.flex-wrap.gap-3.sm\:gap-4 {
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
  }
}

/* Package Card CTA Button Responsive Styles */
.package-card .cta-animated-btn,
.package-card .cta-btn-primary,
.package-card .cta-btn-secondary {
  font-size: 1rem;
  font-weight: 500;
  padding-left: 1.2em;
  padding-right: 1.2em;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .package-card .cta-animated-btn,
  .package-card .cta-btn-primary,
  .package-card .cta-btn-secondary {
    font-size: 0.92rem;
    font-weight: 500;
    padding-left: 0.7em;
    padding-right: 0.7em;
    min-width: 0;
    white-space: nowrap;
  }
}

/* Ensure CTA background slider is visible and functional */
.get-in-touch-unique {
  position: relative;
  background: transparent;
  padding: 20px;
}
#cta-bg-slider {
  z-index: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.cta-bg-slide {
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
  transform: scale(1.1) rotate(-8deg);
}
.cta-bg-slide:first-child {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.get-in-touch-unique > .relative {
  z-index: 20;
  position: relative;
  padding: 20px;
}

@media (max-width: 700px) {
  .get-in-touch-unique {
    padding: 20px !important;
  }
  .glass-cta-box {
    padding: 20px !important;
  }
}

/* CSS Fallback Animation for CTA Slider */
@keyframes ctaSlideFade {
  0%, 20% { opacity: 1; transform: scale(1) rotate(0deg); }
  25%, 45% { opacity: 0; transform: scale(0.95) rotate(10deg); }
  50%, 70% { opacity: 1; transform: scale(1) rotate(0deg); }
  75%, 95% { opacity: 0; transform: scale(0.95) rotate(10deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes ctaSlideFade2 {
  0%, 20% { opacity: 0; transform: scale(0.95) rotate(10deg); }
  25%, 45% { opacity: 1; transform: scale(1) rotate(0deg); }
  50%, 70% { opacity: 0; transform: scale(0.95) rotate(10deg); }
  75%, 95% { opacity: 1; transform: scale(1) rotate(0deg); }
  100% { opacity: 0; transform: scale(0.95) rotate(10deg); }
}

@keyframes ctaSlideFade3 {
  0%, 20% { opacity: 0; transform: scale(0.95) rotate(10deg); }
  25%, 45% { opacity: 0; transform: scale(0.95) rotate(10deg); }
  50%, 70% { opacity: 1; transform: scale(1) rotate(0deg); }
  75%, 95% { opacity: 0; transform: scale(0.95) rotate(10deg); }
  100% { opacity: 0; transform: scale(0.95) rotate(10deg); }
}

@keyframes ctaSlideFade4 {
  0%, 20% { opacity: 0; transform: scale(0.95) rotate(10deg); }
  25%, 45% { opacity: 0; transform: scale(0.95) rotate(10deg); }
  50%, 70% { opacity: 0; transform: scale(0.95) rotate(10deg); }
  75%, 95% { opacity: 1; transform: scale(1) rotate(0deg); }
  100% { opacity: 0; transform: scale(0.95) rotate(10deg); }
}

@keyframes ctaSlideFade5 {
  0%, 20% { opacity: 0; transform: scale(0.95) rotate(10deg); }
  25%, 45% { opacity: 0; transform: scale(0.95) rotate(10deg); }
  50%, 70% { opacity: 0; transform: scale(0.95) rotate(10deg); }
  75%, 95% { opacity: 0; transform: scale(0.95) rotate(10deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* CSS Fallback - Apply animations to slides */
.cta-bg-slide:nth-child(1) {
  animation: ctaSlideFade 17.5s infinite;
}
.cta-bg-slide:nth-child(2) {
  animation: ctaSlideFade2 17.5s infinite;
}
.cta-bg-slide:nth-child(3) {
  animation: ctaSlideFade3 17.5s infinite;
}
.cta-bg-slide:nth-child(4) {
  animation: ctaSlideFade4 17.5s infinite;
}
.cta-bg-slide:nth-child(5) {
  animation: ctaSlideFade5 17.5s infinite;
}

/* Disable CSS animations when JavaScript is working */
.cta-slider-js-active .cta-bg-slide {
  animation: none !important;
}

/* ===== INLINE STYLES FROM INDEX.PHP - MOVED TO EXTERNAL CSS ===== */

/* Portfolio Tabs Styles */
#portfolio-tabs::-webkit-scrollbar { 
  display: none; 
}
#portfolio-tabs { 
  scrollbar-width: none; 
}
.portfolio-tab { 
  flex: 0 0 auto; 
  min-width: 140px; 
  text-align: center; 
}
@media (max-width: 700px) {
  #portfolio-tabs { 
    gap: 10px; 
    padding-bottom: 8px; 
  }
  .portfolio-tab { 
    min-width: 120px; 
    font-size: 1rem; 
  }
}

/* Services Tabs Styles */
#services-tabs-bar-clean::-webkit-scrollbar { 
  display: none; 
}
#services-tabs-bar-clean { 
  scrollbar-width: none; 
}
.services-tab-content-glass {
  background: rgba(255,255,255,0.7);
  box-shadow: 0 4px 32px 0 rgba(44,166,90,0.10), 0 1.5px 8px 0 rgba(0,0,0,0.04);
  border-radius: 1.5rem;
  padding: 2rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.services-tab-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(34,197,94,0.08);
  background: #f3f4f6;
}
@media (max-width: 900px) {
  .tab-wrapper-glass { 
    flex-direction: column !important; 
  }
  .services-tab-img { 
    height: 200px; 
    margin-top: 2rem; 
  }
}

/* Technologies Section Styles */
.tech-slider-container {
  height: 480px;
  overflow: hidden;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.tech-col-slider {
  height: 960px; /* double the visible area for seamless loop */
  overflow: hidden;
}
.tech-gap > .tech-card {
  margin-bottom: 24px;
}
.tech-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(34,197,94,0.15), 0 4px 16px 0 rgba(0,0,0,0.1);
  margin: 0 auto;
  transition: all 0.3s ease;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  background: #22c55e; /* fallback, will be overridden by specific classes */
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.tech-card:hover {
  box-shadow: 0 20px 60px 0 rgba(34,197,94,0.25), 0 8px 24px 0 rgba(0,0,0,0.15);
  transform: translateY(-8px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.3);
}
.tech-label {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 14px;
  text-align: center;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.tech-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 0;
  font-size: 1.75rem;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

/* Technology-specific colors */
.tech-html5 { background: #e44d26; }
.tech-css3 { background: #1572b6; }
.tech-js { background: #f7df1e; color: #222; }
.tech-php { background: #777bb4; }
.tech-laravel { background: #ff2d20; }
.tech-react { background: #61dafb; color: #222; }
.tech-node { background: #3c873a; }
.tech-mysql { background: #00758f; }
.tech-wordpress { background: #21759b; }
.tech-mongodb { background: #13aa52; }
.tech-angular { background: #dd0031; }
.tech-vue { background: #42b883; }
.tech-bootstrap { background: #7952b3; }
.tech-shopify { background: #96bf48; }
.tech-git { background: #f34f29; }
.tech-sass { background: #cc6699; }
.tech-tailwind { background: #38bdf8; color: #222; }
.tech-figma { background: #f24e1e; }
.tech-aws { background: #ff9900; color: #222; }
.tech-docker { background: #2496ed; }
.tech-github { background: #24292e; }
.tech-woocommerce { background: #96588a; }
.tech-python { background: #3776ab; }

/* Technology icon colors */
.tech-html5 .tech-icon-circle i { color: #e44d26; }
.tech-css3 .tech-icon-circle i { color: #1572b6; }
.tech-js .tech-icon-circle i { color: #f7df1e; }
.tech-php .tech-icon-circle i { color: #777bb4; }
.tech-laravel .tech-icon-circle i { color: #ff2d20; }
.tech-react .tech-icon-circle i { color: #61dafb; }
.tech-node .tech-icon-circle i { color: #3c873a; }
.tech-mysql .tech-icon-circle i { color: #00758f; }
.tech-wordpress .tech-icon-circle i { color: #21759b; }
.tech-mongodb .tech-icon-circle i { color: #13aa52; }
.tech-angular .tech-icon-circle i { color: #dd0031; }
.tech-vue .tech-icon-circle i { color: #42b883; }
.tech-bootstrap .tech-icon-circle i { color: #7952b3; }
.tech-shopify .tech-icon-circle i { color: #96bf48; }
.tech-git .tech-icon-circle i { color: #f34f29; }
.tech-sass .tech-icon-circle i { color: #cc6699; }
.tech-tailwind .tech-icon-circle i { color: #38bdf8; }
.tech-figma .tech-icon-circle i { color: #f24e1e; }
.tech-aws .tech-icon-circle i { color: #ff9900; }
.tech-docker .tech-icon-circle i { color: #2496ed; }
.tech-github .tech-icon-circle i { color: #24292e; }
.tech-woocommerce .tech-icon-circle i { color: #96588a; }
.tech-python .tech-icon-circle i { color: #3776ab; }

/* Technology animations */
.tech-col-up {
  animation: tech-slide-up 18s linear infinite;
}
.tech-col-down {
  animation: tech-slide-down 18s linear infinite;
}
@keyframes tech-slide-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes tech-slide-down {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}
.tech-col-slider:hover {
  animation-play-state: paused;
}

/* Responsive Technology Section */
@media (max-width: 1200px) {
  .tech-slider-container {
    height: 420px;
    padding: 0.5rem;
  }
  .tech-card { 
    width: 120px; 
    height: 120px; 
    font-size: 0.9rem; 
  }
  .tech-icon-circle { 
    width: 40px; 
    height: 40px; 
    font-size: 1.3rem; 
  }
  .tech-label { 
    font-size: 0.8rem; 
    margin-top: 10px; 
  }
  .tech-gap > .tech-card { 
    margin-bottom: 18px; 
  }
}

@media (max-width: 900px) {
  .tech-slider-container {
    height: 360px;
    padding: 0.5rem;
  }
  .tech-card { 
    width: 100px; 
    height: 100px; 
    font-size: 0.85rem; 
  }
  .tech-icon-circle { 
    width: 36px; 
    height: 36px; 
    font-size: 1.1rem; 
  }
  .tech-label { 
    font-size: 0.75rem; 
    margin-top: 8px; 
  }
  .tech-gap > .tech-card { 
    margin-bottom: 14px; 
  }
}

@media (max-width: 600px) {
  .tech-slider-container {
    height: 280px !important;
    padding: 0.25rem !important;
    gap: 0.5rem !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }
  .tech-card { 
    width: 80px !important; 
    height: 80px !important; 
    font-size: 0.7rem !important; 
    margin: 0.15rem !important;
    min-width: 80px !important;
    max-width: 80px !important;
  }
  .tech-icon-circle { 
    width: 32px !important; 
    height: 32px !important; 
    font-size: 0.9rem !important; 
  }
  .tech-label { 
    font-size: 0.65rem !important; 
    margin-top: 6px !important; 
    line-height: 1.2 !important;
  }
  .tech-gap > .tech-card { 
    margin-bottom: 8px !important; 
  }
  .tech-col-slider {
    gap: 0.5rem !important;
  }
}

/* Services Tab Mobile Fix - Reduced Padding */
@media (max-width: 700px) {
  .services-tab-content-glass {
    padding: 0.5rem 0 !important;
  }
  .tab-wrapper-glass {
    padding: 0 !important;
  }
  .tab-content-clean {
    padding: 0 !important;
  }
  #services-tabs {
    padding: 0 !important;
  }
  .services-tab-pane {
    padding: 0 !important;
  }
  .w-full.px-4.md\\:px-12.lg\\:px-20 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  /* Override Tailwind classes completely */
  div[class*="px-4"][class*="md:px-12"][class*="lg:px-20"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  /* Add internal padding for content */
  .services-tab-content-glass {
    padding: 0.5rem 0.3125rem !important; /* 5px = 0.3125rem */
  }
  .services-tab-content-glass h3 {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }
  .services-tab-content-glass p {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }
  .services-tab-content-glass a {
    margin-left: 0.3125rem !important;
  }
}

/* Testimonial Mobile Text Truncation */
@media (max-width: 700px) {
  .testimonial-bubble { 
    width: 95vw !important; 
    min-width: 0 !important; 
    max-width: 95vw !important; 
    padding: 0.5rem 0.25rem 0.5rem 0.25rem !important; 
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
  .testimonial-client-photo { 
    left: 0 !important; 
    bottom: -18px !important; 
  }
  .testimonial-client-photo .relative.w-28.h-28 { 
    width: 60px !important; 
    height: 60px !important; 
  }
  .client-photo-border { 
    width: 60px !important; 
    height: 60px !important; 
  }
  .testimonial-client-photo img { 
    width: 54px !important; 
    height: 54px !important; 
    top: 3px !important; 
    left: 3px !important; 
  }
  .testimonial-bubble .font-extrabold { 
    font-size: 0.9rem !important; 
  }
  .testimonial-bubble .font-semibold { 
    font-size: 0.75rem !important; 
  }
  .testimonial-bubble p, 
  .testimonial-bubble .text-gray-700 { 
    font-size: 0.8rem !important; 
    line-height: 1.2 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-height: 4.8em !important; /* 4 lines * 1.2 line-height */
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    max-width: 100% !important;
    word-break: break-word !important;
    text-overflow: ellipsis !important;
  }
  .testimonial-bubble .testimonial-readmore-btn {
    display: block !important;
    margin-top: 0.25rem !important;
    font-size: 0.75rem !important;
    color: #22c55e !important;
    text-decoration: underline !important;
  }
}

/* Desktop Testimonial - Show Full Text */
@media (min-width: 701px) {
  .testimonial-bubble p,
  .testimonial-bubble .text-gray-700 {
    max-height: none !important;
    overflow: visible !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
  }
  .testimonial-bubble .testimonial-readmore-btn {
    display: none !important;
  }
}

/* Statistics Section Styles */
.iconbox-phenom.stats-phenom.stats-phenom-unified.stats-phenom-sq {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px 0 rgba(34,197,94,0.12), 0 2px 8px 0 rgba(0,0,0,0.08);
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: visible;
  z-index: 3;
  text-align: center;
  width: 100%;
  min-width: 200px;
  max-width: 300px;
  height: 250px;
  justify-content: center;
  margin: 0 auto;
}
.iconbox-phenom.stats-phenom.stats-phenom-unified.stats-phenom-sq:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 32px 0 rgba(34,197,94,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
}
.icon-phenom.stats-phenom-icon.unified-green {
  width: 60px;
  height: 60px;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px 0 rgba(34,197,94,0.15);
  background: #f0fdf4;
  color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats-phenom-number.unified-green {
  font-size: 3rem;
  font-weight: 800;
  color: #22c55e;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.stats-phenom-label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0.5rem;
  color: #222;
  line-height: 1.3;
}

/* Testimonial Card Responsive Fix */
.testimonial-bubble {
  border-radius: 60px !important;
  position: relative;
  box-shadow: 0 8px 32px 0 rgba(34, 197, 94, 0.10), 0 2px 8px 0 rgba(0,0,0,0.08);
  font-family: inherit;
  overflow: visible;
  width: 540px !important;
  min-width: 540px !important;
  max-width: 540px !important;
  margin: 0 auto;
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  height: auto;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-bubble:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 48px 0 rgba(34,197,94,0.20), 0 4px 16px 0 rgba(0,0,0,0.12);
}
/* Swiper styles moved to swiper-styles.css */
.testimonial-client-photo {
  pointer-events: none;
  z-index: 10;
}
.testimonial-client-photo .relative.w-28.h-28 {
  width: 110px !important;
  height: 110px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.client-photo-border {
  width: 110px !important;
  height: 110px !important;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
}
.testimonial-client-photo img {
  width: 98px !important;
  height: 98px !important;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: 6px !important;
  left: 6px !important;
  z-index: 12;
  margin: 0;
  border: 4px solid #fff;
  background: #fff;
}
.testimonial-bubble .font-extrabold {
  font-size: 1.1rem !important;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.2rem;
  text-align: center;
}
.testimonial-bubble .font-semibold {
  font-size: 0.95rem !important;
  color: #64748b;
  margin-bottom: 0.7rem;
  font-weight: 500;
  text-align: center;
}
.testimonial-bubble p,
.testimonial-bubble .text-gray-700 {
  font-size: 1rem !important;
  color: #374151 !important;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.8rem;
}
.testimonial-bubble .flex.mb-4 {
  margin-bottom: 0.7rem !important;
}

/* About Global Webify Section Image Fix */
.about-global-img-container {
  position: relative;
  width: 100%;
  min-height: 280px;
  background: #e6f9ef;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(34,197,94,0.10), 0 2px 8px 0 rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-global-img-container img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  background: #e6f9ef;
}

/* Marquee Styles */
.marquee-container-inverted {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: #f0fdf4;
  color: #166534;
  border-top: 2px solid #bbf7d0;
  border-bottom: 2px solid #bbf7d0;
  box-shadow: 0 2px 8px rgba(34,197,94,0.06);
  overflow: hidden;
  padding: 0.75rem 0;
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}
.marquee-container-green {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: #22c55e;
  color: #fff;
  border-radius: 0;
  overflow: hidden;
  padding: 0.75rem 0;
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}
.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: seamlessMarquee 25s linear infinite;
  font-size: 1.15rem;
  font-weight: 500;
  will-change: transform;
}
.marquee-container-inverted .marquee-track { 
  color: #166534; 
}
.marquee-container-green .marquee-track { 
  color: #fff; 
}
.marquee-container-inverted:hover .marquee-track,
.marquee-container-inverted:focus .marquee-track,
.marquee-container-green:hover .marquee-track,
.marquee-container-green:focus .marquee-track {
  animation-play-state: paused;
}
@keyframes seamlessMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Social Icon Hover Effects */
.social-icon-oval:hover {
  background: #fff;
  color: #166534;
  border: 2px solid #22c55e;
  box-shadow: 0 0 0 4px #bbf7d0, 0 2px 12px 0 #22c55e;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .testimonial-bubble { 
    width: 98vw !important; 
    min-width: 0 !important; 
    max-width: 98vw !important; 
    padding: 1.5rem 0.5rem 1.5rem 0.5rem; 
  }
  .testimonial-client-photo .relative.w-28.h-28 { 
    width: 80px !important; 
    height: 80px !important; 
  }
  .client-photo-border { 
    width: 80px !important; 
    height: 80px !important; 
  }
  .testimonial-client-photo img { 
    width: 68px !important; 
    height: 68px !important; 
    top: 6px !important; 
    left: 6px !important; 
  }
}

@media (max-width: 700px) {
  .testimonial-bubble { 
    width: 95vw !important; 
    min-width: 0 !important; 
    max-width: 95vw !important; 
    padding: 1rem 0.5rem 1rem 0.5rem !important; 
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
  .testimonial-client-photo { 
    left: 0 !important; 
    bottom: -18px !important; 
  }
  .testimonial-client-photo .relative.w-28.h-28 { 
    width: 60px !important; 
    height: 60px !important; 
  }
  .client-photo-border { 
    width: 60px !important; 
    height: 60px !important; 
  }
  .testimonial-client-photo img { 
    width: 54px !important; 
    height: 54px !important; 
    top: 3px !important; 
    left: 3px !important; 
  }
  .testimonial-bubble .font-extrabold { 
    font-size: 1rem !important; 
  }
  .testimonial-bubble .font-semibold { 
    font-size: 0.85rem !important; 
  }
  .testimonial-bubble p, 
  .testimonial-bubble .text-gray-700 { 
    font-size: 0.9rem !important; 
    line-height: 1.4 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
}

@media (max-width: 900px) {
  .about-global-img-container, 
  .about-global-img-container img {
    min-height: 180px;
    border-radius: 18px;
  }
}

@media (max-width: 700px) {
  .marquee-track { 
    font-size: 1rem; 
  }
}

@media (max-width: 900px) {
  .iconbox-phenom.stats-phenom.stats-phenom-unified.stats-phenom-sq { 
    width: 100%; 
    min-width: 0; 
    height: 180px; 
    padding: 1.5rem 0.5rem; 
    border-radius: 1rem;
  }
  .icon-phenom.stats-phenom-icon.unified-green { 
    width: 50px; 
    height: 50px; 
    font-size: 1.4rem; 
    margin-bottom: 0.8rem;
    border-radius: 12px;
  }
  .stats-phenom-number.unified-green { 
    font-size: 2.2rem; 
    margin-bottom: 0.3rem;
  }
  .stats-phenom-label { 
    font-size: 1rem; 
    margin-top: 0.3rem;
  }
}

@media (max-width: 600px) {
  .iconbox-phenom.stats-phenom.stats-phenom-unified.stats-phenom-sq { 
    height: 160px; 
    padding: 1rem 0.5rem; 
  }
  .icon-phenom.stats-phenom-icon.unified-green { 
    width: 44px; 
    height: 44px; 
    font-size: 1.2rem; 
    margin-bottom: 0.6rem;
    border-radius: 10px;
  }
  .stats-phenom-number.unified-green { 
    font-size: 1.8rem; 
  }
  .stats-phenom-label { 
    font-size: 0.9rem; 
  }
}

/* ===== ADDITIONAL ANIMATIONS AND STYLES ===== */

/* Partner and Associate Slider Animations */
@keyframes partner-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-slider {
  animation: partner-slide 18s linear infinite;
}
@keyframes associate-slide-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.associate-slider {
  animation: associate-slide-reverse 22s linear infinite;
}
.partner-slider:hover, .associate-slider:hover {
  animation-play-state: paused;
}

/* ===== SWIPER STYLES MOVED TO swiper-styles.css ===== */
.testimonial-bubble {
  background: #fff;
  border-radius: 2.5rem;
  box-shadow: 0 8px 32px 0 rgba(34,197,94,0.10), 0 2px 8px 0 rgba(0,0,0,0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 480px;
  min-width: 0;
  min-height: 280px;
  height: 320px;
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: visible;
  z-index: 3;
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: center;
}
.testimonial-bubble:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 48px 0 rgba(34,197,94,0.20), 0 4px 16px 0 rgba(0,0,0,0.12);
}
.testimonial-bubble .testimonial-client-photo {
  position: absolute;
  bottom: -10px;
  left: -10px;
  z-index: 20;
}
.testimonial-bubble .relative.w-28.h-28 {
  width: 110px !important;
  height: 110px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 11;
}
.testimonial-bubble .client-photo-border {
  display: none !important;
}
.testimonial-bubble img {
  width: 98px !important;
  height: 98px !important;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: 6px !important;
  left: 6px !important;
  z-index: 12;
  margin: 0;
  border: 4px solid #fff;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(34,197,94,0.10);
}
.testimonial-bubble .flex.mb-4 {
  margin-bottom: 0.7rem !important;
}
.testimonial-bubble p,
.testimonial-bubble .text-gray-700 {
  font-size: 1.02rem !important;
  color: #374151 !important;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.8rem;
  line-height: 1.5;
  min-height: 72px;
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.3s;
}
.testimonial-bubble .testimonial-readmore-btn {
  color: #22c55e;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  font-size: 1rem;
  padding: 0 0.2em;
  transition: color 0.18s;
  margin-bottom: 0.5rem;
}
.testimonial-bubble .testimonial-readmore-btn:hover {
  color: #166534;
}
.testimonial-bubble .font-extrabold {
  font-size: 1.1rem !important;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.2rem;
  text-align: center;
}
.testimonial-bubble .font-semibold {
  font-size: 0.95rem !important;
  color: #64748b;
  margin-bottom: 0.7rem;
  font-weight: 500;
  text-align: center;
}

/* Team Swiper Styles */
.team-swiper {
  width: 100%;
  padding: 2rem 0;
}
.team-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(34,197,94,0.10), 0 2px 8px 0 rgba(0,0,0,0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.team-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 48px 0 rgba(34,197,94,0.20), 0 4px 16px 0 rgba(0,0,0,0.12);
}
.team-card-img-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: 0 4px 16px 0 rgba(34,197,94,0.15);
}
.team-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.team-card:hover .team-card-img {
  transform: scale(1.1);
}
.team-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.team-card-role {
  font-size: 1rem;
  color: #22c55e;
  font-weight: 600;
  margin-bottom: 1rem;
}
.team-card-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.team-card .team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.team-card .team-role {
  font-size: 1rem;
  color: #22c55e;
  font-weight: 600;
  margin-bottom: 1rem;
}
.team-social-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: auto;
}
.team-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0fdf4;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}
.team-social-icon:hover {
  background: #22c55e;
  color: #fff;
  transform: scale(1.1);
}
.team-profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px 0 rgba(34,197,94,0.15);
  transition: transform 0.3s;
}

/* Gallery Swiper Styles */
.gallery-swiper {
  width: 100%;
  padding: 2rem 0;
}
.gallery-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(34,197,94,0.10), 0 2px 8px 0 rgba(0,0,0,0.08);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
  position: relative;
}
.gallery-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 48px 0 rgba(34,197,94,0.20), 0 4px 16px 0 rgba(0,0,0,0.12);
}
.gallery-card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-card:hover .gallery-card-img {
  transform: scale(1.1);
}
.gallery-card-content {
  padding: 1.5rem;
}
.gallery-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.gallery-card-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

/* News Swiper Styles */
.news-swiper {
  width: 100%;
  padding: 2rem 0;
}
.news-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(34,197,94,0.10), 0 2px 8px 0 rgba(0,0,0,0.08);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
  position: relative;
}
.news-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 48px 0 rgba(34,197,94,0.20), 0 4px 16px 0 rgba(0,0,0,0.12);
}
.news-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}
.news-card:hover .news-card-img {
  transform: scale(1.1);
}
.news-card-content {
  padding: 1.5rem;
}
.news-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.news-card-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.news-card-date {
  font-size: 0.8rem;
  color: #22c55e;
  font-weight: 600;
}

/* Breadcrumbs Styles */
.breadcrumb-container {
  background: #f8fafc;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
  z-index: -1;
  position: relative;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #64748b;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb-link {
  color: #22c55e;
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb-link:hover {
  color: #166534;
}
.breadcrumb-separator {
  color: #cbd5e1;
}
.breadcrumb-current {
  color: #374151;
  font-weight: 600;
}

/* ===== FONT AWESOME FIXES ===== */

/* Ensure Font Awesome icons display properly */
.fa-brands,
.fa-solid,
.fa-regular {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Solid", "Font Awesome 6 Regular" !important;
  font-weight: 900;
}

.fa-brands {
  font-weight: 400;
}

/* Social icon specific styles */
.w-8.h-8.flex.items-center.justify-center.rounded-full i {
  font-size: 14px;
}

/* Ensure social icons have proper colors */
.bg-blue-600.text-white i {
  color: white !important;
}

.bg-gray-200.text-black i {
  color: black !important;
}

.bg-blue-700.text-white i {
  color: white !important;
}

.bg-pink-100.text-pink-500 i {
  color: #ec4899 !important;
}

.bg-red-100.text-red-600 i {
  color: #dc2626 !important;
}

/* Mega menu group class fix */
nav ul li.group {
  position: relative;
}

nav ul li.group .mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  z-index: 1000;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #666;
  background: transparent;
  z-index: -1;
  position: relative;
}

.breadcrumbs a {
  color: #22c55e;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: #16a34a;
}

.breadcrumbs .separator {
  color: #999;
  margin: 0 0.5rem;
}

.breadcrumbs .current {
  color: #333;
  font-weight: 500;
}

/* View All Button */
.view-all-btn {
  background: #22c55e !important;
  color: white !important;
  padding: 0.5rem 1rem !important;
  border-radius: 0.5rem !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  border: none !important;
  cursor: pointer !important;
}

.view-all-btn:hover {
  background: #16a34a !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3) !important;
}

/* Ensure no horizontal scroll */
body, html {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

.main-header, .professional-nav, nav {
  overflow: visible !important;
  max-width: 100% !important;
}

/* ===== SWIPER STYLES MOVED TO swiper-styles.css ===== */

/* Final override for mobile header - highest priority */
@media (max-width: 600px) {
  .md\\:hidden.flex.items-center.justify-between.px-0 {
    padding: 0 !important;
    gap: 12px !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }
  
  .md\\:hidden .logo-container {
    flex-shrink: 0 !important;
    height: 50px !important;
    width: 20% !important;
    max-width: 20% !important;
    min-width: 20% !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
  }
  
  .md\\:hidden .header-logo {
    height: 45px !important;
    max-height: 45px !important;
    width: 100% !important;
    object-fit: contain !important;
    display: block !important;
  }
  
  .md\\:hidden .flex.items-center.gap-1 {
    margin: 0 !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    flex: 1 !important;
    justify-content: center !important;
  }
  
  .md\\:hidden #test-hamburger {
    margin: 0 !important;
    flex-shrink: 0 !important;
    width: 20% !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    max-width: 20% !important;
    min-width: 20% !important;
  }
  
  /* Additional specific overrides for perfect alignment */
  .md\\:hidden .logo-container {
    width: 20% !important;
    max-width: 20% !important;
    min-width: 20% !important;
    flex: 0 0 20% !important;
  }
  
  .md\\:hidden #test-hamburger {
    width: 20% !important;
    max-width: 20% !important;
    min-width: 20% !important;
    flex: 0 0 20% !important;
  }
  
  .md\\:hidden .flex.items-center.gap-1 {
    flex: 1 !important;
    justify-content: center !important;
    max-width: 60% !important;
  }
}

/* ===== 3D BELT GALLERY SECTION ===== */
.gallery-3d-section {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

.belt-3d-container {
  position: relative;
  z-index: 10;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

/* 3D Belt Track */
.belt-3d-track {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  animation: belt3DRotate 20s linear infinite;
}

/* 3D Belt Items */
.belt-3d-item {
  position: absolute;
  width: 280px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
}

.belt-3d-item:hover {
  transform: scale(1.05) translateZ(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border-color: rgba(59, 130, 246, 0.5);
}

.belt-3d-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.belt-3d-item.active {
  transform: scale(1.1) translateZ(30px);
  border-color: #3b82f6;
  box-shadow: 0 25px 60px rgba(59, 130, 246, 0.4);
}

/* Position belt items in 3D curved space */
.belt-3d-item:nth-child(1) { 
  transform: rotateY(-60deg) translateZ(200px) translateX(-400px); 
  opacity: 0.6;
}
.belt-3d-item:nth-child(2) { 
  transform: rotateY(-40deg) translateZ(300px) translateX(-250px); 
  opacity: 0.7;
}
.belt-3d-item:nth-child(3) { 
  transform: rotateY(-20deg) translateZ(350px) translateX(-100px); 
  opacity: 0.8;
}
.belt-3d-item:nth-child(4) { 
  transform: rotateY(0deg) translateZ(400px) translateX(0px); 
  opacity: 1;
}
.belt-3d-item:nth-child(5) { 
  transform: rotateY(20deg) translateZ(350px) translateX(100px); 
  opacity: 0.8;
}
.belt-3d-item:nth-child(6) { 
  transform: rotateY(40deg) translateZ(300px) translateX(250px); 
  opacity: 0.7;
}
.belt-3d-item:nth-child(7) { 
  transform: rotateY(60deg) translateZ(200px) translateX(400px); 
  opacity: 0.6;
}
.belt-3d-item:nth-child(8) { 
  transform: rotateY(80deg) translateZ(100px) translateX(550px); 
  opacity: 0.5;
}

/* 3D Belt rotation animation */
@keyframes belt3DRotate {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(-360deg); }
}

/* Pause animation on hover */
.belt-3d-track:hover {
  animation-play-state: paused;
}

/* Responsive design for 3D belt */
@media (max-width: 1200px) {
  .belt-3d-item {
    width: 240px;
    height: 170px;
  }
  
  .belt-3d-item:nth-child(1) { 
    transform: rotateY(-60deg) translateZ(150px) translateX(-300px); 
  }
  .belt-3d-item:nth-child(2) { 
    transform: rotateY(-40deg) translateZ(220px) translateX(-180px); 
  }
  .belt-3d-item:nth-child(3) { 
    transform: rotateY(-20deg) translateZ(250px) translateX(-70px); 
  }
  .belt-3d-item:nth-child(4) { 
    transform: rotateY(0deg) translateZ(280px) translateX(0px); 
  }
  .belt-3d-item:nth-child(5) { 
    transform: rotateY(20deg) translateZ(250px) translateX(70px); 
  }
  .belt-3d-item:nth-child(6) { 
    transform: rotateY(40deg) translateZ(220px) translateX(180px); 
  }
  .belt-3d-item:nth-child(7) { 
    transform: rotateY(60deg) translateZ(150px) translateX(300px); 
  }
  .belt-3d-item:nth-child(8) { 
    transform: rotateY(80deg) translateZ(80px) translateX(400px); 
  }
}

@media (max-width: 768px) {
  .belt-3d-track {
    height: 250px;
  }
  
  .belt-3d-item {
    width: 200px;
    height: 140px;
  }
  
  .belt-3d-item:nth-child(1) { 
    transform: rotateY(-60deg) translateZ(120px) translateX(-250px); 
  }
  .belt-3d-item:nth-child(2) { 
    transform: rotateY(-40deg) translateZ(180px) translateX(-150px); 
  }
  .belt-3d-item:nth-child(3) { 
    transform: rotateY(-20deg) translateZ(200px) translateX(-60px); 
  }
  .belt-3d-item:nth-child(4) { 
    transform: rotateY(0deg) translateZ(220px) translateX(0px); 
  }
  .belt-3d-item:nth-child(5) { 
    transform: rotateY(20deg) translateZ(200px) translateX(60px); 
  }
  .belt-3d-item:nth-child(6) { 
    transform: rotateY(40deg) translateZ(180px) translateX(150px); 
  }
  .belt-3d-item:nth-child(7) { 
    transform: rotateY(60deg) translateZ(120px) translateX(250px); 
  }
  .belt-3d-item:nth-child(8) { 
    transform: rotateY(80deg) translateZ(60px) translateX(320px); 
  }
}

@media (max-width: 480px) {
  .belt-3d-track {
    height: 200px;
  }
  
  .belt-3d-item {
    width: 160px;
    height: 110px;
  }
  
  .belt-3d-item:nth-child(1) { 
    transform: rotateY(-60deg) translateZ(100px) translateX(-200px); 
  }
  .belt-3d-item:nth-child(2) { 
    transform: rotateY(-40deg) translateZ(150px) translateX(-120px); 
  }
  .belt-3d-item:nth-child(3) { 
    transform: rotateY(-20deg) translateZ(170px) translateX(-50px); 
  }
  .belt-3d-item:nth-child(4) { 
    transform: rotateY(0deg) translateZ(180px) translateX(0px); 
  }
  .belt-3d-item:nth-child(5) { 
    transform: rotateY(20deg) translateZ(170px) translateX(50px); 
  }
  .belt-3d-item:nth-child(6) { 
    transform: rotateY(40deg) translateZ(150px) translateX(120px); 
  }
  .belt-3d-item:nth-child(7) { 
    transform: rotateY(60deg) translateZ(100px) translateX(200px); 
  }
  .belt-3d-item:nth-child(8) { 
    transform: rotateY(80deg) translateZ(50px) translateX(250px); 
  }
}

/* ===== GLASS FOUNDER CARDS CTA SECTION ===== */
.glass-founder-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.glass-founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-founder-card:hover::before {
  opacity: 1;
}

.glass-founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
}

.glass-card-inner {
  position: relative;
  z-index: 10;
}

.founder-image-container {
  text-align: center;
  margin-bottom: 1.5rem;
}

.founder-image-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.founder-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(34, 197, 94, 0.2);
  transition: all 0.3s ease;
}

.glass-founder-card:hover .founder-image {
  border-color: rgba(34, 197, 94, 0.6);
  transform: scale(1.05);
}

.founder-image-overlay {
  position: absolute;
  top: -8px;
  right: -8px;
}

.founder-badge {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.founder-info {
  text-align: center;
}

.founder-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.founder-title {
  font-size: 1rem;
  color: #22c55e;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.founder-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #22c55e;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

.founder-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.email-btn {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
}

.email-btn:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.linkedin-btn {
  background: linear-gradient(135deg, #0077b5, #005885);
  color: white;
}

.linkedin-btn:hover {
  background: linear-gradient(135deg, #005885, #004266);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3);
}

.main-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
  border: none;
  cursor: pointer;
}

.main-cta-btn:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
  color: white;
}

/* Responsive Design for Glass Founder Cards */
@media (max-width: 768px) {
  .glass-founder-card {
    padding: 1.5rem;
  }
  
  .founder-image {
    width: 100px;
    height: 100px;
  }
  
  .founder-name {
    font-size: 1.25rem;
  }
  
  .founder-stats {
    gap: 1.5rem;
  }
  
  .stat-value {
    font-size: 1.25rem;
  }
  
  .founder-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .contact-btn {
    justify-content: center;
  }
  
  .main-cta-btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .glass-founder-card {
    padding: 1rem;
  }
  
  .founder-image {
    width: 80px;
    height: 80px;
  }
  
  .founder-name {
    font-size: 1.125rem;
  }
  
  .founder-title {
    font-size: 0.875rem;
  }
  
  .founder-stats {
    gap: 1rem;
  }
  
  .stat-value {
    font-size: 1.125rem;
  }
  
  .stat-label {
    font-size: 0.625rem;
  }
}