/* ===== Theme Colors ===== */
:root {
  --primary-blue: #0b5ed7;
  --primary-blue-light: #1aa3ff;
  --dark-blue: #07152c;
  --dark-blue-light: #0b2f66;
  --text-dark: #0b1b33;
  --text-muted: #6b7a90;
  --bg-light: #f6fbff;
  --white: #ffffff;
  --border-color: rgba(10, 40, 90, 0.10);
  --radius: 18px;
  --shadow-soft: 0 10px 28px rgba(2, 20, 60, 0.08);
  --shadow-medium: 0 16px 45px rgba(2, 20, 60, 0.10);
  
  /* ===== Typography System (Desktop) ===== */
  --font-size-hero-title: 3.5rem;
  --font-size-hero-subtitle: 1.1rem;
  --font-size-section-title: 3rem;
  --font-size-section-subtitle: 1.1rem;
  --font-size-about-title: 2.75rem;
  --font-size-about-description: 16px;
  --font-size-content-large: 1.3rem;
  --font-size-content-base: 1.1rem;
  --font-size-content-small: 1rem;
  
  /* ===== Typography System (Tablet - max-width: 991px) ===== */
  --font-size-hero-title-tablet: 2.8rem;
  --font-size-hero-subtitle-tablet: 1rem;
  --font-size-section-title-tablet: 2.5rem;
  --font-size-section-subtitle-tablet: 1rem;
  --font-size-about-title-tablet: 2.2rem;
  --font-size-about-description-tablet: 15px;
  
  /* ===== Typography System (Mobile - max-width: 768px) ===== */
  --font-size-hero-title-mobile: 2.2rem;
  --font-size-hero-subtitle-mobile: 0.95rem;
  --font-size-section-title-mobile: 2rem;
  --font-size-section-subtitle-mobile: 0.95rem;
  --font-size-about-title-mobile: 1.85rem;
  --font-size-about-description-mobile: 14px;
  
  /* ===== Typography System (Small Mobile - max-width: 576px) ===== */
  --font-size-hero-title-small: 1.85rem;
  --font-size-hero-subtitle-small: 0.9rem;
  --font-size-section-title-small: 1.75rem;
  --font-size-section-subtitle-small: 0.9rem;
  --font-size-about-title-small: 1.6rem;
  --font-size-about-description-small: 14px;
}

/* ===== Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
}

body {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 55%, #ffffff 100%);
  line-height: 1.6;
  overflow-x: hidden;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-style: normal;
}

h2 {
  color: #2782c5;
}

/* ===== Header & Navigation ===== */
.site-header {
  position: fixed;
  top: 0;
  left:0;
  width:100%;
  z-index: 999;
  transition: all 0.3s ease;
  background: transparent;
}

.site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, .09);
}

.navbar-custom {
  padding: 16px 0;
}

.navbar-custom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #ffffff;
  font-size: 24px;
  transition: color 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled .brand {
  color: var(--text-dark);
  text-shadow: none;
}

/* About Page Specific Styles */
/* Ensure about page header has transparent background when not scrolled */
body:has(.about-banner) .site-header:not(.scrolled) {
  background: transparent !important;
  box-shadow: none !important;
}

body:has(.about-banner) .site-header.scrolled {
  background: #ffffff !important;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, .09) !important;
}

/* Override any other rules that might add background to about page header when NOT scrolled */
body:has(.about-banner) .site-header:not(.scrolled),
body:has(.about-banner) .site-header:not(.scrolled) .navbar-custom {
  background: transparent !important;
}

/* White background only when scrolled */
body:has(.about-banner) .site-header.scrolled,
body:has(.about-banner) .site-header.scrolled .navbar-custom {
  background: #ffffff !important;
}

/* Remove text shadows from all header items on about page */
body:has(.about-banner) .site-header:not(.scrolled) .brand,
body:has(.about-banner) .site-header:not(.scrolled) .collapsemenu.desktop-menu a,
body:has(.about-banner) .site-header:not(.scrolled) .phone-number {
  text-shadow: none !important;
}

/* Remove text shadows when scrolled too (for consistency) */
body:has(.about-banner) .site-header.scrolled .brand,
body:has(.about-banner) .site-header.scrolled .collapsemenu.desktop-menu a,
body:has(.about-banner) .site-header.scrolled .phone-number {
  text-shadow: none !important;
}


/* Logo Design Page Header Styles */
body:has(.logo-design-banner-section) .site-header:not(.scrolled) {
  background: transparent !important;
  box-shadow: none !important;
}

body:has(.logo-design-banner-section) .site-header.scrolled {
  background: #ffffff !important;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, .09) !important;
}

body:has(.logo-design-banner-section) .site-header:not(.scrolled) .brand,
body:has(.logo-design-banner-section) .site-header:not(.scrolled) .collapsemenu.desktop-menu a,
body:has(.logo-design-banner-section) .site-header:not(.scrolled) .phone-number {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

body:has(.logo-design-banner-section) .site-header.scrolled .brand,
body:has(.logo-design-banner-section) .site-header.scrolled .collapsemenu.desktop-menu a,
body:has(.logo-design-banner-section) .site-header.scrolled .phone-number {
  color: var(--text-dark) !important;
  text-shadow: none !important;
}

body:has(.logo-design-banner-section) .site-header:not(.scrolled) .phone-number i {
  color: #ffffff !important;
}

body:has(.logo-design-banner-section) .site-header.scrolled .phone-number i {
  color: var(--primary-blue) !important;
}

/* Header styles for all pages except home page, about page, contact page, and logo design page (which have banners) */
body:not(:has(.hero-banner)):not(:has(.about-banner)):not(:has(.contact-banner)):not(:has(.logo-design-banner-section)) .site-header,
.service-page .site-header,
.pricing-page .site-header,
.portfolio-page .site-header {
  background: #ffffff;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, .09);
}

body:not(:has(.hero-banner)):not(:has(.about-banner)):not(:has(.contact-banner)) .site-header .brand,
.service-page .site-header .brand,
.pricing-page .site-header .brand,
.portfolio-page .site-header .brand {
  color: var(--text-dark);
  text-shadow: none;
}

body:not(:has(.hero-banner)):not(:has(.about-banner)):not(:has(.contact-banner)) .site-header .collapsemenu.desktop-menu a,
body:not(:has(.hero-banner)):not(:has(.about-banner)):not(:has(.contact-banner)) .site-header .collapsemenu a,
.service-page .site-header .collapsemenu.desktop-menu a,
.service-page .site-header .collapsemenu a,
.pricing-page .site-header .collapsemenu.desktop-menu a,
.pricing-page .site-header .collapsemenu a,
.portfolio-page .site-header .collapsemenu.desktop-menu a,
.portfolio-page .site-header .collapsemenu a {
  color: var(--text-dark);
  text-shadow: none;
}

body:not(:has(.hero-banner)):not(:has(.about-banner)):not(:has(.contact-banner)) .site-header .collapsemenu.desktop-menu a:hover,
body:not(:has(.hero-banner)):not(:has(.about-banner)):not(:has(.contact-banner)) .site-header .collapsemenu a:hover,
.service-page .site-header .collapsemenu.desktop-menu a:hover,
.service-page .site-header .collapsemenu a:hover,
.pricing-page .site-header .collapsemenu.desktop-menu a:hover,
.pricing-page .site-header .collapsemenu a:hover,
.portfolio-page .site-header .collapsemenu.desktop-menu a:hover,
.portfolio-page .site-header .collapsemenu a:hover {
  color: var(--primary-blue);
  opacity: 1;
}

body:not(:has(.hero-banner)):not(:has(.about-banner)):not(:has(.contact-banner)) .site-header .phone-number,
.service-page .site-header .phone-number,
.pricing-page .site-header .phone-number,
.portfolio-page .site-header .phone-number {
  color: var(--text-dark);
  text-shadow: none;
}

body:not(:has(.hero-banner)):not(:has(.about-banner)):not(:has(.contact-banner)) .site-header .phone-number i,
.service-page .site-header .phone-number i,
.pricing-page .site-header .phone-number i,
.portfolio-page .site-header .phone-number i {
  color: var(--primary-blue);
}

body:not(:has(.hero-banner)):not(:has(.about-banner)):not(:has(.contact-banner)) .site-header .phone-number:hover,
.service-page .site-header .phone-number:hover,
.pricing-page .site-header .phone-number:hover,
.portfolio-page .site-header .phone-number:hover {
  color: var(--primary-blue);
  opacity: 1;
}

/* ===== CONTACT PAGE HEADER STYLES - MUST BE AFTER GENERAL RULES ===== */
/* Ensure contact page header has transparent background when not scrolled */
body:has(.contact-banner) .site-header:not(.scrolled),
body:has(.contact-banner) .site-header:not(.scrolled) .navbar-custom,
body:has(.contact-banner) .site-header:not(.scrolled) .container {
  background: transparent !important;
  /* box-shadow: none !important; */
}

/* Override ALL possible white background rules for contact page when not scrolled */
body:has(.contact-banner) .site-header:not(.scrolled) {
  background: transparent !important;
  box-shadow: none !important;
}

/* White background only when scrolled on contact page */
body:has(.contact-banner) .site-header.scrolled,
body:has(.contact-banner) .site-header.scrolled .navbar-custom {
  background: #ffffff !important;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, .09) !important;
}

/* Text colors white when not scrolled on contact page */
body:has(.contact-banner) .site-header:not(.scrolled) .brand,
body:has(.contact-banner) .site-header:not(.scrolled) .collapsemenu.desktop-menu a,
body:has(.contact-banner) .site-header:not(.scrolled) .phone-number {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

/* Text colors black when scrolled on contact page */
body:has(.contact-banner) .site-header.scrolled .brand,
body:has(.contact-banner) .site-header.scrolled .collapsemenu.desktop-menu a,
body:has(.contact-banner) .site-header.scrolled .phone-number {
  color: var(--text-dark) !important;
  text-shadow: none !important;
}

/* Phone number hover states on contact page */
body:has(.contact-banner) .site-header:not(.scrolled) .phone-number:hover {
  color: #ffffff !important;
  opacity: 0.9 !important;
}

body:has(.contact-banner) .site-header.scrolled .phone-number:hover {
  color: var(--primary-blue) !important;
  opacity: 1 !important;
}

/* Menu links hover states on contact page */
body:has(.contact-banner) .site-header:not(.scrolled) .collapsemenu.desktop-menu a:hover {
  color: #ffffff !important;
  opacity: 0.9 !important;
}

body:has(.contact-banner) .site-header.scrolled .collapsemenu.desktop-menu a:hover {
  color: var(--primary-blue) !important;
  opacity: 1 !important;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #2782c5;
  box-shadow: 0 10px 22px rgba(11, 94, 215, 0.25);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
}

/* Desktop Menu */
.collapsemenu.desktop-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 24px;
}

/* Homepage specific: Push menu items more to the right, closer to phone number */
body:has(.hero-banner) .collapsemenu.desktop-menu > div {
  justify-content: flex-end !important;
  gap: 60px;
}

body:has(.hero-banner) .collapsemenu.desktop-menu > div > div:first-child {
  margin-left: auto;
  margin-right: 0;
}

/* Contact page: Same navigation alignment as homepage */
body:has(.contact-banner) .collapsemenu.desktop-menu > div {
  justify-content: flex-end !important;
  gap: 60px;
}

body:has(.contact-banner) .collapsemenu.desktop-menu > div > div:first-child {
  margin-left: auto;
  margin-right: 0;
}

/* Landing Page: Transparent Header - Banner color shows through */
body:has(.hero-banner-modern) .site-header:not(.scrolled) {
  background: transparent !important;
  box-shadow: none !important;
}

/* Landing Page: Menu items aligned to right (towards phone number) */
body:has(.hero-banner-modern) .collapsemenu.desktop-menu > div {
  justify-content: flex-end !important;
  gap: 60px;
}

body:has(.hero-banner-modern) .collapsemenu.desktop-menu > div > div:first-child {
  margin-left: auto;
  margin-right: 0;
}

body:has(.hero-banner-modern) .site-header:not(.scrolled) .navbar-custom {
  background: transparent !important;
}

body:has(.hero-banner-modern) .site-header:not(.scrolled) .container {
  background: transparent !important;
}

body:has(.hero-banner-modern) .site-header:not(.scrolled) .navbar-custom .container {
  background: transparent !important;
}

body:has(.hero-banner-modern) .site-header:not(.scrolled) .brand,
body:has(.hero-banner-modern) .site-header:not(.scrolled) .collapsemenu.desktop-menu a,
body:has(.hero-banner-modern) .site-header:not(.scrolled) .phone-number {
  color: #ffffff !important;
  /* text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important; */
}

body:has(.hero-banner-modern) .site-header:not(.scrolled) .phone-icon {
  color: #ffffff !important;
}

body:has(.hero-banner-modern) .site-header:not(.scrolled) .collapsemenu.desktop-menu a:hover {
  color: #ffffff !important;
  opacity: 0.9 !important;
}

body:has(.hero-banner-modern) .site-header:not(.scrolled) .phone-number:hover {
  color: #ffffff !important;
  opacity: 0.9 !important;
}

/* Landing Page: White header when scrolled */
body:has(.hero-banner-modern) .site-header.scrolled,
body:has(.hero-banner-modern) .site-header.scrolled .navbar-custom {
  background: #ffffff !important;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, .09) !important;
}

body:has(.hero-banner-modern) .site-header.scrolled .brand,
body:has(.hero-banner-modern) .site-header.scrolled .collapsemenu.desktop-menu a,
body:has(.hero-banner-modern) .site-header.scrolled .phone-number {
  color: var(--text-dark) !important;
  text-shadow: none !important;
}

/* About page: Same navigation alignment as homepage */
body:has(.about-banner) .collapsemenu.desktop-menu > div {
  justify-content: flex-end !important;
  gap: 60px;
}

body:has(.about-banner) .collapsemenu.desktop-menu > div > div:first-child {
  margin-left: auto;
  margin-right: 0;
}

/* Logo Design page: Same navigation alignment as homepage */
body:has(.logo-design-banner-section) .collapsemenu.desktop-menu > div {
  justify-content: flex-end !important;
  gap: 60px;
}

body:has(.logo-design-banner-section) .collapsemenu.desktop-menu > div > div:first-child {
  margin-left: auto;
  margin-right: 0;
}

/* Hide Mobile Menu Drawer on Desktop */
@media (min-width: 992px) {
  .mobile-menu-drawer {
    display: none !important;
  }
  
  .mobile-menu-overlay {
    display: none !important;
  }
  
  .mobile-menu-header {
    display: none !important;
  }
  
  .mobile-menu-content {
    display: none !important;
  }
  
  .mobile-menu-phone {
    display: none !important;
  }
  
  .toggle {
    display: none !important;
  }
  
  .desktop-menu {
    display: flex !important;
  }
}

.collapsemenu.desktop-menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled .collapsemenu.desktop-menu a {
  color: var(--text-dark);
  text-shadow: none;
}

.collapsemenu.desktop-menu a:hover {
  color: #ffffff;
  opacity: 0.9;
}

.site-header.scrolled .collapsemenu.desktop-menu a:hover {
  color: var(--primary-blue);
  opacity: 1;
}

/* Dropdown Menu Styles */
.dropdown-menu-wrapper {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-toggle .bi-chevron-down {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown-menu-wrapper:hover .dropdown-toggle .bi-chevron-down {
  transform: rotate(180deg);
}

/* Mega Menu Styles */
.dropdown-menu-custom.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #ffffff;
  width: 700px;
  max-width: 90vw;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 30px;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  border: 1px solid rgba(39, 130, 197, 0.1);
  pointer-events: none;
}

/* Add invisible padding area to bridge gap between toggle and dropdown */
.dropdown-menu-wrapper::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
  pointer-events: auto;
  z-index: 999;
}

.dropdown-menu-wrapper:hover .dropdown-menu-custom.mega-menu,
.dropdown-menu-wrapper .dropdown-menu-custom.mega-menu[style*="block"] {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mega-menu-item {
  position: relative;
}

.mega-menu-item a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #f8f9fa;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.mega-menu-item a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(39, 130, 197, 0.1), transparent);
  transition: left 0.5s ease;
}

.mega-menu-item a:hover::before {
  left: 100%;
}

.mega-menu-item a:hover {
  background: #ffffff;
  border-color: #2782c5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 130, 197, 0.15);
}

.mega-menu-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2782c5, #1a6ba3);
  color: #ffffff;
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(39, 130, 197, 0.3);
}

.mega-menu-item a:hover .mega-menu-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 18px rgba(39, 130, 197, 0.4);
}

.mega-menu-text {
  flex: 1;
}

.mega-menu-text h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
  text-shadow: none;
}

.mega-menu-text p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.mega-menu-item a:hover .mega-menu-text h6 {
  color: #2782c5;
}

.mega-menu-arrow {
  color: var(--text-muted);
  font-size: 18px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-10px);
}

.mega-menu-item a:hover .mega-menu-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #2782c5;
}

/* Responsive Mega Menu - Desktop Only */
@media (max-width: 991px) {
  /* Hide desktop menu on mobile */
  .desktop-menu {
    display: none !important;
  }
  
  /* Show toggle button on mobile */
  .toggle {
    display: block !important;
  }
  
  /* Show mobile menu drawer on mobile */
  .mobile-menu-drawer {
    display: flex !important;
  }
  
  /* Hide mega menu on mobile (it's in the drawer now) */
  .dropdown-menu-custom.mega-menu {
    display: none;
  }
  
  .dropdown-menu-wrapper {
    position: static;
  }

  /* Show client logos section on mobile */
  .client-logos-section {
    display: block !important;
    visibility: visible !important;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .client-logos-carousel {
    display: block !important;
    visibility: visible !important;
  }
}

.phone-number {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header.scrolled .phone-number {
  color: var(--text-dark);
  text-shadow: none;
}

.phone-icon {
  color: #2782c5;
  transition: color 0.3s ease;
}

.site-header.scrolled .phone-icon {
  color: #2782c5;
}

.phone-number:hover {
  color: #ffffff;
  opacity: 0.9;
}

.site-header.scrolled .phone-number:hover {
  color: var(--primary-blue);
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}


.btn-brand {
  background: #2782c5;
  border: none;
  color: #fff;
  font-weight: 800;
  border-radius: 12px;
  padding: 10px 30px;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(39, 130, 197, 0.22);
  transition: all 0.3s ease;
}

.btn-brand:hover {
  border: 1px solid #2782c5;
  color: #2782c5;
}

/* Mobile Toggle */
.toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  background: #fff;
  position: relative;
  cursor: pointer;
}

.toggle:before,
.toggle:after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 99px;
  transition: 0.2s ease;
}

.site-header:not(.scrolled) .toggle {
  border-color: rgba(255, 255, 255, 0.3);
  background: #2782c5;
}

.site-header:not(.scrolled) .toggle:before,
.site-header:not(.scrolled) .toggle:after {
  background: #ffffff;
}

.toggle:before {
  top: 15px;
}

.toggle:after {
  top: 24px;
}

/* ===== Hero Banner Section ===== */
.hero-banner {
  position: relative;
  padding: 180px 0 20px 0;
  overflow: hidden;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #000000;
}

/* Video Background */
.hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}

.hero-background-image {
  display: none;
}

/* Black Overlay */
.hero-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

/* Blue Radial Blur Effects */
.hero-background-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(39, 130, 197, 0.25) 0%, rgba(39, 130, 197, 0.15) 30%, rgba(39, 130, 197, 0.08) 50%, transparent 70%);
  filter: blur(80px);
  z-index: 2;
  transform: translate(20%, -20%);
  pointer-events: none;
}

.hero-background-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(39, 130, 197, 0.25) 0%, rgba(39, 130, 197, 0.15) 30%, rgba(39, 130, 197, 0.08) 50%, transparent 70%);
  filter: blur(80px);
  z-index: 2;
  transform: translate(-20%, 20%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 4rem;
}

/* Hero Left and Right Images - Creative Design */
.hero-left-image,
.hero-right-image {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

/* Decorative floating elements behind images */
.hero-left-image::before,
.hero-right-image::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: float 6s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero-left-image::before {
  top: 20%;
  left: -50px;
  animation-delay: 0s;
}

.hero-right-image::before {
  bottom: 20%;
  right: -50px;
  animation-delay: 2s;
}

.hero-left-image::after,
.hero-right-image::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 130, 197, 0.2) 0%, transparent 70%);
  filter: blur(30px);
  z-index: -1;
  animation: float 8s ease-in-out infinite reverse;
  will-change: transform, opacity;
}

.hero-left-image::after {
  bottom: 10%;
  left: -30px;
  animation-delay: 1s;
}

.hero-right-image::after {
  top: 10%;
  right: -30px;
  animation-delay: 3s;
}

.hero-left-image img,
.hero-right-image img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 40px rgba(39, 130, 197, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(15px);
  padding: 25px;
  animation: fadeInUp 1s ease-out, floatImage 4s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform, opacity;
  position: relative;
}

.hero-left-image img {
  transform: rotate(-8deg);
}

.hero-left-image img:hover {
  transform: rotate(-8deg) scale(1.08) translateY(-10px);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 60px rgba(39, 130, 197, 0.4);
}

.hero-right-image img {
  transform: rotate(8deg);
}

.hero-right-image img:hover {
  transform: rotate(8deg) scale(1.08) translateY(-10px);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 60px rgba(39, 130, 197, 0.4);
}

.hero-left-image {
  animation-delay: 0.3s;
}

.hero-right-image {
  animation-delay: 0.5s;
}

/* Floating animation for images */
@keyframes floatImage {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Floating animation for decorative elements */
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
    opacity: 0.8;
  }
}

/* ===== Modern Hero Banner (Landing Page Only) ===== */
.hero-banner-modern {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #2782c5;
  padding-top: 0;
  margin-top: 0;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Animated background gradient overlay - Desktop only */
@media (min-width: 992px) {
  .hero-banner-modern {
    background: linear-gradient(135deg, #2782c5 0%, #2a8dd4 50%, #2782c5 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    will-change: background-position;
  }
  
  @keyframes gradientShift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
}

/* Radial blur white effects */
.hero-banner-modern::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-banner-modern::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* Subtle floating animation for blur effects - Desktop only */
@media (min-width: 992px) {
  .hero-banner-modern::before {
    animation: floatBlurLeft 12s ease-in-out infinite;
    will-change: transform, opacity;
  }
  
  .hero-banner-modern::after {
    animation: floatBlurRight 10s ease-in-out infinite;
    will-change: transform, opacity;
  }
  
  @keyframes floatBlurLeft {
    0%, 100% {
      transform: translate(0, 0) scale(1);
      opacity: 0.4;
    }
    50% {
      transform: translate(-30px, -20px) scale(1.1);
      opacity: 0.5;
    }
  }
  
  @keyframes floatBlurRight {
    0%, 100% {
      transform: translate(0, 0) scale(1);
      opacity: 0.4;
    }
    50% {
      transform: translate(30px, 20px) scale(1.1);
      opacity: 0.5;
    }
  }
}

.hero-banner-modern .hero-content-section {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  z-index: 2;
}

.hero-banner-modern .hero-content-wrapper {
  max-width: 600px;
  width: 100%;
  text-align: left;
}

.hero-banner-modern .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
  opacity: 0.9;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 6px 20px;
  /* background: rgba(255, 255, 255, 0.1); */
  backdrop-filter: blur(10px);
}

.hero-banner-modern .hero-badge-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-banner-modern .hero-badge-stars .bi-star-fill {
  color: #FFD700;
  font-size: 16px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.hero-banner-modern .hero-title-modern {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: left;
}

.hero-banner-modern .hero-title-white {
  color: #ffffff;
}

.hero-banner-modern .hero-title-yellow {
  color: #FFD700;
}

.hero-banner-modern .hero-title-accent {
  font-weight: 700;
  opacity: 0.95;
  color: #ffffff;
}

.hero-banner-modern .hero-divider {
  width: 80px;
  height: 2px;
  background: #ffffff;
  margin: 30px 0;
  border: 1px dashed rgba(255, 255, 255, 0.5);
}

.hero-banner-modern .hero-cta-form {
  margin: 40px 0 20px 0;
}

.hero-banner-modern .hero-input-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.hero-banner-modern .hero-input-field {
  width: 100%;
  padding: 18px 20px 18px 50px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  background: #ffffff;
  color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.hero-banner-modern .hero-input-field::placeholder {
  text-align: left;
}

.hero-banner-modern .hero-input-field:focus {
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-banner-modern .hero-input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  object-fit: contain;
  pointer-events: none;
}

.hero-banner-modern .hero-cta-button {
  width: 100%;
  padding: 18px 30px;
  background: #0b1b33;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-banner-modern .hero-cta-button:hover {
  background: #1a2d4a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-banner-modern .hero-guarantee-text {
  color: #ffffff;
  font-size: 15px;
  margin-top: 20px;
  opacity: 0.9;
  /* font-style: italic; */
  text-align: left;
}

/* Right Side - Showcase */
.hero-banner-modern .hero-showcase-section {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  margin-top: 54px;
}

/* Mobile Logo Slider - Bottom of Banner */
.hero-banner-logo-slider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 3;
  overflow: hidden;
}

.hero-logo-slider-track {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
}

.hero-logo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  z-index: 1;
  animation: swipeLogo 4s ease-in-out infinite;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-logo-slide:nth-child(1) { animation-delay: 0s; z-index: 10; }
.hero-logo-slide:nth-child(2) { animation-delay: 4s; z-index: 10; }
.hero-logo-slide:nth-child(3) { animation-delay: 8s; z-index: 10; }
.hero-logo-slide:nth-child(4) { animation-delay: 12s; z-index: 10; }
.hero-logo-slide:nth-child(5) { animation-delay: 16s; z-index: 10; }
.hero-logo-slide:nth-child(6) { animation-delay: 20s; z-index: 10; }
.hero-logo-slide:nth-child(7) { animation-delay: 24s; z-index: 10; }
.hero-logo-slide:nth-child(8) { animation-delay: 28s; z-index: 10; }
.hero-logo-slide:nth-child(9) { animation-delay: 32s; z-index: 10; }
.hero-logo-slide:nth-child(10) { animation-delay: 36s; z-index: 10; }
.hero-logo-slide:nth-child(11) { animation-delay: 40s; z-index: 10; }
.hero-logo-slide:nth-child(12) { animation-delay: 44s; z-index: 10; }
.hero-logo-slide:nth-child(13) { animation-delay: 48s; z-index: 10; }
.hero-logo-slide:nth-child(14) { animation-delay: 52s; z-index: 10; }
.hero-logo-slide:nth-child(15) { animation-delay: 56s; z-index: 10; }
.hero-logo-slide:nth-child(16) { animation-delay: 60s; z-index: 10; }
.hero-logo-slide:nth-child(17) { animation-delay: 64s; z-index: 10; }
.hero-logo-slide:nth-child(18) { animation-delay: 68s; z-index: 10; }
.hero-logo-slide:nth-child(19) { animation-delay: 72s; z-index: 10; }
.hero-logo-slide:nth-child(20) { animation-delay: 76s; z-index: 10; }
.hero-logo-slide:nth-child(21) { animation-delay: 80s; z-index: 10; }

@keyframes swipeLogo {
  0% {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
  }
  5% {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  95% {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
  }
}

/* Ensure only visible logo has higher z-index */

/* .hero-banner-modern .hero-showcase-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
} */

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-showcase-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  height: 100%;
  min-height: 600px;
}

.branding-mockups {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Mockup Items */
.mockup-item {
  position: absolute;
  animation: floatIn 1s ease-out forwards;
  opacity: 0;
  will-change: transform, opacity;
}

.mockup-item:nth-child(1) { animation-delay: 0.2s; }
.mockup-item:nth-child(2) { animation-delay: 0.4s; }
.mockup-item:nth-child(3) { animation-delay: 0.6s; }
.mockup-item:nth-child(4) { animation-delay: 0.8s; }
.mockup-item:nth-child(5) { animation-delay: 1s; }
.mockup-item:nth-child(6) { animation-delay: 1.2s; }

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

/* Phone Mockup */
.mockup-phone {
  top: 10%;
  left: 10%;
  transform: rotate(-5deg);
}

.phone-frame {
  width: 180px;
  height: 360px;
  background: #000;
  border-radius: 25px;
  padding: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2782c5 0%, #1a6ba3 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.phone-logo-display {
  text-align: center;
  color: #ffffff;
}

.phone-logo-display .logo-preview {
  font-size: 32px;
  font-weight: 700;
  font-family: 'WF Visual Sans', cursive;
  margin-bottom: 8px;
}

.phone-logo-display .logo-subtitle {
  font-size: 12px;
  opacity: 0.9;
}

/* Business Cards */
.mockup-card-1 {
  top: 20%;
  right: 15%;
  transform: rotate(8deg);
}

.mockup-card-2 {
  bottom: 25%;
  left: 5%;
  transform: rotate(-12deg);
}

.business-card {
  width: 280px;
  height: 160px;
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  position: relative;
}

.card-logo {
  font-size: 24px;
  font-weight: 700;
  color: #2782c5;
  margin-bottom: 5px;
  font-family: 'WF Visual Sans', cursive;
}

.card-subtitle {
  font-size: 11px;
  color: #666;
  margin-bottom: 15px;
}

.card-details {
  font-size: 10px;
  color: #888;
  line-height: 1.6;
}

/* Notebook */
.mockup-notebook {
  bottom: 15%;
  right: 10%;
  transform: rotate(5deg);
}

.notebook-cover {
  width: 120px;
  height: 160px;
  background: #2782c5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 5px;
}

.notebook-logo {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'WF Visual Sans', cursive;
}

.notebook-pages {
  width: 120px;
  height: 160px;
  background: #ffffff;
  border-radius: 4px;
  padding: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.notebook-line {
  height: 2px;
  background: #e0e0e0;
  margin-bottom: 12px;
  border-radius: 1px;
}

.notebook-line:nth-child(1) { width: 90%; }
.notebook-line:nth-child(2) { width: 85%; }
.notebook-line:nth-child(3) { width: 95%; }

/* Package */
.mockup-package {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.package-box {
  width: 140px;
  height: 100px;
  background: #2782c5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
}

.package-logo {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  font-family: 'WF Visual Sans', cursive;
}

.package-tag {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #8b6f47;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Blue Card */
.mockup-blue-card {
  top: 5%;
  right: 5%;
  transform: rotate(10deg);
}

.blue-card {
  width: 200px;
  height: 120px;
  background: #2782c5;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.blue-card-logo {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  font-family: 'WF Visual Sans', cursive;
}

.blue-card-subtitle {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design - Landing Page Only */
/* Responsive Radial Blur Effects */
@media (max-width: 768px) {
  .hero-banner-modern::before,
  .hero-banner-modern::after {
    width: 300px;
    height: 300px;
    filter: blur(40px);
  }
}

@media (max-width: 991px) {
  /* Hide right showcase on tablet and below */
  .hero-banner-modern .hero-showcase-section {
    display: none !important;
  }
  
  /* Make left content full width */
  .hero-banner-modern .hero-content-section {
    width: 100%;
    min-height: auto;
    padding: 50px 30px;
  }
  
  .hero-banner-modern .hero-title-modern {
    font-size: 2.5rem;
    text-align: left;
    line-height: 1.3;
  }
  
  .hero-banner-modern .hero-content-wrapper {
    max-width: 100%;
  }
  
  .hero-banner-modern {
    min-height: auto;
    padding: 70px 0 50px 0;
  }
  
  .hero-banner-modern .hero-badge {
    font-size: 13px;
    padding: 6px 18px;
    margin-bottom: 18px;
  }
  
  .hero-banner-modern .hero-badge-stars .bi-star-fill {
    font-size: 14px;
  }
  
  .hero-banner-modern .hero-cta-form {
    margin: 35px 0 18px 0;
  }
  
  .hero-banner-modern .hero-input-field {
    padding: 16px 18px 16px 45px;
    font-size: 15px;
  }
  
  .hero-banner-modern .hero-input-icon {
    width: 18px;
    height: 18px;
    left: 18px;
  }
  
  .hero-banner-modern .hero-cta-button {
    padding: 16px 28px;
    font-size: 15px;
  }
  
  .hero-banner-modern .hero-guarantee-text {
    font-size: 14px;
    margin-top: 18px;
  }
}

@media (max-width: 768px) {
  /* Hide right side showcase on mobile */
  .hero-banner-modern .hero-showcase-section {
    display: none !important;
  }
  
  /* Make left content section full width on mobile */
  .hero-banner-modern .hero-content-section {
    width: 100%;
    padding: 40px 20px;
  }
  
  .hero-banner-modern .hero-title-modern {
    font-size: 2rem;
    text-align: left;
    line-height: 1.3;
    margin-bottom: 18px;
  }
  
  .hero-banner-modern .hero-content-wrapper {
    text-align: left;
    max-width: 100%;
  }
  
  /* Adjust banner height for mobile */
  .hero-banner-modern {
    min-height: auto;
    padding: 60px 0 40px 0;
  }
  
  .hero-banner-modern .hero-badge {
    font-size: 12px;
    padding: 5px 16px;
    gap: 10px;
    margin-bottom: 16px;
  }
  
  .hero-banner-modern .hero-badge-stars {
    gap: 3px;
  }
  
  .hero-banner-modern .hero-badge-stars .bi-star-fill {
    font-size: 13px;
  }
  
  .hero-banner-modern .hero-cta-form {
    margin: 30px 0 16px 0;
  }
  
  .hero-banner-modern .hero-input-field {
    padding: 14px 16px 14px 42px;
    font-size: 14px;
  }
  
  .hero-banner-modern .hero-input-icon {
    width: 16px;
    height: 16px;
    left: 16px;
  }
  
  .hero-banner-modern .hero-cta-button {
    padding: 14px 24px;
    font-size: 14px;
    letter-spacing: 0.8px;
  }
  
  .hero-banner-modern .hero-guarantee-text {
    font-size: 13px;
    margin-top: 16px;
  }
}

@media (max-width: 576px) {
  .hero-banner-modern .hero-content-section {
    padding: 35px 16px;
  }
  
  .hero-banner-modern {
    padding: 180px 0 200px 0;
  }
  
  .hero-banner-modern .hero-title-modern {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }
  
  .hero-banner-modern .hero-badge {
    font-size: 11px;
    padding: 4px 14px;
    gap: 8px;
  }
  
  .hero-banner-modern .hero-badge-stars .bi-star-fill {
    font-size: 12px;
  }
  
  .hero-banner-modern .hero-cta-form {
    margin: 25px 0 14px 0;
  }
  
  .hero-banner-modern .hero-input-field {
    padding: 12px 14px 12px 38px;
    font-size: 13px;
  }
  
  .hero-banner-modern .hero-input-icon {
    width: 14px;
    height: 14px;
    left: 14px;
  }
  
  .hero-banner-modern .hero-cta-button {
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .hero-banner-modern .hero-guarantee-text {
    font-size: 12px;
  }
}

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

/* ===== Trusted Brands Section (Landing Page Only) ===== */
.trusted-brands-section {
  padding: 80px 0;
  background: #ffffff;
}

.trusted-brands-title {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.trusted-brands-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  /* gap: 40px 30px; */
  align-items: center;
  justify-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.brand-logo-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 80px;
}

.brand-logo-image {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
}

.brand-logo-text {
  font-size: 14px;
  font-weight: 600;
  color: #0b1b33;
  text-align: center;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
}

.brand-logo-subtext {
  font-size: 10px;
  font-weight: 400;
  display: block;
  margin-top: 4px;
  opacity: 0.8;
}

.brand-logo-text sup {
  font-size: 8px;
  vertical-align: super;
}

/* Specific brand logo styles */
.brand-logo-vienna {
  color: #FFD700;
  font-weight: 700;
}

.brand-logo-adp {
  color: #D32F2F;
  font-weight: 800;
  font-size: 18px;
}

.brand-logo-rmhc {
  font-size: 12px;
  line-height: 1.3;
}

.brand-logo-food {
  color: #4CAF50;
  font-size: 12px;
  font-weight: 700;
}

.brand-logo-lou {
  font-family: 'WF Visual Sans', cursive;
  font-size: 16px;
}

.brand-logo-marmon {
  color: #2782c5;
  font-size: 13px;
}

.brand-logo-zoo {
  color: #4CAF50;
  font-weight: 700;
  font-size: 13px;
}

.brand-logo-accelerance {
  color: #7B1FA2;
  font-weight: 700;
  font-size: 15px;
}

.brand-logo-olivet {
  color: #7B1FA2;
  font-weight: 700;
  font-size: 13px;
}

.brand-logo-byline {
  color: #FF6B35;
  font-weight: 700;
}

.brand-logo-gordon {
  color: #D32F2F;
  font-weight: 700;
  font-size: 16px;
}

.brand-logo-preferida {
  color: #D32F2F;
  font-weight: 700;
  font-size: 13px;
}

.brand-logo-tillman {
  font-weight: 700;
  font-size: 12px;
}

.brand-logo-federal {
  color: #757575;
  font-weight: 700;
  font-size: 13px;
}

.trusted-brands-description {
  font-size: 16px;
  color: #6b7a90;
  margin-top: 40px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

/* Responsive Design for Trusted Brands */
@media (max-width: 1200px) {
  .trusted-brands-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 35px 25px;
  }
}

@media (max-width: 991px) {
  .trusted-brands-title {
    font-size: 2rem;
    margin-bottom: 50px;
  }
  
  .trusted-brands-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
  }
  
  .trusted-brands-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .trusted-brands-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
  
  .trusted-brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 15px;
  }
  
  .brand-logo-wrapper {
    padding: 15px;
    min-height: 70px;
  }
  
  .brand-logo-text {
    font-size: 12px;
  }
  
  .trusted-brands-description {
    font-size: 14px;
    margin-top: 30px;
  }
  
  .trusted-brands-section {
    padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .trusted-brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
  
  .trusted-brands-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .brand-logo-text {
    font-size: 11px;
  }
}

.hero-main-title {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  font-size: var(--font-size-hero-title);
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
  animation: fadeInDown 1s ease-out;
}

.hero-sub-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--font-size-hero-subtitle);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  animation: fadeInDown 1.2s ease-out;
}

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

.hero-search-container {
  max-width: 550px;
  margin: 0 auto 30px;
  animation: fadeInUp 1.4s ease-out;
}

/* Trustpilot Reviews Banner */
.trustpilot-banner {
  position: relative;
  max-width: 700px;
  margin: auto;
  text-align: center;
  animation: fadeInUp 1.6s ease-out;
 
}

.trustpilot-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.trustpilot-text {
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.trustpilot-text strong {
  font-weight: 700;
  color: #ffe60a;
  font-size: 18px;
}

.trustpilot-star {
  display: inline-flex;
  align-items: center;
  margin: 0 4px;
}

.trustpilot-star svg {
  width: 20px;
  height: 20px;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.scroll-text {
  font-size: 14px;
  color: #0b1b33;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-indicator i {
  font-size: 20px;
  color: #2782c5;
  animation: bounceDown 2s ease-in-out infinite;
}

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

@media (max-width: 768px) {
  .trustpilot-banner {
    padding: 20px 16px;
    margin: 8px auto 0;
  }

  .trustpilot-text {
    font-size: 14px;
  }

  .trustpilot-text strong {
    font-size: 16px;
  }

  .trustpilot-star svg {
    width: 18px;
    height: 18px;
  }
}

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

.hero-search-group {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
  border: none;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  padding: 5px 0;
  width: 100%;
}
.hero-search-group form{
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.hero-search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-search-group form {
    position: relative;
  }
  
  .hero-search-input-wrapper {
    width: 100%;
  }
  
  .hero-search-group .btn-primary {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    min-width: 130px;
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 12px;
    margin: 0;
    z-index: 2;
  }
}

.hero-search-icon {
  position: absolute;
  left: 20px;
  color: #2782c5;
  font-size: 20px;
  z-index: 1;
  pointer-events: none;
}

.hero-search-input {
  border: none !important;
  padding: 20px 30px 20px 55px !important;
  font-size: 18px;
  border-radius: 50px 0 0 50px;
  background: #fff;
  outline: none !important;
  width: 100%;
  flex-shrink: 0;
  text-align: left;
  color: var(--text-dark);
}

.hero-search-input:focus,
.hero-search-input:focus-visible,
.hero-search-input:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: #fff !important;
}

.hero-search-input:focus + .hero-search-icon,
.hero-search-input-wrapper:focus-within .hero-search-icon {
  color: #1a6ba3;
}

.hero-search-input:required {
  border: none !important;
}

.hero-search-input:invalid {
  border: none !important;
  box-shadow: none !important;
}

.hero-search-input:valid {
  border: none !important;
}

.hero-search-input:-webkit-autofill,
.hero-search-input:-webkit-autofill:hover,
.hero-search-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: #333 !important;
  border: none !important;
  outline: none !important;
}

.hero-search-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
  text-align: left;
}

.hero-form-btn {
  background: #2782c5;
  color: #fff;
  border: none;
  padding: 20px 50px;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50px 50px 50px 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(39, 130, 197, 0.3);
  transition: all 0.3s ease;
  font-family: inherit;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  white-space: nowrap;
  width: 35%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.hero-form-btn::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;
}

.hero-form-btn:hover::before {
  left: 100%;
}

.hero-form-btn:hover {
  background: #1a6ba3;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(39, 130, 197, 0.4);
}

.hero-form-btn:hover span {
  display: inline-block;
  animation: buttonTextPulse 0.6s ease;
}

@keyframes buttonTextPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hero-form-btn:focus {
  outline: none;
}
.hero-phone-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-top: 20px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-phone-text strong {
  color: #ffffff;
  font-weight: 700;
}

/* Client Logos Section */
.client-logos-section {
  margin-top: 60px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  transform: translateY(0);
  display: block;
  visibility: visible;
}

.client-logos-carousel {
  padding: 55px 20px 0 20px;
  background: transparent;
  border-radius: 16px;
}

.client-logo-item {
  text-align: center;
  padding: 15px 20px;
  transition: all 0.3s ease;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.9;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.client-logo-item:hover .logo-text {
  opacity: 1;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Owl Carousel Custom Styles */
.client-logos-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.client-logos-carousel .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hide navigation and dots */
.client-logos-carousel .owl-nav {
  display: none !important;
}

.client-logos-carousel .owl-dots {
  display: none !important;
}

/* ===== Portfolio Section ===== */
.portfolio-section {
  padding: 100px 0;
  background: #fff;
}

.portfolio-header {
  margin-bottom: 60px;
}

.portfolio-main-title {
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.portfolio-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Portfolio Filter Buttons */
.portfolio-filter-wrapper {
  margin-bottom: 40px;
}

.portfolio-filter-list {
  margin: 0;
  padding: 0;
}

.portfolio-filter-btn {
  background: transparent;
  border: 2px solid #e0e0e0;
  color: var(--text-dark);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.portfolio-filter-btn:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: rgba(0, 123, 255, 0.05);
}

.portfolio-filter-btn.active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
}

.portfolio-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
}

/* Portfolio Grid - Default (for portfolio.html) */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

/* Portfolio Grid - Masonry (for index.html only) */
#portfolio-masonry {
  margin: 0 auto;
  margin-bottom: 50px;
}

#portfolio-masonry::after {
  content: '';
  display: block;
  clear: both;
}

#portfolio-masonry .portfolio-grid-item {
  width: calc(33.333% - 14px);
  margin-bottom: 20px;
  float: left;
  margin-right: 20px;
}

#portfolio-masonry .portfolio-grid-item:nth-child(3n) {
  margin-right: 0;
}

@media (max-width: 992px) {
  #portfolio-masonry .portfolio-grid-item {
    width: calc(50% - 10px);
    margin-right: 20px;
  }
  
  #portfolio-masonry .portfolio-grid-item:nth-child(3n) {
    margin-right: 20px;
  }
  
  #portfolio-masonry .portfolio-grid-item:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  #portfolio-masonry .portfolio-grid-item {
    width: 100%;
    margin-right: 0;
  }
  
  #portfolio-masonry .portfolio-grid-item:nth-child(2n) {
    margin-right: 0;
  }
}

.portfolio-grid-item.hide {
  display: none !important;
  opacity: 0;
}

.portfolio-grid-item {
  transition: opacity 0.3s ease;
}

.portfolio-grid-item {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.portfolio-grid-item a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

.portfolio-grid-item:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-logo-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.portfolio-logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  display: block;
  min-height: 200px;
}

.portfolio-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(39, 130, 197, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 16px;
}

.portfolio-hover-overlay i {
  font-size: 48px;
  color: #fff;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.portfolio-grid-item:hover .portfolio-hover-overlay {
  opacity: 1;
}

.portfolio-grid-item:hover .portfolio-hover-overlay i {
  transform: scale(1);
}

.logo-graphic {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.logo-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  position: relative;
}

.logo-green {
  background: #10b981;
}

.logo-green::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 8px,
    rgba(255, 255, 255, 0.3) 8px,
    rgba(255, 255, 255, 0.3) 10px
  );
}

.logo-square {
  width: 100px;
  height: 100px;
  border: 3px solid #3b82f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-blue {
  border-color: #3b82f6;
}

.logo-inner-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #3b82f6;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 5px,
    #3b82f6 5px,
    #3b82f6 7px
  );
}

.logo-pin {
  width: 80px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-pin-blue {
  color: #3b82f6;
}

.logo-pin::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50% 50% 50% 0;
  background: #3b82f6;
  transform: rotate(-45deg);
  z-index: 0;
}

.logo-pin i {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 24px;
  transform: rotate(45deg);
}

.logo-diagonal {
  width: 100px;
  height: 100px;
  position: relative;
  background: linear-gradient(135deg, #3b82f6 0%, #3b82f6 50%, #000 50%, #000 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-letters {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  z-index: 1;
  position: relative;
}

.logo-text-content {
  text-align: center;
}

.logo-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.logo-slogan {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-portfolio-outline {
  border: 2px solid var(--primary-blue);
  background: transparent;
  color: var(--primary-blue);
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-portfolio-outline i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-portfolio-outline:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 130, 197, 0.3);
}

.btn-portfolio-outline:hover i {
  transform: translateX(5px);
}

/* ===== Universal Button Styles ===== */
.btn-primary {
  background: #2782c5;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid #2782c5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: #1a6ba3;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 130, 197, 0.4);
}

.btn-outline {
  background: transparent;
  color: #2782c5;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid #2782c5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #2782c5;
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-outline:hover::before {
  left: 0;
}

.btn-outline:hover {
  color: #ffffff;
  border-color: #2782c5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 130, 197, 0.3);
}

/* White border button for blue backgrounds */
.btn-outline-white {
  background: transparent;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-outline-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-outline-white:hover::before {
  left: 0;
}

.btn-outline-white:hover {
  color: #2782c5;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline-white i {
  font-size: 18px;
}

/* Hero Search Button Specific Styles */
.hero-search-group .btn-primary {
  width: auto;
  min-width: 160px;
  flex-shrink: 0;
  padding: 14px 28px;
  font-size: 18px;
   margin-right: 10px;
}

/* ===== Sections ===== */
/* ===== Standardized Section Spacing ===== */
.section {
  /* Default padding removed - use utility classes below */
  padding: 0;
}

/* ===== Padding Utility Classes ===== */
/* Padding Top - Complete Utility Classes */
.pt-0 { padding-top: 0; }
.pt-5 { padding-top: 5px; }
.pt-10 { padding-top: 10px; }
.pt-15 { padding-top: 15px; }
.pt-20 { padding-top: 20px; }
.pt-25 { padding-top: 25px; }
.pt-30 { padding-top: 30px; }
.pt-35 { padding-top: 35px; }
.pt-40 { padding-top: 40px; }
.pt-45 { padding-top: 45px; }
.pt-50 { padding-top: 50px; }
.pt-55 { padding-top: 55px; }
.pt-60 { padding-top: 60px; }
.pt-65 { padding-top: 65px; }
.pt-70 { padding-top: 70px; }
.pt-75 { padding-top: 75px; }
.pt-80 { padding-top: 80px; }
.pt-85 { padding-top: 85px; }
.pt-90 { padding-top: 90px; }
.pt-95 { padding-top: 95px; }
.pt-100 { padding-top: 100px; }
.pt-110 { padding-top: 110px; }
.pt-120 { padding-top: 120px; }
.pt-130 { padding-top: 130px; }
.pt-140 { padding-top: 140px; }
.pt-150 { padding-top: 150px; }
.pt-160 { padding-top: 160px; }
.pt-180 { padding-top: 180px; }
.pt-200 { padding-top: 200px; }

/* Padding Bottom - Complete Utility Classes */
.pb-0 { padding-bottom: 0; }
.pb-5 { padding-bottom: 5px; }
.pb-10 { padding-bottom: 10px; }
.pb-15 { padding-bottom: 15px; }
.pb-20 { padding-bottom: 20px; }
.pb-25 { padding-bottom: 25px; }
.pb-30 { padding-bottom: 30px; }
.pb-35 { padding-bottom: 35px; }
.pb-40 { padding-bottom: 40px; }
.pb-45 { padding-bottom: 45px; }
.pb-50 { padding-bottom: 50px; }
.pb-55 { padding-bottom: 55px; }
.pb-60 { padding-bottom: 60px; }
.pb-65 { padding-bottom: 65px; }
.pb-70 { padding-bottom: 70px; }
.pb-75 { padding-bottom: 75px; }
.pb-80 { padding-bottom: 80px; }
.pb-85 { padding-bottom: 85px; }
.pb-90 { padding-bottom: 90px; }
.pb-95 { padding-bottom: 95px; }
.pb-100 { padding-bottom: 100px; }
.pb-110 { padding-bottom: 110px; }
.pb-120 { padding-bottom: 120px; }
.pb-130 { padding-bottom: 130px; }
.pb-140 { padding-bottom: 140px; }
.pb-150 { padding-bottom: 150px; }
.pb-160 { padding-bottom: 160px; }
.pb-180 { padding-bottom: 180px; }
.pb-200 { padding-bottom: 200px; }

/* Combined Padding (Top and Bottom) - Complete Utility Classes */
.py-0 { padding-top: 0; padding-bottom: 0; }
.py-5 { padding-top: 5px; padding-bottom: 5px; }
.py-10 { padding-top: 10px; padding-bottom: 10px; }
.py-15 { padding-top: 15px; padding-bottom: 15px; }
.py-20 { padding-top: 20px; padding-bottom: 20px; }
.py-25 { padding-top: 25px; padding-bottom: 25px; }
.py-30 { padding-top: 30px; padding-bottom: 30px; }
.py-35 { padding-top: 35px; padding-bottom: 35px; }
.py-40 { padding-top: 40px; padding-bottom: 40px; }
.py-45 { padding-top: 45px; padding-bottom: 45px; }
.py-50 { padding-top: 50px; padding-bottom: 50px; }
.py-55 { padding-top: 55px; padding-bottom: 55px; }
.py-60 { padding-top: 60px; padding-bottom: 60px; }
.py-65 { padding-top: 65px; padding-bottom: 65px; }
.py-70 { padding-top: 70px; padding-bottom: 70px; }
.py-75 { padding-top: 75px; padding-bottom: 75px; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }
.py-85 { padding-top: 85px; padding-bottom: 85px; }
.py-90 { padding-top: 90px; padding-bottom: 90px; }
.py-95 { padding-top: 95px; padding-bottom: 95px; }
.py-100 { padding-top: 100px; padding-bottom: 100px; }
.py-110 { padding-top: 110px; padding-bottom: 110px; }
.py-120 { padding-top: 120px; padding-bottom: 120px; }
.py-130 { padding-top: 130px; padding-bottom: 130px; }
.py-140 { padding-top: 140px; padding-bottom: 140px; }
.py-150 { padding-top: 150px; padding-bottom: 150px; }
.py-160 { padding-top: 160px; padding-bottom: 160px; }
.py-180 { padding-top: 180px; padding-bottom: 180px; }
.py-200 { padding-top: 200px; padding-bottom: 200px; }

/* ===== Section-Specific Padding Classes ===== */
/* Standardized spacing system - padding-top and padding-bottom defined separately */
/* Desktop values */
.section-padding-about {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-padding-services {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-padding-portfolio {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.section-padding-bg-light {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-padding-how-it-works {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-padding-stats {
  padding-top: 0;
  padding-bottom: 123px;
}

.section-padding-testimonials {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-padding-faq {
  padding-top: 103px;
  padding-bottom: 103px;
}

.section-padding-contact {
  padding-top: 120px;
  padding-bottom: 120px;
}

/* Responsive adjustments - Tablet (max-width: 991px) */
@media (max-width: 991px) {
  .section-padding-about {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .section-padding-services {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .section-padding-portfolio {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .section-padding-pricing {
    padding-top: 50px;
    padding-bottom: 0;
  }
  
  .section-padding-bg-light {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .section-padding-how-it-works {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .section-padding-stats {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .section-padding-testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .section-padding-faq {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .section-padding-contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* Responsive adjustments - Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .section-padding-about {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .section-padding-services {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .section-padding-portfolio {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .section-padding-pricing {
    padding-top: 50px;
    padding-bottom: 0;
  }
  
  .section-padding-bg-light {
    padding-top: 50px;
    padding-bottom: 67px;
  }
  
  .section-padding-how-it-works {
    padding-top: 50px;
    padding-bottom: 22px;
  }
  
  .section-padding-stats {
    padding-top: 40px;
    padding-bottom: 74px;
  }
  
  .section-padding-testimonials {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .section-padding-faq {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .section-padding-contact {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.section.bg-light {
  background: #f5f5f5;
}

.section.faq {
  background: #ffffff;
}

/* Consistent spacing for sections without subheading */
.section.bg-light .section-title {
  margin-bottom: 48px;
}

/* Stats section - use utility classes if needed (pt-80 pb-80 or py-80) */

/* Stats section padding is handled by .section-padding-stats class above */

/* Professional Design Section */
.professional-design-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  /* Apply padding classes as needed: pt-80 pb-80 or py-80 */
}

.professional-design-section .section-title {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: var(--font-size-section-title);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  color: #2782c5;
  font-style: normal;
}

.professional-design-section .section-title .text-blue {
  color: #2782c5;
}

.professional-design-section .section-title .text-black {
  color: #0b1b33;
}

.professional-design-section .section-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.professional-design-image {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.design-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.design-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.design-shape-blue {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  top: -120px;
  right: -120px;
  z-index: 1;
  opacity: 0.85;
  animation: float 6s ease-in-out infinite;
}

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

/* Branding Partner Section */
.branding-partner-image {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
}

.branding-partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

/* ===== Standardized Section Title ===== */
.section-title {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  font-size: var(--font-size-section-title);
  margin-bottom: 20px;
  color: #2782c5;
  line-height: 1.2;
  font-style: normal;
}

/* Center-align for How It Works section */
#how-it-works .section-title {
  text-align: center;
}

#how-it-works .section-sub {
  text-align: center;
  margin: 0 auto 48px;
}

.section-title .text-blue {
  color: #2782c5;
}

.section-title .text-black {
  color: #0b1b33;
}

/* ===== Standardized Section Subtitle ===== */
.section-sub {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 48px;
  font-size: var(--font-size-section-subtitle);
  font-weight: 400;
  line-height: 1.6;
}

/* ===== Responsive Typography for Sections ===== */
/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
  .section-title {
    font-size: var(--font-size-section-title-tablet);
  }
  
  .section-sub {
    font-size: var(--font-size-section-subtitle-tablet);
  }
  
  .hero-main-title {
    font-size: var(--font-size-hero-title-tablet);
  }
  
  .hero-sub-title {
    font-size: var(--font-size-hero-subtitle-tablet);
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .section-title {
    font-size: var(--font-size-section-title-mobile);
  }
  
  .section-sub {
    font-size: var(--font-size-section-subtitle-mobile);
  }
  
  .hero-main-title {
    font-size: var(--font-size-hero-title-mobile);
  }
  
  .hero-sub-title {
    font-size: var(--font-size-hero-subtitle-mobile);
  }
}

/* Small Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .section-title {
    font-size: var(--font-size-section-title-small);
  }
  
  .section-sub {
    font-size: var(--font-size-section-subtitle-small);
  }
  
  .hero-main-title {
    font-size: var(--font-size-hero-title-small);
  }
  
  .hero-sub-title {
    font-size: var(--font-size-hero-subtitle-small);
  }
}

/* ===== Pricing Banner ===== */
.pricing-banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.pricing-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(0.6);
  transform: scale(1.1);
  z-index: 0;
}

.pricing-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.pricing-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 800px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.pricing-content .pricing-main-title {
  font-weight: 700;
  font-size: 4.5rem;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-content .pricing-sub-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 700px;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .pricing-banner {
    height: 400px;
    margin-top: 70px;
  }
  
  .pricing-content .pricing-main-title {
    font-size: 3rem;
  }
  
  .pricing-content .pricing-sub-title {
    font-size: 1.1rem;
  }
  
  .pricing-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* ===== Contact Banner ===== */
.contact-banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  
}

.contact-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(0.6);
  transform: scale(1.1);
  z-index: 0;
}

.contact-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 60px 0;
  margin: 0 auto;
}

.contact-content .contact-main-title {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  letter-spacing: -1.5px;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-content .contact-sub-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .contact-banner {
    height: 400px;
    /* margin-top: 70px; */
  }
  
  .contact-content .contact-main-title {
    font-size: 2.8rem;
  }
  
  .contact-content .contact-sub-title {
    font-size: 1rem;
  }
  
  .contact-content {
    padding: 40px 0;
  }
}

/* ===== Portfolio Banner ===== */
.portfolio-banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.portfolio-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(0.6);
  transform: scale(1.1);
  z-index: 0;
}

.portfolio-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.portfolio-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 800px;
  padding: 60px 0;
}

.portfolio-content .portfolio-main-title {
  font-weight: 700;
  font-size: 4.5rem;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(0, 0, 0, 0.3);
}

.portfolio-content .portfolio-sub-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 700px;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .portfolio-banner {
    height: 400px;
    margin-top: 70px;
  }
  
  .portfolio-content .portfolio-main-title {
    font-size: 3rem;
  }
  
  .portfolio-content .portfolio-sub-title {
    font-size: 1.1rem;
  }
  
  .portfolio-content {
    padding: 40px 0;
  }
}

/* ===== About Banner ===== */
.about-banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(0.6);
  transform: scale(1.1);
  z-index: 0;
}

.about-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

.about-main-title {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  letter-spacing: -1.5px;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  font-style: normal !important;
}

.about-sub-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
  font-style: normal;
}

.about-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-icon-small {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(39, 130, 197, 0.1);
  border: 1px solid rgba(39, 130, 197, 0.2);
  color: var(--primary-blue);
  font-size: 24px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .about-banner {
    height: 400px;
  }
  
  .about-main-title {
    font-size: 2.8rem;
    text-align: center;
  }
  
  .about-sub-title {
    font-size: 1rem;
    text-align: center;
  }
  
  .about-content {
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
  }
}

/* Center align all content on about page */
body:has(.about-banner) .section {
  text-align: center;
}

body:has(.about-banner) .section .container > .row {
  justify-content: center;
}

/* Force all text on about page to be normal (not italic) */
body:has(.about-banner) * {
  font-style: normal !important;
}

/* ===== Modern About Content Section ===== */
.about-feature-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #f0f4f8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.about-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2782c5, #1a6ba3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.about-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(39, 130, 197, 0.15);
  border-color: rgba(39, 130, 197, 0.3);
}

.about-feature-card:hover::before {
  transform: scaleX(1);
}

.about-feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(39, 130, 197, 0.1), rgba(39, 130, 197, 0.05));
  color: #2782c5;
  font-size: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.about-feature-card:hover .about-feature-icon {
  background: linear-gradient(135deg, #2782c5, #1a6ba3);
  color: #ffffff;
  transform: scale(1.1);
}

.about-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.about-feature-text {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.about-image-modern {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
}

.about-image-modern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(39, 130, 197, 0.05), transparent);
  pointer-events: none;
}

.about-image-modern img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-modern:hover img {
  transform: scale(1.05);
}

.about-content-modern {
  padding-left: 20px;
}

.about-content-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-content-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-stats-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 2px solid #f0f4f8;
}

.about-stat-item {
  flex: 1;
  min-width: 120px;
}

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2782c5;
  line-height: 1.2;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #2782c5, #1a6ba3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .about-content-modern {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .about-stats-row {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-feature-card {
    padding: 30px 24px;
  }
  
  .about-feature-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .about-feature-title {
    font-size: 1.3rem;
  }
  
  .about-content-title {
    font-size: 1.75rem;
  }
  
  .about-content-text {
    font-size: 1rem;
  }
  
  .about-stats-row {
    gap: 24px;
  }
  
  .about-stat-number {
    font-size: 2rem;
  }
}

body:has(.about-banner) .section h2,
body:has(.about-banner) .section h3,
body:has(.about-banner) .section h4,
body:has(.about-banner) .section h5,
body:has(.about-banner) .section h6,
body:has(.about-banner) .section p,
body:has(.about-banner) .section span,
body:has(.about-banner) .section div,
body:has(.about-banner) .section a,
body:has(.about-banner) .section li {
  text-align: center;
  font-style: normal !important;
}

body:has(.about-banner) .section .col-lg-6,
body:has(.about-banner) .section .col-lg-10,
body:has(.about-banner) .section .col-lg-8 {
  text-align: center;
}

body:has(.about-banner) .section .col-lg-6 h3,
body:has(.about-banner) .section .col-lg-6 p {
  text-align: center;
  font-style: normal !important;
}

/* ===== Pricing Tabs ===== */
.pricing-tabs-wrapper {
  width: 100%;
  margin: 0 auto 40px;
  overflow-x: hidden;
  /* text-align: center; */
}

.portfolio-tabs-wrapper {
  width: 100%;
  margin: 0 auto 40px;
  overflow-x: hidden;
}

.pricing-tabs,
.portfolio-tabs {
  border-bottom: none;
  margin-bottom: 40px;
  gap: 0;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 4px;
  display: inline-flex;
  width: auto;
  justify-content: center;
  max-width: 100%;
  flex-wrap: wrap;
  /* text-align: center; */
}

.pricing-tabs .nav-item,
.portfolio-tabs .nav-item {
  flex: 1;
  position: relative;
  min-width: 120px;
}

.pricing-tabs .nav-item:not(:last-child)::after,
.portfolio-tabs .nav-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.pricing-tabs .nav-link,
.portfolio-tabs .nav-link {
  color: #666;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.pricing-tabs .nav-link:hover,
.portfolio-tabs .nav-link:hover {
  color: #2782c5;
  background: rgba(255, 255, 255, 0.8);
}

.pricing-tabs .nav-link.active,
.portfolio-tabs .nav-link.active {
  color: #fff;
  background: #2782c5;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(39, 130, 197, 0.3);
}

.tab-content {
  min-height: 500px;
  scroll-margin-top: 0;
  scroll-padding-top: 0;
}

.tab-pane {
  animation: none !important;
  transition: none !important;
  scroll-margin-top: 0;
  scroll-padding-top: 0;
}

/* Remove Bootstrap fade animation from tabs */
.tab-pane.fade {
  opacity: 1 !important;
  transition: none !important;
}

.tab-pane.fade:not(.show) {
  opacity: 0 !important;
  display: none !important;
}

.tab-pane.fade.show {
  opacity: 1 !important;
  display: block !important;
}

/* Prevent scroll on pricing tab change - AGGRESSIVE */
.logo-design-pricing-section {
  scroll-behavior: auto !important;
  position: relative;
}

.logo-design-pricing-section * {
  scroll-margin: 0 !important;
  scroll-padding: 0 !important;
}

.logo-design-pricing-section .tab-content,
.logo-design-pricing-section .tab-pane {
  scroll-margin-top: 0 !important;
  scroll-padding-top: 0 !important;
  scroll-margin-bottom: 0 !important;
  scroll-padding-bottom: 0 !important;
  scroll-margin-left: 0 !important;
  scroll-padding-left: 0 !important;
  scroll-margin-right: 0 !important;
  scroll-padding-right: 0 !important;
}

.logo-design-pricing-section .pricing-tabs .nav-link {
  scroll-margin-top: 0 !important;
  scroll-padding-top: 0 !important;
  scroll-margin-bottom: 0 !important;
  scroll-padding-bottom: 0 !important;
  scroll-margin-left: 0 !important;
  scroll-padding-left: 0 !important;
  scroll-margin-right: 0 !important;
  scroll-padding-right: 0 !important;
}

.logo-design-pricing-section .pricing-tabs-wrapper {
  scroll-margin-top: 0 !important;
  scroll-padding-top: 0 !important;
  scroll-margin-bottom: 0 !important;
  scroll-padding-bottom: 0 !important;
}

.logo-design-pricing-section .pricing-tabs .nav-item {
  scroll-margin-top: 0 !important;
  scroll-padding-top: 0 !important;
}

.logo-design-pricing-section .pricing-tabs .nav-link:focus {
  outline: none;
  box-shadow: none;
}

.logo-design-pricing-section .pricing-tabs .nav-link:focus-visible {
  outline: 2px solid #2782c5;
  outline-offset: 2px;
}

/* Prevent anchor scrolling */
.logo-design-pricing-section a[href^="#"] {
  scroll-margin: 0 !important;
}

/* Prevent any element from causing scroll */
.logo-design-pricing-section button,
.logo-design-pricing-section .nav-link,
.logo-design-pricing-section .tab-pane {
  scroll-margin: 0 !important;
  scroll-padding: 0 !important;
}

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

/* ===== Cards ===== */
.cardx {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}


.icon-bubble {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(39, 130, 197, 0.1);
  border: 1px solid rgba(39, 130, 197, 0.2);
  color: var(--primary-blue);
  font-size: 22px;
  flex-shrink: 0;
}

/* Legacy Portfolio Items (for other sections) */
.portfolio-item {
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(2, 20, 60, 0.15);
}

.logo-thumb {
  height: 120px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 48px;
  color: #fff;
  background: linear-gradient(135deg, #cc5500, #2782c5);
}

.logo-thumb.alt {
  background: linear-gradient(135deg, #2782c5, #1a6ba3);
}

.logo-thumb.warm {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.logo-thumb.green {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}

.logo-thumb.dark {
  background: linear-gradient(135deg, #1f2937, #374151);
}

/* ===== Pricing ===== */
.price {
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -1px;
  color: var(--text-dark);
}

.price small {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 600;
}

.badge-offer {
  background: rgba(39, 130, 197, 0.1);
  border: 1px solid rgba(39, 130, 197, 0.2);
  color: var(--primary-blue);
  font-weight: 900;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-check {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  color: var(--text-dark);
  margin: 10px 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
}

.feature-check i {
  color: #2782c5;
  font-size: 18px;
  flex-shrink: 0;
}

/* Pricing Card Feature Headings */
.cardx h6.fw-bold {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  margin-top: 0;
}

/* ===== Modern Pricing Cards ===== */
.pricing-card {
  background: #ffffff;
  border: 2px solid #2782c5;
  border-radius: 8px;
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
  text-align: left;
}

/* Ensure all content inside pricing cards is left-aligned */
.pricing-card * {
  text-align: left !important;
}

/* Keep button text centered */
.pricing-card .pricing-cta-btn {
  text-align: center !important;
}

.pricing-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.price-tag {
  background: #2782c5;
  color: white;
  padding: 10px 24px;
  font-size: 32px;
  font-weight: 700;
  display: inline-block;
  border-radius: 5px 0px 8px 0px;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  z-index: 10;
}

.card-header {
  padding: 77px 32px 24px 17px;
  text-align: left;
  margin-top: 0;
}

.card-title {
  color: #2782c5;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  text-align: left;
}

.features-wrapper {
  position: relative;
  margin: 0 32px 0 0;
  text-align: left;
}

.features-list {
  padding: 0 8px 0 19px;
  max-height: 285px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #2782c5 #f0f0f0;
  text-align: left;
  position: relative;
  /* border-left: 2px solid #b3d9f0; */
}

.features-list::-webkit-scrollbar {
  width: 4px;
}

.features-list::-webkit-scrollbar-track {
  background: transparent;
}

.features-list::-webkit-scrollbar-thumb {
  background: #2782c5;
  border-radius: 10px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 16px;
  /* color: #5a6c7d; */
  line-height: 1.5;
  text-align: left;
  justify-content: flex-start;
}

.feature-item > span:not(.checkmark) {
  text-align: left;
  display: block;
  flex: 1;
}

.checkmark {
  color: #2782c5;
  font-weight: 700;
  font-size: 20px;
  margin-right: 12px;
  flex-shrink: 0;
  line-height: 1.3;
  text-align: left;
}

.divider {
  height: 1px;
  background: #e8ecef;
  margin: 24px 32px;
}

.files-section {
  padding: 0 32px 24px 22px;
  text-align: left;
}

.files-title {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
  font-size: 15px;
  text-align: left;
}

.file-icons {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.file-icon {
  width: 30px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 11px;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.file-icon::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 12px 0;
  border-color: transparent rgba(255,255,255,0.3) transparent transparent;
}

.file-icon.jpg { background: #2ecc71; }
.file-icon.png { background: #87ceeb; }
.file-icon.pdf { background: #e74c3c; }
.file-icon.eps { background: #f39c12; }
.file-icon.ai { background: #f1c40f; }

.guarantees {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.guarantee-item {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #34495e;
  text-align: left;
  justify-content: flex-start;
}

.guarantee-item > span:not(.arrow) {
  text-align: left;
  display: block;
}

.arrow {
  color: #5a6c7d;
  font-size: 18px;
  font-weight: 700;
  margin-right: 10px;
  flex-shrink: 0;
  text-align: left;
}

.pricing-cta-btn {
  margin: auto 32px 32px 32px;
  width: calc(100% - 64px);
  justify-content: center;
  padding: 16px;
  font-size: 17px;
  text-align: center;
}

.pricing-cta-btn i {
  margin-left: 4px;
  font-size: 12px;
}

/* Ensure proper row spacing */
#pricingTabContent .row {
  margin: 0;
}

#pricingTabContent .row > [class*="col-"] {
  padding: 0 12px;
  margin-bottom: 30px;
}

@media (max-width: 1280px) {
  #pricingTabContent .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  #pricingTabContent .row > [class*="col-"] {
    padding: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  #pricingTabContent .row {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .card-header {
    padding: 70px 24px 20px 24px;
    text-align: left;
  }
  
  .card-title {
    font-size: 28px;
    text-align: left;
  }
  
  .price-tag {
    font-size: 28px;
    padding: 8px 20px;
  }
  
  .features-list {
    padding: 0 24px 0 24px;
    text-align: left;
  }
  
  .files-section {
    padding: 0 24px 20px 24px;
    text-align: left;
  }
  
  .file-icons {
    justify-content: flex-start;
  }
  
  .guarantee-item {
    text-align: left;
    justify-content: flex-start;
  }
  
  .guarantee-item > span:not(.arrow) {
    text-align: left;
  }
  
  .divider {
    margin: 20px 24px;
  }
  
  .pricing-cta-btn {
    margin: auto 24px 24px 24px;
    width: calc(100% - 48px);
    display: block;
  }
  
  /* All buttons in sections - Full width on mobile */
  .section .btn-primary,
  .section .btn-outline,
  .section .btn-outline-white {
    width: 100%;
    display: block;
    text-align: center;
  }
  
  /* Buttons inside boxes/cards - Full width respecting padding */
  .pricing-card .pricing-cta-btn,
  .service-content-tab .btn-primary,
  .service-content-tab .btn-outline,
  .about-us-buttons .btn-primary,
  .about-us-buttons .btn-outline {
    width: 100%;
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  
  /* Button containers - Stack vertically on mobile */
  .service-cta-buttons,
  .about-us-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .service-cta-buttons .btn-primary,
  .service-cta-buttons .btn-outline,
  .about-us-buttons .btn-primary,
  .about-us-buttons .btn-outline {
    width: 100%;
    margin: 0;
  }
  
  /* Services Tabs - Mobile */
  .services-nav-wrapper {
    margin-bottom: 30px;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  .services-nav {
    flex-direction: row;
    gap: 2px;
    flex-wrap: nowrap;
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  
  .service-nav-item {
    flex: 1;
    min-width: 0;
    flex-shrink: 1;
    padding: 8px 2px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .service-nav-item::after {
    display: none;
  }
  
  .service-nav-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-right: 3px;
    flex-shrink: 0;
  }
  
  .service-nav-title {
    font-size: 0.6rem;
    line-height: 1.1;
    white-space: normal;
    word-break: break-word;
    text-align: center;
  }
  
  .service-nav-subtitle {
    display: none;
  }
  
  /* Reduce gap between service feature items (bullet points) on mobile */
  .service-feature-item {
    margin-bottom: 4px;
    padding: 2px 0;
  }
}

@media (max-width: 480px) {
  .card-title {
    font-size: 24px;
  }
  
  .price-tag {
    font-size: 24px;
  }
  
  .feature-item {
    font-size: 14px;
  }
  
  /* Tabs - Keep in one line on very small screens */
  .pricing-tabs .nav-link,
  .portfolio-tabs .nav-link {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
  
  .pricing-tabs .nav-item,
  .portfolio-tabs .nav-item {
    flex: 1;
    min-width: 0;
  }
  
  /* Services Tabs - Very small screens */
  .service-nav-item {
    padding: 6px 1px;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
  
  .service-nav-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-right: 2px;
    flex-shrink: 0;
  }
  
  .service-nav-title {
    font-size: 0.55rem;
    line-height: 1.1;
    white-space: normal;
    word-break: break-word;
    text-align: center;
  }
  
  .service-nav-subtitle {
    display: none;
  }
  
  .service-nav-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
  }
  
  /* Further reduce gap between service feature items on very small screens */
  .service-feature-item {
    margin-bottom: 3px;
    padding: 1px 0;
  }
  
  .service-feature-item i {
    font-size: 18px;
  }
  
  .service-feature-item span {
    font-size: 14px;
  }
  
  /* Ensure all buttons are full width on very small screens */
  .section .btn-primary,
  .section .btn-outline,
  .section .btn-outline-white,
  .service-cta-buttons .btn-primary,
  .service-cta-buttons .btn-outline,
  .about-us-buttons .btn-primary,
  .about-us-buttons .btn-outline {
    width: 100%;
    display: block;
  }
  
  .pricing-card .pricing-cta-btn {
    width: calc(100% - 48px);
  }
}

/* ===== Stats Section ===== */
.stats {
  background: #2782c5;
  color: #fff;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  padding: 50px 30px;
}

.stats .num {
  font-size: 48px;
  font-weight: 950;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.stats .lbl {
  opacity: 0.9;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Process Steps ===== */
/* ===== Modern Process Steps ===== */
.process-steps-wrapper {
  position: relative;
  padding: 40px 0;
}

.process-step-modern {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e8f4f8;
  box-shadow: 0 4px 20px rgba(39, 130, 197, 0.08);
  overflow: hidden;
}

.process-step-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2782c5, #1a6ba3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.process-step-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(39, 130, 197, 0.15);
  border-color: #2782c5;
}

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

.process-step-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}

.step-number-modern {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2782c5 0%, #1a6ba3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(39, 130, 197, 0.3);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.process-step-modern:hover .step-number-modern {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 24px rgba(39, 130, 197, 0.4);
}

.step-num {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  letter-spacing: -0.5px;
}

.step-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #2782c5 0%, rgba(39, 130, 197, 0.2) 100%);
  margin-left: 16px;
  position: relative;
  display: none;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #2782c5;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.process-step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.step-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(39, 130, 197, 0.1) 0%, rgba(39, 130, 197, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.step-icon-wrapper i {
  font-size: 28px;
  color: #2782c5;
  transition: all 0.3s ease;
}

.process-step-modern:hover .step-icon-wrapper {
  background: linear-gradient(135deg, #2782c5 0%, #1a6ba3 100%);
  transform: scale(1.05);
}

.process-step-modern:hover .step-icon-wrapper i {
  color: #ffffff;
  transform: scale(1.1);
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: #0b1b33;
  margin-bottom: 12px;
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  line-height: 1.3;
  text-align: left;
}

.step-description {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  text-align: left;
}

/* Show connectors on desktop only */
@media (min-width: 992px) {
  .process-steps-wrapper .row > div:not(:last-child) .step-connector {
    display: block;
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .process-step-modern {
    padding: 32px 24px;
    margin-bottom: 24px;
  }

  .step-number-modern {
    width: 48px;
    height: 48px;
  }

  .step-num {
    font-size: 18px;
  }

  .step-icon-wrapper {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .step-icon-wrapper i {
  font-size: 24px;
  }

  .step-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .step-description {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .process-steps-wrapper {
    padding: 20px 0;
  }

  .process-step-modern {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .process-step-header {
  margin-bottom: 20px;
  }

  .step-number-modern {
    width: 44px;
    height: 44px;
  }

  .step-num {
    font-size: 16px;
  }

  .step-icon-wrapper {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
  }

  .step-icon-wrapper i {
    font-size: 22px;
  }

  .step-title {
    font-size: 17px;
  }

  .step-description {
    font-size: 14px;
  }
}

/* ===== Testimonials ===== */
/* ===== Modern Testimonials Section ===== */
.testimonials-section {
  background: #e8f0f5;
  padding: 81px 0;
  margin-bottom: 0;
}

/* Ensure proper separation between testimonials and FAQ - white background transition */
.testimonials-section + .faq {
  background: #ffffff !important;
  margin-top: 0;
  padding-top: 100px;
  position: relative;
  z-index: 1;
}

/* Ensure FAQ section has white background */
.section.faq {
  background: #ffffff;
}

.testimonials-carousel-wrapper {
  position: relative;
  padding: 0;
  width: 100%;
  margin: 0 auto;
}

.testimonials-carousel {
  position: relative;
}

.testimonial-card-modern {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px 60px;
  margin: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
}

.testimonial-card-modern:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-logo {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  text-align: center;
}

.client-logo-img {
  max-width: 180px;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.testimonial-quote {
  margin-bottom: 28px;
  flex: 1;
  min-height: 120px;
}

.quote-text {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
  margin: 0;
  text-align: left;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  position: relative;
}

.testimonial-company {
  text-align: left;
}

.company-name {
  font-size: 16px;
  font-weight: 700;
  color: #0b1b33;
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  line-height: 1.3;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  margin-top: auto;
}

.client-avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  max-width: 56px;
  max-height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid #ffffff;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: -28px;
  left: 0;
  z-index: 2;
  /* Ensure perfect circle - no oval distortion */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
}

.client-name {
  font-size: 15px;
  font-weight: 600;
  color: #475569;
  margin-left: 68px;
  padding-bottom: 4px;
  line-height: 1.4;
  display: block;
}

/* Owl Carousel Customization for Testimonials */
.testimonials-carousel.owl-carousel .owl-stage-outer {
  padding: 0px 0 40px;
}

.testimonials-carousel.owl-carousel .owl-item {
  transition: opacity 0.3s ease;
}

.testimonials-carousel.owl-carousel .owl-item.active {
  opacity: 1;
}

.testimonials-carousel.owl-carousel .owl-dots {
  text-align: center;
  margin: 20px auto 0 auto;
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  width: 100%;
  max-width: 100%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
}

.testimonials-carousel.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  margin: 0;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  padding: 0;
  display: inline-block;
}

.testimonials-carousel.owl-carousel .owl-dots .owl-dot.active {
  background: #2782c5;
  width: 24px;
  border-radius: 5px;
}

.testimonials-carousel.owl-carousel .owl-dots .owl-dot:hover {
  background: #2782c5;
}

/* Responsive Design */
@media (max-width: 991px) {
  .testimonials-section {
    padding: 80px 0;
  }
  
  /* Fix testimonials dots on tablet */
  .testimonials-carousel.owl-carousel .owl-dots {
    position: relative !important;
    margin: 25px auto 15px auto !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    text-align: center !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    transform: none !important;
  }
  
  .testimonials-carousel.owl-carousel .owl-dots .owl-dot {
    width: 10px !important;
    height: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: #cbd5e1 !important;
    border: none !important;
    outline: none !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
  }
  
  .testimonials-carousel.owl-carousel .owl-dots .owl-dot.active {
    background: #2782c5 !important;
    width: 24px !important;
    height: 10px !important;
    border-radius: 5px !important;
  }
  
  .testimonials-carousel.owl-carousel .owl-dots .owl-dot:hover {
    background: #2782c5 !important;
  }
  
  .testimonials-carousel.owl-carousel .owl-stage-outer {
    padding: 20px 0 50px !important;
  }

  .testimonials-carousel-wrapper {
    padding: 0;
  }

  .testimonial-card-modern {
    padding: 28px 24px 44px;
    margin: 10px;
  }

  .testimonial-logo {
    margin-bottom: 20px;
    min-height: 70px;
  }

  .client-logo-img {
    max-width: 150px;
    max-height: 70px;
  }

  .testimonial-quote {
    margin-bottom: 24px;
    min-height: 100px;
  }

  .quote-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .company-name {
    font-size: 15px;
  }

  .testimonial-card-modern {
    padding: 28px 24px 56px;
  }

  .client-avatar {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    max-width: 52px;
    max-height: 52px;
    bottom: -26px;
  }

  .client-name {
    font-size: 14px;
    margin-left: 64px;
  }
}

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

  .testimonials-carousel-wrapper {
    padding: 0;
  }

  .testimonial-card-modern {
    padding: 24px 20px 48px;
    margin: 8px;
    border-radius: 12px;
  }

  /* Fix testimonials dots on mobile - properly responsive */
  .testimonials-carousel.owl-carousel .owl-dots {
    position: relative !important;
    margin: 30px auto 20px auto !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    width: auto !important;
    max-width: 100% !important;
    overflow: visible !important;
    text-align: center !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    top: auto !important;
    transform: none !important;
    z-index: 10 !important;
  }
  
  .testimonials-carousel.owl-carousel .owl-dots .owl-dot {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    max-width: 12px !important;
    max-height: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: #cbd5e1 !important;
    border: none !important;
    outline: none !important;
    display: block !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
  }
  
  .testimonials-carousel.owl-carousel .owl-dots .owl-dot.active {
    background: #2782c5 !important;
    width: 28px !important;
    height: 12px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    border-radius: 6px !important;
  }
  
  .testimonials-carousel.owl-carousel .owl-dots .owl-dot:hover {
    background: #2782c5 !important;
  }
  
  .testimonials-carousel.owl-carousel .owl-stage-outer {
    padding: 20px 0 0px !important;
  }
  
  .testimonials-carousel-wrapper {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    position: relative !important;
  }

  .testimonial-logo {
    margin-bottom: 24px;
    min-height: 100px;
  }

  .client-logo-img {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
  }

  .testimonial-quote {
    margin-bottom: 20px;
    min-height: 90px;
  }

  .quote-text {
    font-size: 13px;
    line-height: 1.6;
  }

  .testimonial-footer {
    gap: 12px;
    padding-top: 16px;
  }

  .company-name {
    font-size: 14px;
  }

  .client-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
    bottom: -24px;
    border-width: 2px;
  }

  .client-name {
    font-size: 13px;
    margin-left: 60px;
  }
}

/* ===== FAQ ===== */
.faq .accordion-button {
  font-weight: 800;
  color: var(--text-dark);
  border-radius: 14px !important;
  background: #fff;
}

.faq .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 16px;
}

.faq .accordion-button:not(.collapsed) {
  background: var(--bg-light);
  color: #2782c5;
}

/* ===== Contact Form ===== */
/* Contact section - use utility classes if needed */

.contact-home {
  background: #f8f9fa;
  /* Apply padding classes as needed: pt-80 pb-80 or py-80 */
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  padding-top: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-field-icon {
  position: absolute;
  left: 18px;
  color: #2782c5;
  font-size: 18px;
  z-index: 1;
  pointer-events: none;
}

.form-field-icon-textarea {
  top: 18px;
  align-self: flex-start;
}

.contact-form-modern .form-control-modern {
  width: 100%;
  padding: 14px 18px 14px 50px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #0b1b33;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.contact-form-modern .form-control-modern::placeholder {
  text-align: left;
  color: #94a3b8;
}

.contact-form-modern .form-control-modern:focus {
  outline: none;
  border-color: #2782c5;
  box-shadow: 0 0 0 3px rgba(39, 130, 197, 0.1);
}

.contact-form-modern .form-control-modern:focus + .form-field-icon,
.contact-form-modern:focus-within .form-field-icon {
  color: #1a6ba3;
}

.contact-form-modern textarea.form-control-modern {
  resize: vertical;
  min-height: 120px;
  padding-top: 18px;
  padding-left: 50px;
}

.contact-details-wrapper {
  padding: 20px 0;
  text-align: left;
}

.contact-details-wrapper .section-title {
  text-align: left;
}

.contact-details-wrapper * {
  text-align: left;
}

.contact-description {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  text-align: left;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  width: 100%;
  justify-content: flex-start;
}

.contact-info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2782c5 0%, #1a6ba3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(39, 130, 197, 0.3);
}

.contact-info-content {
  flex: 1;
  text-align: left;
}

.contact-info-label {
  font-size: 14px;
  font-weight: 600;
  color: #2782c5;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
}

.contact-info-value {
  font-size: 15px;
  color: #0b1b33;
  margin: 0;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 50px;
  box-shadow: var(--shadow-medium);
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(39, 130, 197, 0.1);
  outline: none;
}

/* ===== Footer ===== */
footer {
  background: #343434;
  color: #d7e2ff;
  padding: 80px 0 30px;
  text-align: left;
}

footer .container {
  max-width: 1200px;
}

footer .row {
  margin-left: -15px;
  margin-right: -15px;
}

footer .row > [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

footer * {
  text-align: left;
}

footer a {
  color: #d7e2ff;
  opacity: 0.86;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

footer a:hover {
  opacity: 1;
  color: #fff;
  transform: translateX(4px);
}

.footer-section {
  margin-bottom: 0;
  padding: 0 15px;
}

.footer-brand-name {
  font-size: 20px;
  color: #fff;
}

.footer-description {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
  margin: 0;
  color: #d7e2ff;
}

.footer-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.footer-links a {
  font-size: 15px;
  color: #d7e2ff;
  opacity: 0.86;
  transition: all 0.3s ease;
  display: block;
  padding: 4px 0;
}

.footer-links a:hover {
  opacity: 1;
  color: #fff;
  padding-left: 4px;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.footer-contact-info i {
  color: #2782c5;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-info span {
  font-size: 15px;
  line-height: 1.6;
  color: #d7e2ff;
  opacity: 0.9;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.12);
  margin: 40px 0 30px;
  opacity: 0.5;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  gap: 16px;
}

.footer-copyright {
  font-size: 14px;
  color: #d7e2ff;
  opacity: 0.8;
  text-align: right;
  order: 2;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  order: 1;
}

.footer-legal-links a {
  font-size: 14px;
  color: #d7e2ff;
  opacity: 0.8;
}

.footer-legal-links a:hover {
  opacity: 1;
  color: #fff;
}

/* Footer Responsive */
@media (max-width: 991px) {
  footer {
    padding: 60px 0 25px;
  }

  footer .row {
    margin-left: -12px;
    margin-right: -12px;
  }

  footer .row > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer-section {
    margin-bottom: 40px;
    padding: 0 12px;
  }

  .footer-title {
    margin-bottom: 18px;
    font-size: 15px;
  }

  .footer-links {
    gap: 6px;
  }

  .footer-links a {
    font-size: 14px;
    padding: 3px 0;
  }

  .footer-contact-info {
    gap: 14px;
  }

  .footer-contact-info span {
    font-size: 14px;
  }
}

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

  footer .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  footer .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer-section {
    margin-bottom: 35px;
    padding: 0 10px;
  }

  .footer-title {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .footer-links {
    gap: 6px;
  }

  .footer-links a {
    font-size: 14px;
    padding: 3px 0;
  }

  .footer-contact-info {
    gap: 12px;
  }

  .footer-contact-info span {
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 12px;
  }
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  color: #fff;
}

/* ===== Special Offer Banners ===== */
.special-offer-section {
  background: #2782c5;
  color: #fff;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.special-offer-section:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.special-offer {
  padding: 40px;
  position: relative;
}

.special-offer h4 {
  font-size: 2rem;
  text-align: left;
}

.special-offer .btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.special-offer .btn-light i {
  font-size: 18px;
}

.best-deal-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Feature Blocks ===== */
.feature-block {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feature-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #2782c5;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 36px;
  margin: 0 auto 24px;
  flex-shrink: 0;
}

.feature-block h5 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b1b33;
}

.feature-block p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #6b7a90;
  line-height: 1.6;
}

/* Section padding override for about page */
/* How it works section - use utility classes if needed */

/* Policy Content Styles */
.policy-content {
  line-height: 1.8;
  color: #555;
  text-align: left !important;
}

.policy-content h3 {
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: left !important;
}

.policy-content h4 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-align: left !important;
}

.policy-content p {
  margin-bottom: 1rem;
  text-align: left !important;
}

.policy-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  text-align: left !important;
}

.policy-content li {
  margin-bottom: 0.5rem;
  text-align: left !important;
}

/* Ensure policy content sections are left-aligned */
section .policy-content,
section .col-lg-10 .policy-content {
  text-align: left !important;
  margin-left: 0 !important;
}

section .col-lg-10 {
  margin-left: 0 !important;
  padding-left: 15px;
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
  .toggle {
    display: block;
  }

  /* Hide Desktop Menu on Mobile */
  .desktop-menu {
    display: none !important;
  }

  /* Mobile Menu Overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile Menu Drawer */
  .mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    text-align: left;
  }

  .mobile-menu-drawer * {
    text-align: left !important;
  }

  .mobile-menu-drawer .d-flex {
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .mobile-menu-drawer.show {
    right: 0;
  }

  /* Mobile Menu Header */
  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    background: #ffffff;
    text-align: left;
  }

  .mobile-menu-logo {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .mobile-menu-close {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .mobile-menu-close:hover {
    background: #f5f5f5;
    color: #2782c5;
  }

  /* Mobile Menu Content */
  .mobile-menu-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    text-align: left;
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
  }

  .mobile-menu-links > a {
    display: block;
    padding: 16px 0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: left !important;
    text-align-last: left;
  }

  .mobile-menu-links > a:hover {
    color: #2782c5;
    padding-left: 10px;
  }

  /* Mobile Services Section */
  .mobile-services-section {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .mobile-services-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    padding: 16px 0;
    margin-bottom: 8px;
    text-align: left;
  }

  .mobile-services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 20px;
    text-align: left;
  }

  .mobile-services-list a {
    display: block;
    padding: 12px 0;
    color: var(--text-muted);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: left;
  }

  .mobile-services-list a:hover {
    color: #2782c5;
    padding-left: 10px;
  }

  /* Mobile Menu Phone */
  .mobile-menu-phone {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    justify-content: flex-start;
  }

  .mobile-menu-phone .phone-icon {
    color: #2782c5;
    font-size: 20px;
  }

  .mobile-menu-phone .phone-number {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: left;
  }

  .nav-actions {
    width: 100%;
    gap: 12px;
    flex-direction: column;
  }

  .btn-soft,
  .btn-brand {
    width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .section-sub {
    font-size: 1.05rem;
    margin-bottom: 40px;
  }

  /* Tablet responsive padding handled by utility classes above */

  .search-box {
    flex-direction: column;
  }

  .stats .num {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 100vh;
    min-height: 100vh;
    padding: 140px 0 20px 0;
  }

  .hero-main-title {
    font-size: 2.8rem;
  }

  .hero-sub-title {
    font-size: 1rem;
  }

  .hero-search-container {
    max-width: 100%;
    padding: 0 15px;
    margin-bottom: 15px;
  }
  
  /* Hide hero images on mobile */
  .hero-left-image,
  .hero-right-image {
    display: none;
  }
  
  .hero-search-group {
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }
  
  .hero-search-group form {
    flex-direction: column;
    gap: 12px;
    position: relative;
    padding: 0 15px 15px 15px;
  }
  
  .hero-search-input-wrapper {
    width: 100%;
    position: relative;
  }

  .hero-search-input {
    padding: 16px 20px 16px 50px;
    font-size: 16px;
    border-radius: 16px;
    width: 100%;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .hero-search-icon {
    left: 16px;
    font-size: 18px;
    z-index: 2;
  }
  
  .hero-search-group .btn-primary {
    position: static;
    transform: none;
    width: 100%;
    min-width: auto;
    padding: 16px 30px;
    font-size: 16px;
    border-radius: 16px;
    margin: 0;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(39, 130, 197, 0.3);
  }
  
  /* Reduce Trustpilot banner spacing on mobile */
  .trustpilot-banner {
    margin: 8px auto 0;
    padding: 20px 16px;
  }

  .btn-hero-primary {
    padding: 16px 30px;
    font-size: 16px;
  }

  .client-logos-section {
    margin-top: 40px;
    margin-bottom: 0;
    display: block !important;
    visibility: visible !important;
  }

  .client-logos-carousel {
    padding: 20px 15px 0 15px;
    display: block !important;
    visibility: visible !important;
  }

  .logo-text {
    font-size: 16px;
  }

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

  .portfolio-main-title {
    font-size: 2rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  .portfolio-logo-text {
    font-size: 20px;
  }

  /* Mobile responsive padding handled by utility classes above */

  .section-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .price {
    font-size: 36px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
    padding-top: 50px;
  }

  .contact-info-item {
    padding: 16px;
  }

  .contact-icon-wrapper {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 18px;
  }

  .special-offer {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .navbar-custom {
    padding: 12px 0px;
  }

  .brand {
    font-size: 20px;
  }


  .about-us-title {
    font-size: 1.75rem !important;
}

  .brand-badge {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  


  .hero-main-title {
    font-size: 1.85rem;
    margin-bottom: 20px;
  }

  .hero-sub-title {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }

  .hero-search-container {
    max-width: 100%;
    padding: 0 0px;
    margin-bottom: 12px;
  }

  .hero-search-group {
    flex-direction: row;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }
  
  .hero-search-group form {
    flex-direction: column;
    gap: 4px;
    width: 100%;
    position: relative;
    padding: 0 12px 12px 12px;
  }
  
  .hero-search-input-wrapper {
    width: 100%;
    position: relative;
  }

  .hero-search-input {
    border-radius: 16px;
    padding: 16px 20px 16px 50px;
    width: 100%;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .hero-search-icon {
    left: 16px;
    font-size: 16px;
    z-index: 2;
  }
  
  .hero-search-group .btn-primary {
    position: static;
    transform: none;
    width: 100%;
    min-width: auto;
    padding: 16px 30px;
    font-size: 16px;
    border-radius: 32px;
    margin: 0;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(39, 130, 197, 0.3);
  }
  
  /* Reduce Trustpilot banner spacing on mobile */
  .trustpilot-banner {
    margin: 8px auto 0;
    padding: 18px 14px;
  }

  .btn-hero-primary {
    border-radius: 0 0 16px 16px;
    width: 100%;
  }

  .client-logos-carousel .owl-nav {
    display: none;
  }

  .logo-text {
    font-size: 21px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .portfolio-logo-text {
    font-size: 16px;
  }

  .portfolio-logo-icon {
    font-size: 32px;
  }




  .section-title {
    font-size: 1.75rem;
  }

  .stats {
    padding: 40px 20px;
  }

  .stats .num {
    font-size: 32px;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #2782c5;
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgb(15 15 15 / 69%);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 1000;
}


.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(39, 130, 197, 0.4);
}

.scroll-top.show {
  display: flex;
}

/* ===== About Us Home Section ===== */
.about-us-home {
  background: #f5f5f5;
  padding: 100px 0;
}

.about-us-title {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
  text-align: left;
  letter-spacing: -0.5px;
  color: #2782c5;
}

.about-us-title .text-blue {
  color: #2782c5;
}

.about-us-title .text-black {
  color: #0b1b33;
}

.about-us-title .text-underline {
  position: relative;
  display: inline-block;
}

.about-us-title .text-underline::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 3px;
  background: #2782c5;
  border-radius: 2px;
}

.about-us-description {
  font-size: 1.15rem;
  color: #6b7a90;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 550px;
  text-align: left;
}

.about-us-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-about-primary {
  background: #2782c5;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid #2782c5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-about-primary:hover {
  background: #1a6ba3;
  border-color: #1a6ba3;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 130, 197, 0.3);
}

.btn-about-outline {
  background: transparent;
  color: #2782c5;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid #2782c5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-about-outline:hover {
  background: #2782c5;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 130, 197, 0.3);
}

.about-us-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.about-us-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .about-us-title {
    font-size: 2.5rem;
  }
  
  .about-us-description {
    font-size: 1.05rem;
    max-width: 100%;
  }
  
  .about-us-illustration {
    margin-top: 0px;
    padding: 0px;
  }
}

@media (max-width: 768px) {
  .about-us-home {
    padding: 80px 0;
  }
  
  .about-us-title {
    font-size: 2rem;
  }
  
  .about-us-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .about-us-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-about-primary,
  .btn-about-outline {
    width: 100%;
    justify-content: center;
  }
  
  .about-us-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-about-primary,
  .btn-about-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ===== Services Tabs Section ===== */
.services-tabs-section {
  padding: 72px 0 100px;
  background: #fff;
}

.services-nav-wrapper {
  margin-bottom: 40px;
}

.services-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 4px;
  width: 100%;
}

.service-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex: 1;
  min-width: 120px;
  border-radius: 6px;
}

.service-nav-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.service-nav-item:hover {
  background: rgba(255, 255, 255, 0.5);
}

.service-nav-item:hover .service-nav-title,
.service-nav-item:hover .service-nav-subtitle {
  color: #2782c5;
}

.service-nav-item:hover .service-nav-icon {
  color: #2782c5;
}

.service-nav-item.active {
  background: #2782c5;
  box-shadow: 0 2px 8px rgba(39, 130, 197, 0.3);
}

.service-nav-item.active .service-nav-title,
.service-nav-item.active .service-nav-subtitle {
  color: #ffffff;
  font-weight: 700;
}

.service-nav-icon {
  font-size: 24px;
  color: #666;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.service-nav-item.active .service-nav-icon {
  color: #ffffff;
}

.service-nav-text {
  text-align: center;
}

.service-nav-title {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  margin-bottom: 2px;
  transition: all 0.3s ease;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-nav-subtitle {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  transition: all 0.3s ease;
  line-height: 1.2;
}

.service-nav-item.active .service-nav-subtitle {
  color: #ffffff;
}

.service-nav-indicator {
  display: none;
}

.services-content-wrapper {
  margin-top: 60px;
  min-height: 500px;
}

.service-content-tab {
  display: none;
  animation: fadeIn 0.4s ease-in;
}

.service-content-tab.active {
  display: block;
}

.service-content-title {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  text-align: left !important;
  letter-spacing: -0.5px;
  color: #2782c5;
}

.service-content-title .text-blue {
  color: #2782c5;
}

.service-content-title .text-black {
  color: #0b1b33;
}

.service-content-subtitle {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b1b33;
  margin-bottom: 24px;
  text-align: left !important;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.service-content-description {
  font-size: 1.1rem;
  color: #6b7a90;
  line-height: 1.8;
  margin-bottom: 32px;
  text-align: left !important;
}

.service-content-tab .col-lg-6 {
  text-align: left !important;
}

.service-features-list {
  margin-bottom: 40px;
}

.service-features-list .row {
  margin: 0;
}

.service-features-list .row > [class*="col-"] {
  padding: 0 8px;
  text-align: left;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  padding: 4px 0;
  text-align: left;
  justify-content: flex-start;
}

.service-feature-item i {
  color: #2782c5;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.service-feature-item span {
  font-size: 16px;
  color: #0b1b33;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}

.service-cta-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-service-link {
  color: #2782c5;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-service-link:hover {
  color: #1a6ba3;
  text-decoration: underline;
}

.btn-service-outline {
  border: 2px solid #2782c5;
  background: transparent;
  color: #2782c5;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-service-outline:hover {
  background: #2782c5;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 130, 197, 0.3);
}

.service-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.service-illustration-wrapper {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.service-illustration-wrapper svg {
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .services-nav {
    flex-direction: column;
    gap: 0;
  }
  
  .service-nav-item {
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid rgba(39, 130, 197, 0.1);
    padding: 16px 20px;
  }
  
  .service-nav-item:last-child {
    border-bottom: none;
  }
  
  .service-nav-indicator {
    display: none;
  }
  
  .service-content-title {
    font-size: 2.5rem;
    text-align: left !important;
  }
  
  .service-content-subtitle {
    font-size: 1.2rem;
    text-align: left !important;
  }
  
  .service-content-description {
    text-align: left !important;
  }
  
  .service-illustration {
    margin-top: 40px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .services-tabs-section {
    padding: 64px 0;
  }
  
  .service-content-title {
    font-size: 2rem;
    text-align: left !important;
  }
  
  .service-content-subtitle {
    font-size: 1.1rem;
    text-align: left !important;
  }
  
  .service-content-description {
    font-size: 1rem;
    text-align: left !important;
  }
  
  .service-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }
  
  .service-cta-buttons .btn-primary,
  .service-cta-buttons .btn-outline {
    width: 100%;
    display: block;
    text-align: center;
    margin: 0;
  }
  
  .btn-service-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  /* All buttons in sections - Full width on mobile */
  .section .btn-primary,
  .section .btn-outline,
  .section .btn-outline-white {
    width: 100%;
    display: block;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
  
  /* Buttons inside boxes/cards - Full width respecting padding */
  .pricing-card .pricing-cta-btn {
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
    display: block;
  }
  
  /* About us buttons */
  .about-us-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .about-us-buttons .btn-primary,
  .about-us-buttons .btn-outline {
    width: 100%;
    display: block;
    margin: 0;
  }
  
  /* Service Content Responsive */
  .service-content-title {
    font-size: 1.75rem;
    text-align: left !important;
  }
  
  .service-content-subtitle {
    font-size: 1rem;
    text-align: left !important;
  }
  
  .service-content-description {
    font-size: 0.95rem;
    text-align: left !important;
  }
  
  .service-features-list .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 8px;
  }
  
  .service-feature-item {
    padding: 1px 2px;
    font-size: 13px;
  }
  
  /* Service Illustration */
  .service-illustration {
    margin-top: 30px;
    padding: 15px;
  }
  
  /* About Us Buttons */
  .about-us-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-about-primary,
  .btn-about-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 30px;
    font-size: 14px;
    min-height: 48px; /* Touch-friendly button size */
  }
  
  /* Touch-friendly buttons */
  .btn-primary,
  .btn-outline,
  .btn-outline-white {
    min-height: 48px;
    padding: 14px 24px;
  }
  
  /* Ensure all interactive elements are touch-friendly */
  a, button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Stats Section */
  .stats {
    padding: 30px 15px;
  }
  
  .stats .num {
    font-size: 28px;
  }
  
  .stats .lbl {
    font-size: 12px;
  }
  
  /* Trustpilot Banner */
  .trustpilot-banner {
    padding: 14px 12px;
    margin: 6px auto 0;
  }
  
  .trustpilot-text {
    font-size: 12px;
  }
  
  .trustpilot-star {
    width: 16px;
    height: 16px;
  }
  
  /* Scroll Indicator */
  .scroll-indicator {
    margin-top: 6px;
  }
  
  .scroll-text {
    font-size: 11px;
  }
  
  /* Hero Search */
  .hero-search-group {
    margin-bottom: 20px;
  }
  
  /* Client Logos - Ensure visible on mobile */
  .client-logos-section {
    display: block !important;
    visibility: visible !important;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .client-logos-carousel {
    padding: 77px 10px 10px 10px;
    display: block !important;
    visibility: visible !important;
  }

  .client-logo-item {
    padding: 10px 15px;
  }

  .logo-text {
    font-size: 22px;
  }
  
  /* Portfolio Grid */
  .portfolio-grid-item {
    margin-bottom: 15px;
  }
  
  /* Portfolio Mobile Swiper */
  .portfolio-mobile-swiper {
    margin-bottom: 30px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding-bottom: 60px;
    min-height: 350px;
    position: relative;
  }
  
  .portfolio-mobile-swiper .swiper-wrapper {
    transition-timing-function: ease-in-out;
  }
  
  .portfolio-mobile-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  
  /* Prevent layout shift during tab changes */
  #portfolioTabContent .tab-pane {
    min-height: 400px;
  }
  
  #portfolioTabContent .tab-pane:not(.active) .portfolio-mobile-swiper {
    display: none !important;
  }
  
  #portfolioTabContent .tab-pane.active .portfolio-mobile-swiper {
    display: block !important;
  }
  
  /* Fixed image size for all slides */
  .portfolio-mobile-swiper .swiper-slide .portfolio-grid-item {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
  }
  
  .portfolio-mobile-swiper .swiper-slide .portfolio-logo-card {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    min-height: 300px;
    max-height: 400px;
  }
  
  .portfolio-mobile-swiper .swiper-slide .portfolio-logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  
  .portfolio-mobile-swiper .swiper-button-next,
  .portfolio-mobile-swiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: #2782c5;
    border-radius: 50%;
    color: #fff;
    margin-top: 0;
    top: calc(50% - 30px);
    transform: translateY(-50%);
  }
  
  .portfolio-mobile-swiper .swiper-button-next:after,
  .portfolio-mobile-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
  }
  
  .portfolio-mobile-swiper .swiper-button-next:hover,
  .portfolio-mobile-swiper .swiper-button-prev:hover {
    background: #1a6ba3;
  }
  
  /* Pagination dots below images */
  .portfolio-mobile-swiper .swiper-pagination {
    bottom: 0;
    position: absolute;
    width: 100%;
    margin-top: 20px;
  }
  
  .portfolio-mobile-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    margin: 0 5px;
  }
  
  .portfolio-mobile-swiper .swiper-pagination-bullet-active {
    background: #2782c5;
    width: 30px;
    border-radius: 15px;
  }
  
  /* Hide desktop grid on mobile */
  @media (max-width: 991px) {
    #portfolioTabContent .tab-pane .row.g-4.d-none {
      display: none !important;
    }
  }
  
  /* FAQ Accordion */
  .accordion-button {
    padding: 16px 20px;
    font-size: 15px;
  }
  
  .accordion-body {
    padding: 16px 20px;
    font-size: 14px;
  }
  
  /* Process Steps */
  .process-step-modern {
    padding: 24px 16px;
  }
  
  .step-title {
    font-size: 16px;
  }
  
  .step-description {
    font-size: 13px;
  }
  
  /* Testimonials */
  .testimonial-card-modern {
    padding: 20px 16px 48px;
  }
  
  .testimonial-quote {
    font-size: 13px;
  }
  
  /* Footer */
  .footer-brand-name {
    font-size: 18px;
  }
  
  .footer-description {
    font-size: 13px;
  }
  
  .footer-links a {
    font-size: 12px;
  }
  
  .footer-contact-info span {
    font-size: 12px;
  }
  
  .footer-copyright {
    font-size: 12px;
  }
  
  .footer-legal-links a {
    font-size: 12px;
  }
}

/* ===== Additional Mobile Responsive Styles ===== */
@media (max-width: 991px) {
  /* Pricing Cards - 2 columns on tablet */
  .pricing-card {
    margin-bottom: 30px;
  }
  
  /* Ensure pricing cards grid is responsive */
  #pricing .row > [class*="col-"] {
    margin-bottom: 30px;
  }
  
  /* Contact Form - Stack on tablet */
  .contact-home .row {
    flex-direction: column;
  }
  
  .contact-form-wrapper {
    margin-bottom: 40px;
  }
  
  /* About Us Section */
  .about-us-home .row {
    flex-direction: column-reverse;
  }
  
  .about-us-image {
    margin-bottom: 40px;
  }
  
  /* Services Tabs */
  .services-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .service-nav-item {
    flex: 0 0 auto;
    min-width: auto;
  }
  
  /* Pricing Tabs */
  .pricing-tabs .nav-item {
    flex: 0 0 auto;
    min-width: auto;
  }
  
  /* Testimonials */
  .testimonial-card-modern {
    margin: 10px;
    padding: 28px 24px 56px;
  }
  
  /* Footer */
  .footer-section {
    margin-bottom: 40px;
  }
  
  /* Service Content */
  .service-content-wrapper {
    margin-top: 40px;
  }
  
  .service-content-tab .row {
    flex-direction: column;
  }
  
  .service-illustration {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  /* Pricing Cards - 1 column on mobile */
  .pricing-card {
    margin-bottom: 24px;
    border-radius: 2rem;
  }
  
  /* Ensure pricing cards are full width on mobile */
  #pricing .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 24px;
  }
  
  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .pricing-card-content {
    padding: 24px 20px 20px 20px;
  }
  
  .pricing-plan-name {
    font-size: 20px;
    margin-top: 30px;
  }
  
  .pricing-price-badge {
    font-size: 18px;
    padding: 6px 14px;
    left: 16px;
    top: -10px;
  }
  
  /* Contact Form */
  .contact-form-wrapper {
    padding: 30px 20px;
    padding-top: 50px;
    border-radius: 12px;
  }
  
  .contact-form-modern .form-control-modern {
    padding: 12px 16px 12px 45px;
    font-size: 14px;
  }
  
  .form-field-icon {
    left: 16px;
    font-size: 16px;
  }
  
  .contact-info-item {
    padding: 14px;
    gap: 12px;
  }
  
  .contact-icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 18px;
  }
  
  /* About Us Section */
  .about-us-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .about-us-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .about-us-image {
    margin-bottom: 30px;
  }
  
  /* Services Tabs - Already handled below, removed old vertical style */
  
  /* Pricing Tabs */
  .pricing-tabs-wrapper {
    margin-bottom: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .pricing-tabs {
    flex-direction: row;
    gap: 4px;
    flex-wrap: nowrap;
    display: flex;
    width: max-content;
    min-width: 100%;
  }
  
  .pricing-tabs .nav-item {
    flex: 1;
    min-width: 0;
    flex-shrink: 0;
  }
  
  .pricing-tabs .nav-link {
    padding: 8px 12px;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
    white-space: nowrap;
  }
  
  /* Remove divider lines on mobile for pricing tabs */
  .pricing-tabs .nav-item::after {
    display: none;
  }
  
  /* Portfolio Section - Fix container and overflow */
  #portfolio {
    overflow-x: hidden !important;
  }
  
  #portfolio .container {
    overflow-x: hidden !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* Ensure equal left and right spacing for portfolio section */
  #portfolio {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  #portfolio .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow-x: hidden !important;
  }
  
  #portfolio .tab-content {
    overflow-x: hidden !important;
  }
  
  #portfolio .tab-content .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow-x: hidden !important;
  }
  
  /* Ensure equal left and right spacing for portfolio items */
  #portfolio .col-lg-3,
  #portfolio .col-lg-4,
  #portfolio .col-md-4,
  #portfolio .col-md-6,
  #portfolio .col-sm-6 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  /* Ensure portfolio section has equal margins on both sides */
  #portfolio .section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* Ensure container is centered with equal padding */
  #portfolio .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  /* Portfolio Tabs */
  .portfolio-tabs-wrapper {
    margin-bottom: 30px;
    overflow-x: hidden !important;
    width: 100%;
  }
  
  .portfolio-tabs {
    flex-direction: row;
    gap: 4px;
    flex-wrap: wrap !important;
    display: flex;
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center;
  }
  
  /* Hide ALL tab on mobile only - but only if it's the "ALL" tab */
  .portfolio-tabs .nav-item:first-child button[id*="all-tab"] {
    display: none !important;
  }
  
  .portfolio-tabs .nav-item {
    flex: 1;
    min-width: 0;
    flex-shrink: 0;
    max-width: calc(50% - 2px);
  }
  
  .portfolio-tabs .nav-link {
    padding: 8px 12px;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
    white-space: nowrap;
  }
  
  /* Remove divider lines on mobile for portfolio tabs */
  .portfolio-tabs .nav-item::after {
    display: none;
  }
  
  /* Allow all tabs to work properly - Bootstrap will handle active states */
  #portfolioTabContent .tab-pane {
    display: none;
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
  }
  
  #portfolioTabContent .tab-pane.show,
  #portfolioTabContent .tab-pane.active {
    display: block !important;
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
  }
  
  /* Remove fade animation from portfolio tabs */
  #portfolioTabContent .tab-pane.fade {
    opacity: 1 !important;
    transition: none !important;
  }
  
  #portfolioTabContent .tab-pane.fade:not(.show) {
    opacity: 0 !important;
    display: none !important;
  }
  
  #portfolioTabContent .tab-pane.fade.show {
    opacity: 1 !important;
    display: block !important;
  }
  
  /* Services Tabs - Keep in one line on mobile */
  .services-nav-wrapper {
    margin-bottom: 30px;
  }
  
  .services-nav {
    flex-direction: row;
    gap: 4px;
    flex-wrap: nowrap;
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  
  .service-nav-item {
    flex: 1;
    min-width: 0;
    padding: 10px 8px;
    width: auto;
  }
  
  .service-nav-item::after {
    display: none;
  }
  
  /* Hide icons on mobile to fit all tabs in one line */
  .service-nav-icon {
    display: none;
  }
  
  .service-nav-title {
    font-size: 0.65rem;
    line-height: 1.2;
  }
  
  .service-nav-subtitle {
    display: none;
  }
  
  /* Testimonials */
  .testimonial-card-modern {
    margin: 8px;
    padding: 24px 20px 52px;
  }

  .testimonial-logo {
    margin-bottom: 20px;
    min-height: 90px;
  }

  .client-logo-img {
    max-width: 180px;
    max-height: 180px;
    width: auto;
    height: auto;
  }
  
  .testimonial-quote {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .client-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    bottom: -24px;
  }
  
  .client-name {
    font-size: 14px;
    margin-left: 56px;
  }
  
  .client-company {
    font-size: 12px;
    margin-left: 56px;
  }
  
  /* Footer */
  .footer-section {
    margin-bottom: 35px;
  }
  
  .footer-title {
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .footer-links {
    gap: 2px;
  }
  
  .footer-links a {
    font-size: 13px;
  }
  
  .footer-contact-info {
    gap: 14px;
  }
  
  .footer-contact-info span {
    font-size: 13px;
  }
  
  .footer-contact-info i {
    font-size: 16px;
  }
  
  /* Process Steps */
  .process-steps-wrapper {
    padding: 20px 0;
  }
  
  /* Trustpilot Banner */
  .trustpilot-banner {
    padding: 16px 14px;
    margin: 6px auto 0;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .trustpilot-text {
    font-size: 13px;
  }
  
  .scroll-indicator {
    margin-top: 8px;
  }
  
  /* Special Offer Section */
  .special-offer {
    padding: 50px 20px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .special-offer h4 {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .special-offer .btn-outline-white {
    width: 100%;
  }
}

@media (max-width: 576px) {
  /* Pricing Cards */
  .pricing-card {
    border-radius: 0.5rem;
  }
  
  .pricing-card-content {
    padding: 20px 16px 16px 16px;
  }
  
  .pricing-plan-name {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 16px;
  }
  
  .pricing-price-badge {
    font-size: 16px;
    padding: 5px 12px;
    left: 12px;
    top: -8px;
  }
  
  .pricing-features .feature-check {
    margin: 6px 0;
    font-size: 13px;
  }
  
  .pricing-cta-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  /* Contact Form */
  .contact-form-wrapper {
    padding: 24px 16px;
    padding-top: 40px;
  }
  
  .contact-form-modern .form-control-modern {
    padding: 10px 14px 10px 40px;
    font-size: 14px;
  }
  
  .form-field-icon {
    left: 14px;
    font-size: 15px;
  }
  
  .contact-info-item {
    padding: 12px;
    gap: 21px;
  }
  
  .contact-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 45px;
    font-size: 22px;
}
  }
  
  .contact-info-label {
    font-size: 14px;
  }
  
  .contact-info-value {
    font-size: 15px;
  }
  
  /* About Us */
  .about-us-title {
    font-size: 2.75rem;
  }
  
  .about-us-description {
    font-size: 16px;
  }

  /* Footer */
  footer .row {
    margin-left: -8px;
    margin-right: -8px;
  }

  footer .row > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
  }

  .footer-section {
    margin-bottom: 28px;
    padding: 0 8px;
  }

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

  .footer-description {
    font-size: 13px;
  }

  .footer-title {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-links {
    gap: 5px;
  }

  .footer-links a {
    font-size: 13px;
    padding: 2px 0;
  }

  .footer-contact-info {
    gap: 10px;
  }

  .footer-contact-info span {
    font-size: 13px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .footer-legal-links a {
    font-size: 12px;
  }

  /* Testimonials */
  .testimonial-card-modern {
    padding: 20px 16px 48px;
  }
  
  .testimonial-quote {
    font-size: 13px;
  }
  
  /* Process Steps */
  .process-step-modern {
    padding: 24px 16px;
  }
  
  .step-title {
    font-size: 16px;
  }
  
  .step-description {
    font-size: 13px;
  }
}

/* ========================================
   LOGO DESIGN PAGE CSS
   ======================================== */

/* ===== Logo Design Banner Section ===== */
.logo-design-banner-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Background Wrapper - Contains both image and overlay */
.logo-design-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}

.logo-design-background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(3px) brightness(0.6);
  transform: scale(1.1);
  z-index: 0;
}

.logo-design-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.logo-design-banner-content {
  position: relative;
  z-index: 2;
  text-align: left !important;
  padding: 40px 0;
}

.logo-design-banner-content * {
  text-align: left !important;
}

.logo-design-banner-title {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  letter-spacing: -1.5px;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: none !important;
  text-align: left !important;
}

.logo-design-banner-paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 20px;
  text-shadow: none !important;
  text-align: left !important;
}

.logo-design-banner-bullets {
  list-style: none;
  padding: 0;
  margin: 30px 0 40px 0;
  text-align: left !important;
}

.logo-design-banner-bullets li {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  text-shadow: none !important;
  text-align: left !important;
}

.logo-design-banner-bullets li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2782c5;
  font-weight: 700;
  font-size: 1.3rem;
  text-shadow: 0 2px 8px rgba(39, 130, 197, 0.5);
}

/* ===== Logo Design Banner Button - Consolidated ===== */
.logo-design-banner-button {
  margin-top: 40px;
  text-align: left !important;
}

.logo-design-banner-button .btn-primary {
  display: inline-block;
  text-align: center !important;
  border: none !important;
  width: auto;
  max-width: none;
}

/* Mobile - 991px */
@media (max-width: 991px) {
  .logo-design-banner-button {
    margin-top: 32px;
    text-align: left !important;
  }
  
  .logo-design-banner-button .btn-primary {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    border: none !important;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  .logo-design-banner-button {
    text-align: left !important;
  }
  
  .logo-design-banner-button .btn-primary {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    border: none !important;
  }
}

/* Mobile - 576px */
@media (max-width: 576px) {
  .logo-design-banner-button {
    margin-top: 28px;
    text-align: left !important;
  }
  
  .logo-design-banner-button .btn-primary {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    border: none !important;
  }
}

.logo-design-banner-image-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px 0;
}

.logo-design-banner-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
 
}

/* ===== Logo Design Content Section ===== */
.logo-design-content-section {
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.logo-design-section-title {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  font-size: 3rem;
  margin-bottom: 24px;
  color: #2782c5;
  line-height: 1.2;
  text-align: left;
}

.logo-design-section-title .text-blue {
  color: #2782c5;
}

.logo-design-section-title .text-black {
  color: #0b1b33;
}

.logo-design-section-subtitle {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #0b1b33;
  /* margin-bottom: 32px; */
  line-height: 1.4;
  text-align: left;
}

.logo-design-section-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #6b7a90;
  line-height: 1.7;
  /* margin-bottom: 48px; */
  text-align: left;
}

.logo-design-features-list {
  margin-bottom: 50px;
}

.logo-design-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #0b1b33;
  text-align: left;
}

.logo-design-feature-item i {
  color: #2782c5;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.logo-design-cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.logo-design-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.logo-design-illustration-wrapper {
  width: 100%;
  max-width: 500px;
  padding: 40px;
}

.logo-design-illustration-wrapper svg {
  width: 100%;
  height: auto;
}

/* ===== Logo Design Features Section ===== */
.logo-design-features-section {
  background: #f8f9fa;
}

.logo-design-features-section .logo-design-section-title {
  text-align: center;
}

.logo-design-features-section .logo-design-section-description {
  text-align: center;
  margin-bottom: 70px;
}

.logo-design-feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #f0f4f8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo-design-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(39, 130, 197, 0.15);
}

.logo-design-feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #2782c5 0%, #1aa3ff 100%);
  border-radius: 20px;
  color: #ffffff;
  font-size: 2.5rem;
}

.logo-design-feature-title {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #0b1b33;
  margin-bottom: 16px;
}

.logo-design-feature-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #6b7a90;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== Logo Design Portfolio Section ===== */
.logo-design-portfolio-section {
  background: #ffffff;
  overflow-x: hidden;
}

.logo-design-portfolio-section .container {
  overflow-x: hidden;
  max-width: 100%;
}

.logo-design-portfolio-section .row {
  margin-left: 0;
  margin-right: 0;
  overflow-x: hidden;
}

/* Logo Design Portfolio - One image per row - Desktop */
.logo-design-portfolio-section .col-lg-12,
.logo-design-portfolio-section .col-md-12,
.logo-design-portfolio-section .col-sm-12 {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  margin-bottom: 20px;
}

.logo-design-portfolio-section .col-lg-12:last-child,
.logo-design-portfolio-section .col-md-12:last-child,
.logo-design-portfolio-section .col-sm-12:last-child {
  margin-bottom: 0;
}

/* Logo Design Portfolio - Mobile 100% Width */
@media (max-width: 768px) {
  .logo-design-portfolio-section .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .logo-design-portfolio-section .row {
    margin-left: -15px !important;
    margin-right: -15px !important;
    overflow-x: hidden !important;
  }
  
  .logo-design-portfolio-section .col-lg-12,
  .logo-design-portfolio-section .col-md-12,
  .logo-design-portfolio-section .col-sm-12 {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    margin-bottom: 15px !important;
  }
  
  .logo-design-portfolio-section .portfolio-grid-item {
    max-width: 100% !important;
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
  
  .logo-design-portfolio-section .portfolio-logo-card {
    max-width: 100% !important;
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
  
  .logo-design-portfolio-section .portfolio-logo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    aspect-ratio: 16/9 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

.logo-design-portfolio-section .logo-design-section-title {
  text-align: center;
}

.logo-design-portfolio-section .logo-design-section-description {
  text-align: center;
  margin-bottom: 60px;
}

/* ===== Logo Design Pricing Section ===== */
.logo-design-pricing-section {
  background: #f8f9fa;
}

.logo-design-pricing-section .logo-design-section-title {
  text-align: center;
}

.logo-design-pricing-section .logo-design-section-description {
  text-align: center;
  margin-bottom: 70px;
}

/* ===== Logo Design How It Works Section ===== */
.logo-design-how-it-works-section {
  background: #ffffff;
}

.logo-design-how-it-works-section .logo-design-section-title {
  text-align: center;
}

.logo-design-how-it-works-section .logo-design-section-description {
  text-align: center;
  margin-bottom: 60px;
}

/* ===== Logo Design Benefits Section ===== */
.logo-design-benefits-section {
  background: #f8f9fa;
}

.logo-design-benefits-section .logo-design-section-title {
  text-align: center;
}

.logo-design-benefits-section .logo-design-section-description {
  text-align: center;
  margin-bottom: 70px;
}

.logo-design-benefit-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #f0f4f8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.logo-design-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(39, 130, 197, 0.15);
}

.logo-design-benefit-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #2782c5 0%, #1aa3ff 100%);
  border-radius: 20px;
  color: #ffffff;
  font-size: 2.5rem;
}

.logo-design-benefit-title {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #0b1b33;
  margin-bottom: 16px;
}

.logo-design-benefit-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #6b7a90;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== Logo Design Process Details Section ===== */
.logo-design-process-section {
  background: #ffffff;
}

.logo-design-process-list {
  margin-top: 40px;
}

.logo-design-process-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.logo-design-process-item:last-child {
  margin-bottom: 0;
}

.process-item-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #2782c5 0%, #1aa3ff 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
}

.process-item-content {
  flex: 1;
}

.process-item-title {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #0b1b33;
  margin-bottom: 12px;
}

.process-item-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #6b7a90;
  line-height: 1.6;
  margin-bottom: 0;
}

.logo-design-process-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.process-visual-wrapper {
  width: 100%;
  max-width: 500px;
  padding: 40px;
}

.process-visual-wrapper svg {
  width: 100%;
  height: auto;
}

/* ===== Logo Design Contact Section with Curve ===== */
.logo-design-contact-section {
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.contact-curve-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
  overflow: hidden;
}

.contact-curve-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-design-contact-section .logo-design-section-title {
  text-align: left;
}

.logo-design-contact-section .logo-design-section-description {
  text-align: left;
}

.logo-design-contact-section .contact-form-wrapper,
.logo-design-contact-section .contact-details-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo-design-contact-section .contact-info-list {
  margin-top: 30px;
}

.logo-design-contact-section .contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.logo-design-contact-section .contact-info-item:last-child {
  margin-bottom: 0;
}

.logo-design-contact-section .contact-icon-wrapper {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #2782c5 0%, #1aa3ff 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}

.logo-design-contact-section .contact-info-content {
  flex: 1;
}

.logo-design-contact-section .contact-info-label {
  font-family: 'WF Visual Sans', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0b1b33;
  margin-bottom: 8px;
}

.logo-design-contact-section .contact-info-value {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #6b7a90;
  line-height: 1.6;
  margin-bottom: 0;
}

.logo-design-contact-section .form-field-wrapper {
  position: relative;
  margin-bottom: 0;
}

.logo-design-contact-section .form-field-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #2782c5;
  font-size: 1.2rem;
  z-index: 2;
}

.logo-design-contact-section .form-field-icon-textarea {
  top: 25px;
  transform: none;
}

.logo-design-contact-section .form-control-modern {
  width: 100%;
  padding: 16px 20px 16px 55px;
  border: 2px solid #e0e8f0;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #0b1b33;
  background: #ffffff;
  transition: all 0.3s ease;
}

.logo-design-contact-section .form-control-modern:focus {
  outline: none;
  border-color: #2782c5;
  box-shadow: 0 0 0 4px rgba(39, 130, 197, 0.1);
}

.logo-design-contact-section .form-control-modern::placeholder {
  color: #9ca3af;
}

.logo-design-contact-section .form-control-modern[rows] {
  padding-top: 16px;
  padding-left: 55px;
  resize: vertical;
}

/* ===== Responsive Styles for Logo Design Page ===== */
@media (max-width: 991px) {
  /* Ensure all logo design sections have equal left/right container padding */
  .logo-design-content-section .container,
  .logo-design-features-section .container,
  .logo-design-pricing-section .container,
  .logo-design-how-it-works-section .container,
  .logo-design-benefits-section .container,
  .logo-design-process-details-section .container,
  .logo-design-contact-section .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .logo-design-banner-section {
    min-height: auto !important;
    height: auto !important;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  /* Background wrapper on tablet - adapts to content height */
  .logo-design-background-wrapper {
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
  }
  
  /* Hide right side image column on tablet */
  .logo-design-banner-section .col-lg-6:last-child {
    display: none !important;
  }
  
  .logo-design-banner-title {
    font-size: 2.8rem;
    text-align: left !important;
  }
  
  .logo-design-banner-paragraph {
    font-size: 1rem;
    text-align: left !important;
  }
  
  .logo-design-banner-content {
    text-align: left !important;
    padding: 30px 0;
  }
  
  .logo-design-banner-content * {
    text-align: left !important;
  }
  
  .logo-design-banner-bullets {
    text-align: left !important;
    max-width: 100%;
    margin: 24px 0 32px 0;
    padding-left: 20px;
  }
  
  .logo-design-banner-bullets li {
    text-align: left !important;
  }
  
  .logo-design-section-title {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .logo-design-section-subtitle {
    font-size: 1.3rem;
    text-align: center;
  }
  
  .logo-design-section-description {
    text-align: center;
  }
  
  .logo-design-feature-item {
    text-align: center;
    justify-content: center;
  }
  
  .logo-design-cta-buttons {
    justify-content: center;
  }
  
  .logo-design-content-section .logo-design-section-title,
  .logo-design-content-section .logo-design-section-subtitle,
  .logo-design-content-section .logo-design-section-description {
    text-align: left !important;
  }
  
  .logo-design-content-section .logo-design-cta-buttons {
    text-align: left !important;
    justify-content: flex-start !important;
  }
  
  .logo-design-content-section .logo-design-features-list {
    text-align: left !important;
  }
  
  .logo-design-content-section .logo-design-feature-item {
    text-align: left !important;
    justify-content: flex-start !important;
  }
}

@media (max-width: 768px) {
  /* Fix horizontal scroll on mobile for portfolio section */
  .logo-design-portfolio-section {
    overflow-x: hidden !important;
  }
  
  .logo-design-portfolio-section .container {
    overflow-x: hidden !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .logo-design-portfolio-section .row {
    margin-left: -15px !important;
    margin-right: -15px !important;
    overflow-x: hidden !important;
  }
  
  .logo-design-portfolio-section .col-lg-12,
  .logo-design-portfolio-section .col-md-12,
  .logo-design-portfolio-section .col-sm-12 {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    margin-bottom: 15px !important;
  }
  
  .logo-design-portfolio-section .portfolio-grid-item {
    max-width: 100% !important;
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .logo-design-portfolio-section .portfolio-logo-card {
    max-width: 100% !important;
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
  
  .logo-design-portfolio-section .portfolio-logo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    aspect-ratio: 16/9 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .logo-design-banner-section {
    min-height: auto !important;
    height: auto !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: visible !important;
    margin-bottom: 0 !important;
  }
  
  /* Background wrapper on mobile - adapts to content height (padding-top + content + padding-bottom) */
  .logo-design-background-wrapper {
    height: 100% !important;
    min-height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    z-index: 0 !important;
    overflow: hidden !important;
  }
  
  /* Ensure banner container is visible */
  .logo-design-banner-section .container {
    position: relative !important;
    z-index: 2 !important;
  }
  
  /* Ensure next section is visible and not hidden */
  .logo-design-content-section {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 0 !important;
    padding-top: 60px !important;
  }
  
  /* Ensure background image and overlay are exactly same size on mobile */
  .logo-design-background-image,
  .logo-design-background-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Hide right side image on mobile */
  .logo-design-banner-section .col-lg-6:last-child {
    display: none !important;
  }
  
  .logo-design-banner-title {
    font-size: 2.2rem;
    letter-spacing: -1px;
    text-align: left !important;
    margin-bottom: 24px;
  }
  
  .logo-design-banner-paragraph {
    font-size: 0.95rem;
    text-align: left !important;
    margin-bottom: 16px;
  }
  
  /* About and Contact Banner - Match Logo Design at 768px */
  .about-main-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
  
  .about-sub-title {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
  
  .contact-content .contact-main-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
  
  .contact-content .contact-sub-title {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
  
  .hero-main-title {
    font-size: 2.2rem;
  }
  
  .hero-sub-title {
    font-size: 0.95rem;
  }
  
  /* Ensure all logo design sections have equal left/right container padding */
  .logo-design-content-section .container,
  .logo-design-features-section .container,
  .logo-design-pricing-section .container,
  .logo-design-how-it-works-section .container,
  .logo-design-benefits-section .container,
  .logo-design-process-details-section .container,
  .logo-design-contact-section .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .logo-design-banner-content {
    padding: 40px 0;
    text-align: left !important;
  }
  
  .logo-design-banner-content * {
    text-align: left !important;
  }
  
  .logo-design-banner-bullets {
    text-align: left !important;
    max-width: 100%;
    margin: 24px 0 32px 0;
    padding-left: 20px;
  }
  
  .logo-design-banner-bullets li {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 28px;
    text-align: left !important;
  }
  
  .logo-design-banner-bullets li:before {
    font-size: 1.2rem;
  }
  
  .logo-design-section-title {
    font-size: 2rem;
  }
  
  .logo-design-section-subtitle {
    font-size: 1.2rem;
  }
  
  .logo-design-section-description {
    font-size: 1rem;
  }
  
  .logo-design-feature-card {
    padding: 30px 24px;
  }
  
  .logo-design-feature-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .logo-design-feature-title {
    font-size: 1.3rem;
  }
  
  .logo-design-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  /* All buttons on logo design page - 100% width on mobile */
  .logo-design-banner-button .btn-primary,
  .logo-design-content-section .logo-design-cta-buttons .btn-primary,
  .logo-design-content-section .logo-design-cta-buttons .btn-outline,
  .logo-design-cta-buttons .btn-primary,
  .logo-design-cta-buttons .btn-outline {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    /* border: none !important; */
  }
  
  /* Content section buttons container - left align on mobile */
  .logo-design-content-section .logo-design-cta-buttons {
    align-items: flex-start !important;
  }
  
  .logo-design-illustration-wrapper {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  /* Ensure all logo design sections have equal left/right container padding */
  .logo-design-content-section .container,
  .logo-design-features-section .container,
  .logo-design-pricing-section .container,
  .logo-design-how-it-works-section .container,
  .logo-design-benefits-section .container,
  .logo-design-process-details-section .container,
  .logo-design-contact-section .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* Fix horizontal scroll on mobile for portfolio section */
  .logo-design-portfolio-section {
    overflow-x: hidden !important;
  }
  
  .logo-design-portfolio-section .container {
    overflow-x: hidden !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .logo-design-portfolio-section .row {
    margin-left: -15px !important;
    margin-right: -15px !important;
    overflow-x: hidden !important;
  }
  
  .logo-design-portfolio-section .col-lg-12,
  .logo-design-portfolio-section .col-md-12,
  .logo-design-portfolio-section .col-sm-12 {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    margin-bottom: 15px !important;
  }
  
  .logo-design-portfolio-section .portfolio-grid-item {
    max-width: 100% !important;
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
  
  .logo-design-portfolio-section .portfolio-logo-card {
    max-width: 100% !important;
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
  
  .logo-design-portfolio-section .portfolio-logo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    aspect-ratio: 16/9 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .logo-design-portfolio-section .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow-x: hidden !important;
  }
  
  .logo-design-portfolio-section .col-lg-12,
  .logo-design-portfolio-section .col-md-12,
  .logo-design-portfolio-section .col-sm-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }
  
  .logo-design-portfolio-section .col-lg-12:last-child,
  .logo-design-portfolio-section .col-md-12:last-child,
  .logo-design-portfolio-section .col-sm-12:last-child {
    margin-bottom: 0 !important;
  }
  
  .logo-design-portfolio-section .portfolio-grid-item {
    max-width: 100% !important;
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    height: auto !important;
  }
  
  .logo-design-portfolio-section .portfolio-logo-card {
    max-width: 100% !important;
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    height: 100% !important;
  }
  
  .logo-design-portfolio-section .portfolio-logo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    aspect-ratio: 16/9 !important;
    background: #f8f9fa;
    padding: 20px;
  }

  /* Hide right side image column on mobile */
  .logo-design-banner-section .col-lg-6:last-child {
    display: none !important;
  }
  
  .logo-design-banner-section {
    min-height: auto !important;
    height: auto !important;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: visible !important;
  }
  
  /* Background wrapper on mobile - adapts to content height (padding-top + content + padding-bottom) */
  .logo-design-background-wrapper {
    height: 100% !important;
    min-height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    z-index: 0 !important;
  }
  
  /* Ensure next section is visible - not hidden behind banner */
  .logo-design-content-section {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 0 !important;
    padding-top: 60px !important;
    background: #ffffff !important;
  }
  
  /* Ensure banner container content has proper z-index */
  .logo-design-banner-section .container {
    position: relative !important;
    z-index: 2 !important;
  }
  
  .logo-design-banner-content {
    position: relative !important;
    z-index: 2 !important;
  }
  
  /* Ensure background image and overlay are exactly same size on mobile */
  .logo-design-background-image,
  .logo-design-background-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .logo-design-banner-title {
    font-size: 1.85rem;
    margin-bottom: 20px;
    text-align: left !important;
  }
  
  .logo-design-banner-paragraph {
    font-size: 0.9rem;
    margin-bottom: 14px;
    text-align: left !important;
  }
  
  .logo-design-banner-content {
    text-align: left !important;
    padding: 91px 0 !important;
  }
  
  .logo-design-banner-content * {
    text-align: left !important;
  }
  
  .logo-design-banner-bullets {
    margin: 20px 0 28px -19px;
    text-align: left !important;
    max-width: 100%;
  }
  
  .logo-design-banner-bullets li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-left: 24px;
    text-align: left !important;
  }
  
  .logo-design-banner-bullets li:before {
    font-size: 1.1rem;
  }
  
  /* About and Contact Banner - Match Logo Design */
  .about-main-title {
    font-size: 1.85rem;
    margin-bottom: 20px;
  }
  
  .about-sub-title {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }
  
  .contact-content .contact-main-title {
    font-size: 1.85rem;
    margin-bottom: 20px;
  }
  
  .contact-content .contact-sub-title {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }
  
  .hero-main-title {
    font-size: 1.85rem;
    margin-bottom: 20px;
  }
  
  .hero-sub-title {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }
  
  .logo-design-section-title {
    font-size: 1.75rem;
  }
  
  .logo-design-benefit-card {
    padding: 24px 20px;
  }
  
  .logo-design-benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 1.75rem;
  }
  
  .logo-design-benefit-title {
    font-size: 1.2rem;
  }
  
  .logo-design-benefit-text {
    font-size: 0.95rem;
  }
  
  .process-item-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.25rem;
  }
  
  .process-item-title {
    font-size: 1rem;
  }
  
  .process-item-text {
    font-size: 0.95rem;
  }
  
  .logo-design-contact-section .contact-form-wrapper,
  .logo-design-contact-section .contact-details-wrapper {
    padding: 24px 20px;
  }
  
  .logo-design-contact-section .contact-icon-wrapper {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 1.25rem;
  }
  
  .logo-design-contact-section .contact-info-label {
    font-size: 1rem;
  }
  
  .logo-design-contact-section .contact-info-value {
    font-size: 0.95rem;
  }
  
  .contact-curve-divider {
    height: 60px;
  }
}

/* ===== Responsive Padding Adjustments for Logo Design Page ===== */
@media (max-width: 991px) {
  .logo-design-banner-section.pt-100 {
    padding-top: 80px;
  }
  
  .logo-design-banner-section.pb-80 {
    padding-bottom: 60px;
  }
  
  .logo-design-content-section.pt-100 {
    padding-top: 80px;
  }
  
  .logo-design-content-section.pb-80 {
    padding-bottom: 60px;
  }
  
  .logo-design-features-section.pt-80 {
    padding-top: 60px;
  }
  
  .logo-design-features-section.pb-100 {
    padding-bottom: 80px;
  }
  
  .logo-design-portfolio-section.pt-100 {
    padding-top: 80px;
  }
  
  .logo-design-portfolio-section.pb-100 {
    padding-bottom: 80px;
  }
  
  .logo-design-pricing-section.pt-100 {
    padding-top: 80px;
  }
  
  .logo-design-pricing-section.pb-100 {
    padding-bottom: 80px;
  }
  
  .logo-design-how-it-works-section.pt-100 {
    padding-top: 80px;
  }
  
  .logo-design-how-it-works-section.pb-100 {
    padding-bottom: 80px;
  }
  
  .logo-design-benefits-section.pt-100 {
    padding-top: 80px;
  }
  
  .logo-design-benefits-section.pb-100 {
    padding-bottom: 80px;
  }
  
  .logo-design-process-section.pt-100 {
    padding-top: 80px;
  }
  
  .logo-design-process-section.pb-100 {
    padding-bottom: 80px;
  }
  
  .logo-design-contact-section.pt-120 {
    padding-top: 100px;
  }
  
  .logo-design-contact-section.pb-120 {
    padding-bottom: 100px;
  }
  
  .contact-curve-divider {
    height: 100px;
  }
}

@media (max-width: 768px) {
  .logo-design-banner-section.pt-100 {
    padding-top: 70px;
  }
  
  .logo-design-banner-section.pb-80 {
    padding-bottom: 50px;
  }
  
  .logo-design-content-section.pt-100 {
    padding-top: 60px;
  }
  
  .logo-design-content-section.pb-80 {
    padding-bottom: 50px;
  }
  
  .logo-design-features-section.pt-80 {
    padding-top: 50px;
  }
  
  .logo-design-features-section.pb-100 {
    padding-bottom: 60px;
  }
  
  .logo-design-portfolio-section.pt-100 {
    padding-top: 60px;
  }
  
  .logo-design-portfolio-section.pb-100 {
    padding-bottom: 60px;
  }
  
  .logo-design-pricing-section.pt-100 {
    padding-top: 60px;
  }
  
  .logo-design-pricing-section.pb-100 {
    padding-bottom: 60px;
  }
  
  .logo-design-how-it-works-section.pt-100 {
    padding-top: 60px;
  }
  
  .logo-design-how-it-works-section.pb-100 {
    padding-bottom: 60px;
  }
  
  .logo-design-benefits-section.pt-100 {
    padding-top: 60px;
  }
  
  .logo-design-benefits-section.pb-100 {
    padding-bottom: 60px;
  }
  
  .logo-design-process-section.pt-100 {
    padding-top: 60px;
  }
  
  .logo-design-process-section.pb-100 {
    padding-bottom: 60px;
  }
  
  .logo-design-contact-section.pt-120 {
    padding-top: 80px;
  }
  
  .logo-design-contact-section.pb-120 {
    padding-bottom: 80px;
  }
  
  .contact-curve-divider {
    height: 80px;
  }
  
  .logo-design-benefit-card {
    padding: 30px 24px;
  }
  
  .logo-design-benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .logo-design-benefit-title {
    font-size: 1.3rem;
  }
  
  .logo-design-process-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .process-item-number {
    margin: 0 auto;
  }
  
  .process-item-content {
    text-align: center;
  }
  
  .process-item-title {
    font-size: 1.1rem;
  }
  
  .logo-design-contact-section .contact-form-wrapper,
  .logo-design-contact-section .contact-details-wrapper {
    padding: 30px 24px;
  }
  
  .logo-design-contact-section .logo-design-section-title,
  .logo-design-contact-section .logo-design-section-description {
    text-align: center;
  }
  
  .logo-design-contact-section .contact-info-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .logo-design-contact-section .contact-icon-wrapper {
    margin: 0 auto;
  }
  
  .logo-design-contact-section .contact-info-content {
    text-align: center;
  }
  
  .logo-design-contact-section .form-control-modern {
    padding: 14px 18px 14px 50px;
    font-size: 0.95rem;
  }
}

