/* 
==========================================================
MyEasyDesk Premium Styles - Enhanced & Organized Version
==========================================================
*/

/*
TABLE OF CONTENTS:
------------------
1. Imports & Fonts
2. Variables & Root Settings
3. Global & Typography Styles
4. Buttons & Interactive Elements
5. Layout & Grid Components
6. Navigation & Header
7. Hero Sections
8. Content Sections
9. Cards & Containers
10. Forms & Input Elements
11. Animations & Transitions
12. Utilities & Helper Classes
13. Media Queries & Responsive Styles
*/

/* ==========================================================
   1. Imports & Fonts
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lora&family=Inter:wght@300;400;500;700;800&display=swap');

/* ==========================================================
   2. Variables & Root Settings
   ========================================================== */

:root {
  /* Color Variables */
  --text-black: #1e0e62;
  --text-white: #F5F5F7;
  --primary-blue: #0071E3;
  --secondary-blue: #007AFF;
  --dark-blue: #0040DD;
  --light-blue: #f0f7ff;
  --text-gray: #86868B;
  --light-gray: #F5F5F7;
  --success-green: #34C759;
  --header-btn: #a544cf;
  --success-green-dark: #30B850;

  /* Typography Variables */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Inter', sans-serif;
  
  /* Spacing & Sizing */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 980px; /* For pill-shaped buttons */
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-default: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.5s ease;
}

/* ==========================================================
   3. Global & Typography Styles
   ========================================================== */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-black);
  background-color: #fff;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background: linear-gradient(#D6E7FF 0%, #f3f9fe 15%);
  margin: 0;
  padding: 0;
}

/* Typography - Headings */

h1, h2, h3 {
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-black);
  text-rendering: optimizeLegibility;
}

h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: normal;
  color: var(--text-black);
  text-rendering: optimizeLegibility;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
}

.big-headline {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  font-size: 4.5rem;
}

/* Typography - Text & Links */

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition-default);
}

a:hover {
  text-decoration: underline;
}


/* ==========================================================
   4. Buttons & Interactive Elements
   ========================================================== */

/* Base Button Styles */
.btn {
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--border-radius-xl);
  font-weight: 600;
  letter-spacing: 0.005em;
  text-align: center;
  transition: var(--transition-default);
  font-family: var(--font-primary);
  text-transform: normal;
}

.btn:hover {
  transform: translateY(-3px);
  text-decoration: none !important;
}

/* Button Sizes */
.btn-xl {
  font-size: 1.2rem;
  padding: 16px 36px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

/* Button Styles */

/* Primary Button */
.btn.btn-primary {
  background: linear-gradient(90deg, var(--secondary-blue), var(--dark-blue));
  color: white;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 113, 227, 0.2);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn.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: all 0.8s;
  z-index: -1;
}

.btn.btn-primary:hover {
  background: linear-gradient(90deg, #0077ED, var(--dark-blue));
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 113, 227, 0.3);
}

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

/* Success Button (Green) */
.btn.btn-success {
  background-color: var(--header-btn);
  color: white;
  border: none;
  box-shadow: 0 2px 10px rgba(52, 199, 89, 0.2);
  font-size: 1.1rem;
}

.btn.btn-success:hover {
  background-color: var(--success-green-dark);
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(52, 199, 89, 0.3);
}

/* Outline Button */
.btn.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
}

.btn.btn-outline:hover {
  background-color: rgba(0, 113, 227, 0.05);
  color: var(--primary-blue);
  text-decoration: none;
}

/* Black Button */
.btn.btn-black {
  background-color: #000000;
  color: white;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn.btn-black:hover {
  background-color: #333333;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

/* Button with glow effect */
.btn-glow {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-glow:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: var(--border-radius-xl);
  background: inherit;
  filter: blur(15px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.btn-glow:hover:after {
  opacity: 0.7;
}

/* ==========================================================
   5. Layout & Grid Components
   ========================================================== */

.container-lg {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-xl {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Spacing utilities */
.py-large {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Background colors */
.bg-special-blue {
  background-color: #f0f7ff;
}

.bg-special-light {
  background-color: #f8f9fa;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
}

/* ==========================================================
   6. Navigation & Header
   ========================================================== */

/* Main Navigation Bar */
.main-navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  height: 62px;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.main-navbar .container {
  max-width: 1280px;
  padding: 0 15px;
  position: relative; /* For dropdown positioning */
}

/* Brand and Logo */
.main-navbar .navbar-brand {
  padding: 0;
  margin: 0;
  height: 40px;
  display: flex;
  align-items: center;
}

.main-navbar .navbar-brand img {
  height: 40px;
  padding: 0;
  transition: opacity 0.3s ease;
}

.main-navbar .navbar-brand:hover img {
  opacity: 0.8;
}

/* Navigation Items */
.main-navbar .navbar-nav {
  height: 60px;
}

.main-navbar .nav-item {
  height: 60px;
  display: flex;
  align-items: center;
  position: static; /* For correct dropdown positioning */
}

.main-navbar .nav-link {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 0 15px;
  margin-right: 15px;
  transition: color 0.3s ease;
  height: 60px;
  display: flex;
  align-items: center;
  font-family: var(--font-primary);
}

.main-navbar .nav-link:hover {
  color: var(--primary-blue);
  text-decoration: none;
}

/* Dropdown Indicators */
.main-navbar .dropdown-toggle::after {
  display: none;
}

.main-navbar .nav-link i.fa-chevron-down {
  font-size: 10px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.main-navbar .nav-item:hover .nav-link i.fa-chevron-down {
  transform: rotate(180deg);
}

/* Standard Dropdown Menu */
.main-navbar .dropdown-menu {
  margin-top: 0;
  border: none;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  min-width: 240px;
  position: absolute;
  top: 60px; /* Height of navbar */
  background-color: white;
  z-index: 1000;
}

/* Mega Dropdown Menu */
.main-navbar .mega-dropdown-menu {
  width: 100%; /* Full width */
  position: absolute;
  border-radius: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 0; /* Container has padding */
  display: none;
  top: 60px; /* Height of navbar */
  left: 0; /* Align to left edge */
  right: 0;
  transform: none; /* No transformation */
  margin-left: 0;
  background-color: white;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
}

.main-navbar .mega-dropdown-menu .container {
  padding: 40px;
}

/* Products dropdown styling */
.main-navbar li:has(#productsDropdown) .mega-dropdown-menu {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f7ff 100%);
  border-bottom: 3px solid var(--primary-blue);
}

/* Add a subtle top border glow to products dropdown */
.main-navbar li:has(#productsDropdown) .mega-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

/* Solutions dropdown styling */
.main-navbar li:has(#solutionsDropdown) .mega-dropdown-menu {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
  border-bottom: 3px solid #00d2ff;
}

/* Add a subtle top border glow to solutions dropdown */
.main-navbar li:has(#solutionsDropdown) .mega-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00d2ff, transparent);
}

/* Mega Dropdown Content Styling */
.mega-dropdown-column {
  padding: 0 15px;
}

.mega-dropdown-header {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-black);
  font-family: var(--font-primary);
  letter-spacing: -0.01em;
}

.mega-dropdown-item {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.mega-dropdown-item:last-child {
  border-bottom: none;
}

.mega-dropdown-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0a84ff 0%, #0055fe 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 15px;
  flex-shrink: 0;
}

/* Solutions dropdown icons with a different gradient */
.main-navbar li:has(#solutionsDropdown) .mega-dropdown-item-icon {
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
  box-shadow: 0 5px 15px rgba(0, 210, 255, 0.2);
}

.mega-dropdown-item-content {
  flex-grow: 1;
}

.mega-dropdown-item-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-black);
  font-family: var(--font-primary);
}

.mega-dropdown-item-description {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
  font-family: var(--font-primary);
}

.main-navbar .dropdown-item {
  padding: 10px 15px;
  color: var(--text-black);
  font-size: 14px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  font-family: var(--font-primary);
  font-weight: 500;
}

.main-navbar .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--primary-blue);
}

/* Mobile Menu Toggler */
.main-navbar .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
  box-shadow: none;
}

.main-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================================
   7. Hero Sections
   ========================================================== */

/* Base Hero Section */
.hero-section {
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  background: radial-gradient(ellipse at 50% -20%, #fafafa 0%, #fff 15%, transparent 70%), radial-gradient(circle at 20% 45%, #cbb6eb 0%, #ffefc8 25%, transparent 45%) !important;
}

/* Full-height hero section - use this for landing pages */
.hero-section.hero-full {
  min-height: 100vh; /* Full viewport height */
  padding-top: 120px;
  padding-bottom: 100px;
}

/* Standard height hero section - use this for inner pages */
.hero-section.hero-standard {
  min-height: auto;
  padding-top: 100px; 
  padding-bottom: 80px;
}

/* Hero section background variations */
.hero-section.bg-light-blue {
  background: radial-gradient(ellipse at 50% -20%, #f0f7ff 0%, #e5f1ff 25%, #dbeaff 100%) !important;
}

.hero-section.bg-white {
  background: #ffffff !important;
}

.hero-section.bg-gradient-primary {
  background: linear-gradient(135deg, #4F93EF, #3a7bd5) !important;
  color: white;
}

.hero-section.bg-gradient-secondary {
  background: linear-gradient(135deg, #8763DB, #B85DB7) !important;
  color: white;
}

.hero-section.bg-gray {
  background: #f8f9fa !important;
}

/* Apply to hero title when using dark backgrounds */
.hero-section.bg-gradient-primary .hero-title,
.hero-section.bg-gradient-secondary .hero-title,
.hero-section.bg-gradient-primary .hero-subtitle,
.hero-section.bg-gradient-secondary .hero-subtitle {
  color: white;
}

.hero-overlay1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(30deg,transparent,#4b99ec 34%,#008aff 48%,#063c93 90%) !important; */
  background: radial-gradient(ellipse at 50% -20%, #5ba8d7 0%, #346ee7 25%, transparent 70%), radial-gradient(circle at 20% 45%, #e7d4eb 0%, #d8dfee 25%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 60px 0;
}

.hero-title {
  font-size: 90px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}

.hero-subtitle {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: rgb(61, 105, 240, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 10;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator:hover {
  background-color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transform: translateX(-50%) translateY(-5px);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Login dropdown styling */
.main-navbar .login-link {
  font-weight: 500;
  color: #333;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.main-navbar .login-link:hover {
  color: #0078E7;
}

.main-navbar .login-link .fa-chevron-down {
  font-size: 10px;
  margin-top: 2px;
}

.main-navbar .login-dropdown {
  min-width: 280px;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  border: 1px solid #eaeaea;
  overflow: hidden;
}

.main-navbar .login-dropdown a {
  text-decoration: none;
  border-bottom: none;
}

.main-navbar .login-dropdown .dropdown-header {
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 8px;
  font-weight: 600;
  padding: 0 0 8px 0;
  color: #444;
}

.login-card-item {
  display: flex;
  padding: 10px;
  margin: 8px 0;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  text-decoration: none;
  color: #333;
  border-bottom: none;
}

.login-card-item:hover {
  background-color: #f5f8ff;
  color: #0078E7;
  text-decoration: none;
  border-bottom: none;
}

.login-card-icon {
  width: 40px;
  height: 40px;
  background-color: #f0f7ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 18px;
  color: #0078E7;
}

.login-card-content {
  flex: 1;
}

.login-card-title {
  font-weight: 500;
  margin-bottom: 2px;
}

.login-card-description {
  font-size: 12px;
  color: #666;
}

.main-navbar .dropdown-menu-end {
  right: 0;
  left: auto;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.section-featured-customers .img-client {
  filter: none;
}

/* Features Section */
.section-title {
  font-size: 48px;
  line-height: 1.07143;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  text-rendering: optimizeLegibility;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-display);
 
  background-clip: text;
}

.section-title.blue-gradient{
  color: #3b5ff9; /* Fallback color */
  background: linear-gradient(90deg, #3b5ff9 0%, #ce276f 50%, #f83a57 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Ensure text remains readable if gradients fail */
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
  .section-title.blue-gradient {
    color: var(--primary-blue);
  }
}

/* Event Types Section Styling */
.event-type-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.event-type-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.event-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bg-purple {
  background-color: #6f42c1;
}

.event-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background-color: #f8f9fa;
  color: #6c757d;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.cta-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.text-white-75 {
  color: rgba(255,255,255,0.9);
}

@media (max-width: 991px) {
  .cta-card {
    margin-top: 2rem;
  }
}



.section-title.light-gradient{
  background: linear-gradient(90deg, #ffffff 0%, #cde2ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 28px;
  line-height: 1.10722;
  font-weight: 500;
  letter-spacing: normal;
  background: linear-gradient(90deg, #6f42c1 0%, #4e38c2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 70px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-rendering: optimizeLegibility;
}

.features-section {
  padding: 130px 0;
  background-color: #fbfbfd;
  overflow: hidden;
}

.features-grid {
  position: relative;
  z-index: 1;
}

.features-grid::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 10%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.1) 0%, rgba(10, 132, 255, 0) 70%);
  transform: translateX(-50%);
  z-index: -1;
}

.feature-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  height: 100%;
  position: relative;
  z-index: 2;
  padding: 40px 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-16px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(90deg, #007AFF, #0040DD);
  transition: height 0.3s ease;
  z-index: -1;
}

.feature-card:hover::before {
  height: 5px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0a84ff 0%, #0055fe 100%);
  color: white;
  font-size: 24px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.feature-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
  top: 0;
  left: 0;
}

.feature-title {
  font-size: 24px;
  line-height: 1.16667;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: #1d1d1f;
  text-rendering: optimizeLegibility;
  font-family: var(--font-display);
}

.feature-text {
  font-size: 1rem;
  line-height: 1.4706;
  font-weight: 400;
  letter-spacing: -0.022em;
  color: #86868b;
  margin-bottom: 0;
}

/* Case Studies Section */
.case-study-card {
  background-color: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

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

.case-study-title {
  font-size: 24px;
  line-height: 1.16667;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  text-rendering: optimizeLegibility;
  font-family: var(--font-display);
}

.case-study-category {
  font-size: 14px;
  color: var(--primary-blue);
  font-weight: 600;
  letter-spacing: -0.016em;
  margin-bottom: 12px;
  display: inline-block;
}

.case-study-result {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.case-study-result i {
  font-size: 16px;
  color: #00CA2C;
  margin-right: 8px;
}

/* Pricing Section */
.pricing-card {
  background-color: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  padding: 40px 30px;
}

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

.pricing-title {
  font-size: 24px;
  line-height: 1.16667;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.pricing-price {
  font-size: 48px;
  line-height: 1.08349;
  font-weight: 600;
  letter-spacing: -0.003em;
  margin-bottom: 20px;
  color: var(--text-black);
}

.pricing-price .currency {
  font-size: 24px;
  vertical-align: top;
  position: relative;
  top: 8px;
}

.pricing-period {
  font-size: 17px;
  color: var(--text-gray);
  font-weight: 400;
}

.pricing-features {
  margin-bottom: 30px;
}

.pricing-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.pricing-features li i {
  color: var(--primary-blue);
  margin-right: 10px;
  font-size: 16px;
  margin-top: 4px;
}

.pricing-featured {
  border: 2px solid var(--primary-blue);
  transform: scale(1.05);
}

.pricing-featured:hover {
  transform: scale(1.05) translateY(-10px);
}

/* Testimonials */
.testimonial-wrapper {
  background-color: var(--light-gray);
  border-radius: 18px;
  padding: 40px;
  position: relative;
}

.testimonial-quote {
  font-size: 20px;
  line-height: 1.381;
  font-weight: 400;
  letter-spacing: 0.011em;
  margin-bottom: 20px;
  position: relative;
}

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

.testimonial-author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-author-name {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-author-title {
  font-size: 14px;
  color: var(--text-gray);
}

/* CTA Section */
.cta-section {
  background-color: var(--light-gray);
  border-radius: 20px;
  padding: 80px 60px;
  text-align: center;
  margin: 80px 0;
}

.cta-title {
  font-size: 48px;
  line-height: 1.08349;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-rendering: optimizeLegibility;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-display);
}

.cta-subtitle {
  font-size: 21px;
  line-height: 1.2381;
  font-weight: 500;
  letter-spacing: normal;
  color: var(--text-gray);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-rendering: optimizeLegibility;
}

/* Footer */
.main-footer {
  background-color: var(--light-dark);
  padding: 40px 0;
  color: var(--text-gray);
  font-size: 13px;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  margin-right: 20px;
  font-size: 12px;
  text-decoration: none;
  /* Color is now controlled by text-light class in the HTML */
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(134, 134, 139, 0.2);
  margin: 20px 0;
}

.footer-location {
  font-size: 12px;
  margin-bottom: 2px;
}


/* Animation & Transitions */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 21px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 19px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-subtitle {
    font-size: 17px;
  }

  .pricing-featured {
    transform: scale(1);
  }

  .pricing-featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .cta-section {
    padding: 40px 20px;
  }
}

/* Custom Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}

/* Text Gradient Effect */
.text-gradient {
  /*background: linear-gradient(90deg,#0055fe, #007AFF, #db3d74, #9900ff,#007AFF);*/
  background: linear-gradient(90deg, #0055fe, #a842ce, #007AFF, #ed3877);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-blue-gradient {
  background: linear-gradient(60deg, #0055fe);
  /*background: linear-gradient(60deg, #0055fe, #2676df,  #0472e7);*/
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Background Gradient Themes */
.bg-gradient-blue {
  background: linear-gradient(135deg, #0a84ff 0%, #0055fe 100%);
  color: white;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #0071E3 0%, #4b6cb7 100%);
  color: white;
}

.bg-primary-soft {
  background-color: rgba(0, 113, 227, 0.1);
}

/* Feature Card Styles */
.feature-card {
  transition: all 0.3s ease;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.feature-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to bottom, rgba(0, 113, 227, 0.03), transparent);
  transition: all 0.3s ease;
  z-index: -1;
}

.feature-card:hover .feature-hover-overlay {
  height: 100%;
}

.transition-300 {
  transition: all 0.3s ease;
}

/* Testimonial Section Styles */
.testimonial-card {
  border-left: 4px solid #0071E3;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1) !important;
}

.testimonial-event-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-tag {
  transition: all 0.2s ease;
}

.testimonial-tag:hover {
  background-color: rgba(0, 113, 227, 0.1) !important;
}

.bg-info-soft {
  background-color: rgba(13, 202, 240, 0.1);
}

.bg-success-soft {
  background-color: rgba(25, 135, 84, 0.1);
}

.success-metric {
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.success-metric:hover {
  transform: translateY(-7px);
  border-top: 3px solid #0071E3;
}

/* Image overlay gradients */
.bg-gradient-to-top-dark {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
}

.bg-gradient-teal {
  background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
  color: white;
}

.bg-gradient-green {
  background: linear-gradient(135deg, #34C759 0%, #2A9D8F 100%);
  color: white;
}

.bg-gradient-purple {
  background: linear-gradient(135deg, #5E60CE 0%, #7400B8 100%);
  color: white;
}

.bg-gradient-sunset {
  background: linear-gradient(135deg, #FF9500 0%, #FF2D55 100%);
  color: white;
}

.bg-gradient-dark {
  background: linear-gradient(135deg, #3A3A3C 0%, #1C1C1E 100%);
  color: white;
}

.bg-gradient-light {
  background: linear-gradient(135deg, #F2F2F7 0%, #E5E5EA 100%);
  color: var(--text-black);
}

.bg-special-blue {
  background: radial-gradient(ellipse at 50% -20%, #ffffff 0%, #fff 25%, transparent 70%), radial-gradient(circle at 20% 45%, #e7d4eb 0%, #346ee7 25%, transparent 45%);
}

.bg-special-green {
  background: radial-gradient(ellipse at 50% -20%, #ffffff 0%, #fff 25%, transparent 70%), radial-gradient(circle at 20% 45%, #e7d4eb 0%, #e2f5e0 25%, transparent 45%);
}

/* Soft Background Gradients */
.bg-soft-blue {
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.1) 0%, rgba(0, 85, 254, 0.05) 100%);
}

.bg-soft-green {
  background: linear-gradient(135deg, rgba(52, 199, 89, 0.1) 0%, rgba(42, 157, 143, 0.05) 100%);
}

.bg-soft-teal {
  /*background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(0, 119, 182, 0.05) 100%);*/
  background: linear-gradient(135deg, rgb(191 244 255 / 10%) 0%, rgb(236 248 187 / 5%) 100%);
}

/* Hero Section Background Variations */
.hero-bg-gradient-purple {
  background-color: #6a11cb;
  background-image: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.hero-bg-gradient-purple .hero-overlay {
  background: linear-gradient(30deg, rgba(0, 0, 0, 0.8), rgba(106, 17, 203, 0.4) 34%, rgba(37, 117, 252, 0.2) 48%, rgba(0, 0, 0, 0) 100%) !important;
}

.hero-bg-gradient-teal {
  background-color: #0093E9;
  background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
}

.hero-bg-gradient-teal .hero-overlay {
  background: linear-gradient(30deg, rgba(0, 0, 0, 0.7), rgba(0, 147, 233, 0.4) 34%, rgba(128, 208, 199, 0.2) 48%, rgba(0, 0, 0, 0) 100%) !important;
}

.hero-bg-geometric {
  background-color: #4158D0;
  background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
}

.hero-bg-geometric .hero-overlay {
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%),
              url("../images/geometric-pattern.svg");
  background-size: cover, 150px 150px;
  background-blend-mode: overlay;
  opacity: 0.9;
}

.hero-bg-nebula {
  background-color: #0c0c2c;
  background-image: url("../images/nebula-bg.jpg");
  background-size: cover;
  background-position: center;
}

.hero-bg-nebula .hero-overlay {
  background: radial-gradient(ellipse at center, rgba(29, 43, 100, 0.9) 0%, rgba(12, 12, 44, 0.9) 100%);
}

/* Radial Gradient Mixed Backgrounds */
.hero-bg-radial-blue {
  background-color: #f5f7fa;
  position: relative;
}

.hero-bg-radial-blue .hero-overlay {
  background: radial-gradient(ellipse at 50% -20%, #ffffff 0%, #fff 25%, transparent 70%), 
              radial-gradient(circle at 20% 45%, #e7d4eb 0%, #346ee7 25%, transparent 45%);
  opacity: 1;
}

.hero-bg-radial-purple {
  background-color: #f9f9f9;
  position: relative;
}

.hero-bg-radial-purple .hero-overlay {
  background: radial-gradient(ellipse at 70% -10%, #ffffff 0%, #fff 20%, transparent 60%), 
              radial-gradient(circle at 30% 40%, #d4e7eb 0%, #6e46e7 30%, transparent 60%),
              radial-gradient(circle at 90% 90%, #ffe1e7 0%, #ff7aa8 15%, transparent 40%);
  opacity: 1;
}

.hero-bg-radial-teal {
  background-color: #f5f7fa;
  position: relative;
}

.hero-bg-radial-teal .hero-overlay {
  background: radial-gradient(ellipse at 10% -20%, #ffffff 0%, #fff 25%, transparent 65%), 
              radial-gradient(circle at 80% 30%, #d4ebdf 0%, #46e7c0 20%, transparent 50%),
              radial-gradient(circle at 40% 80%, #e7d4d4 0%, #4698e7 15%, transparent 45%);
  opacity: 1;
}

.hero-bg-particles {
  background-color: #000046;
  position: relative;
}

.hero-bg-particles .hero-overlay {
  background: linear-gradient(30deg, rgba(0, 0, 70, 0.95), rgba(0, 28, 130, 0.8) 50%, rgba(61, 101, 255, 0.7) 100%);
}

.hero-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 3;
}

/* Video Background Hero Section */
.hero-bg-video {
  background-color: #000;
  position: relative;
}

.hero-bg-video .hero-overlay {
  background: linear-gradient(30deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 6;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 4;
}

.hero-background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
}

/* Conference Section Styles */
.conference-icon-wrapper {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(0, 113, 227, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.conference-feature-card {
  transition: transform 0.3s ease;
  height: 100%;
}

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

.bg-gradient-overlay {
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

/* Diagonal Gradients */
.bg-diagonal-blue {
  background: linear-gradient(45deg, #0a84ff 0%, #00C7FF 100%);
  color: white;
}

.bg-diagonal-dark {
  background: linear-gradient(45deg, #1C1C1E 0%, #3A3A3C 100%);
  color: white;
}

/* Product Features Tabs Section */
.feature-tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Nav pills overrides */
.nav-pills .nav-link {
  border-radius: 16px;
}

.feature-tab {
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 16px !important;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease !important;
  text-align: left;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.feature-tab:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  border-color: rgba(10, 132, 255, 0.3);
}

.feature-tab::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(135deg, #0a84ff 0%, #0055fe 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-tab:hover::before {
  opacity: 1;
}

.feature-tab.active {
  background: linear-gradient(135deg, #0a84ff 0%, #0055fe 100%);
  color: white;
  border: none;
  box-shadow: 0 10px 30px rgba(10, 132, 255, 0.3);
  transform: translateY(-4px) scale(1.03);
}

.feature-tab.active::before {
  opacity: 0;
}

.feature-tab-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background-color: rgba(10, 132, 255, 0.1);
  color: var(--primary-blue);
  transition: all 0.3s ease;
  margin-right: 16px;
}

.feature-tab.active .feature-tab-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  transform: scale(1.1);
}

.feature-tab-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.feature-tab-description {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 0;
  font-weight: 400;
  transition: all 0.3s ease;
}

.feature-content-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-black);
  line-height: 1.2;
}

.feature-content-text {
  font-size: 17px;
  color: var(--text-gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

.feature-content-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.feature-content-list li {
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--text-black);
  display: flex;
  align-items: center;
}

.feature-content-list li:last-child {
  margin-bottom: 0;
}

.feature-content-list li i {
  color: #34C759;
  margin-right: 10px;
  font-size: 18px;
}

.tab-pane {
  animation: fadeIn 0.5s ease;
}

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

#product-features img {
  transition: all 0.5s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

#product-features img:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767.98px) {
  .feature-tab {
    padding: 15px;
    margin-bottom: 12px;
  }

  .feature-tab-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-right: 12px;
  }

  .feature-tab-title {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .feature-tab-description {
    font-size: 13px;
  }

  .feature-content-title {
    font-size: 26px;
    margin-top: 20px;
    margin-bottom: 12px;
  }

  .feature-content-text {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .feature-content-list li {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

/* Solutions Section Styles */
.bg-gradient-soft {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9f0ff 100%);
}

.solution-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 126, 255, 0.2);
}

.solution-card-icon {
  width: 60px;
  height: 60px;
/*  background: linear-gradient(135deg, #0078E7, #00A3FF);*/
  background: linear-gradient(135deg, var(--primary-blue), #a842ce);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 114, 239, 0.3);
}

.solution-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.solution-card-description {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.solution-feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #444;
}

.solution-feature-list li i {
  margin-right: 10px;
  font-size: 16px;
}

.solution-icon-circle {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  flex-shrink: 0;
}

.solution-img-container {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.solution-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.solution-card:hover .solution-img {
  transform: scale(1.1);
}

.solution-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.solution-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  letter-spacing: 1px;
  background-color: rgba(10, 132, 255, 0.8);
  padding: 6px 12px;
  border-radius: 30px;
}

.solution-content {
  padding: 24px;
}

.solution-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-black);
}

.solution-description {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.solution-features {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.solution-features li {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-gray);
  display: flex;
  align-items: center;
}

.solution-features i {
  font-size: 14px;
  margin-right: 8px;
  color: var(--primary-blue);
}

.solution-btn {
  border-radius: 30px;
  font-weight: 500;
  padding: 8px 20px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.solution-btn:hover {
  transform: translateX(5px);
  background-color: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

.solution-btn i {
  transition: transform 0.3s ease;
}

.solution-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .solution-img-container {
    height: 160px;
  }

  .solution-title {
    font-size: 20px;
  }

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

/* Key Services Section Styles */
.service-card {
  border-radius: 20px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 126, 255, 0.2);
}

.service-img-container {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-content {
  padding: 32px;
}

.service-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-black);
  position: relative;
  padding-bottom: 16px;
}

.service-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), #4dabf7);
  border-radius: 3px;
}

.service-description {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-btn {
  border-radius: 30px;
  font-weight: 500;
  padding: 10px 24px;
  margin-top: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-btn:hover {
  transform: translateX(8px);
  background-color: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

.service-btn i {
  transition: transform 0.3s ease;
}

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

@media (max-width: 991.98px) {
  .service-img-container {
    height: 220px;
  }

  .service-title {
    font-size: 22px;
  }

  .service-description {
    font-size: 15px;
  }
}

/* Main Services Tabs Section Styles */
.main-tabs {
  gap: 20px;
}

.main-tab-btn {
  padding: 16px 20px;
  border-radius: 16px;
  background-color: white;
  color: var(--text-black);
  border: 1px solid rgb(208, 88, 88, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 460px;
}

.main-tab-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgb(54, 60, 236, 0.1);
  border-color: #e7b7f433;
  background-color: #e7b7f433;
  color: var(--text-black);
}

.main-tab-btn.active {
  background: linear-gradient(135deg, var(--primary-blue), #a842ce); 
  /* background: linear-gradient(135deg, #080817 0%, #020412 100%); */
  color: white;
  box-shadow: 0 12px 30px rgba(10, 132, 255, 0.2);
  border-color:  rgb(208, 88, 88, 0.08);
  transform: translateY(-5px);
}

.main-tab-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #f8f9fa, white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  font-size: 24px;
}

.main-tab-btn.active .main-tab-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.main-tab-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.main-tab-description {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 0;
}

.main-tab-btn.active .main-tab-title {
  color: rgba(255, 255, 255, 1);
}
.main-tab-btn.active .main-tab-description {
  color: rgba(255, 255, 255, 0.8);
}

.sub-tabs {
  background-color: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  gap: 12px;
}

.sub-tab {
  padding: 16px;
  border-radius: 12px;
  color: var(--text-black);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.sub-tab:hover {
  background-color: rgba(10, 132, 255, 0.05);
  color: var(--text-black);
}

.sub-tab.active {
  background-color: rgba(10, 132, 255, 0.08);
  color: var(--primary-blue);
  border-color: rgba(10, 132, 255, 0.2);
  box-shadow: 0 6px 15px rgba(10, 132, 255, 0.08);
}

.sub-tab-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #f8f9fa, white);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  font-size: 18px;
  transition: all 0.3s ease;
}

.sub-tab.active .sub-tab-icon {
  background: linear-gradient(45deg, var(--primary-blue), #4dabf7);
  color: white;
  box-shadow: 0 6px 12px rgba(10, 132, 255, 0.15);
}

.sub-tab-title {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.sub-tab-description {
  text-align: left;
  font-size: 13px;
  color: var(--text-gray);
}

.sub-content {
  background-color: white;
  background: radial-gradient(ellipse at 50% -20%, #ffffff 0%, #fff 25%, transparent 70%), radial-gradient(circle at 60% 45%, #e7d4eb 0%, #baf2f18a 25%, transparent 45%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.sub-content-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-black);
}

.sub-content-text {
  font-size: 16px;
  color: var(--text-black);
  margin-bottom: 20px;
  line-height: 1.7;
}

.sub-content-list {
  padding-left: 0;
  list-style: none;
}

.sub-content-list li {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-black);
}

@media (max-width: 991.98px) {
  .main-tabs {
    flex-direction: column;
  }

  .main-tab-btn {
    width: 100%;
    max-width: 100%;
  }

  .sub-content {
    padding: 20px;
    margin-top: 20px;
  }

  .sub-tab-title {
    font-size: 15px;
  }

  .sub-content-title {
    font-size: 22px;
  }

  .sub-content-text {
    font-size: 15px;
  }

  .sub-content-list li {
    font-size: 14px;
  }
}

/* Success Stories Page Styles */
.category-filter .nav-pills .nav-link {
  color: var(--text-gray);
  font-weight: 500;
  background-color: white;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.category-filter .nav-pills .nav-link:hover {
  background-color: rgba(10, 132, 255, 0.05);
  border-color: rgba(10, 132, 255, 0.2);
  color: var(--primary-blue);
}

.category-filter .nav-pills .nav-link.active {
  background-color: var(--primary-blue);
  color: white;
  box-shadow: 0 6px 15px rgba(10, 132, 255, 0.2);
}

.case-study-card {
  border-radius: 16px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 126, 255, 0.2);
}

.case-study-img-container {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

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

.case-study-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.case-study-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  letter-spacing: 1px;
  background-color: rgba(10, 132, 255, 0.8);
  padding: 6px 12px;
  border-radius: 30px;
}

.case-study-video-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.case-study-video-btn i {
  font-size: 18px;
}

.case-study-card:hover .case-study-video-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.case-study-content {
  padding: 24px;
}

.case-study-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-black);
}

.case-study-description {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.case-study-results {
  background-color: rgba(10, 132, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.case-study-stat {
  text-align: center;
}

.case-study-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-blue);
}

.case-study-stat-label {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 500;
}

.case-study-btn {
  border-radius: 30px;
  font-weight: 500;
  padding: 8px 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  text-align: center;
}

.case-study-btn:hover {
  background-color: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

@media (max-width: 767.98px) {
  .case-study-img-container {
    height: 180px;
  }

  .case-study-title {
    font-size: 20px;
  }

  .case-study-description {
    font-size: 14px;
  }

  .case-study-stat-value {
    font-size: 18px;
  }
}

/* Separator Styles */
.separator {
  position: absolute;
  pointer-events: none;
  width: 100%;
  left: 0;
  overflow: hidden;
  line-height: 0;
}

.separator svg {
  display: block;
  width: 100%;
  height: 100px;
}

.separator-top {
  top: 0;
  margin-top: -1px;
}

.separator-bottom {
  bottom: 0;
  margin-bottom: -1px;
}

.separator-skew {
  transform: skewY(-3deg);
}

.separator-reverse-skew {
  transform: skewY(3deg);
}

.separator-curve {
  transform: none;
}

.separator-wave {
  transform: none;
}

.separator-wave-alt {
  transform: none;
}

.separator-skew-reverse {
  transform: skewY(-3deg);
}

.separator-arc {
  transform: none;
}

.separator-swoosh {
  transform: none;
}

.separator-zigzag {
  transform: none;
}

.zindex-100 {
  z-index: 100;
}

.fill-transparent {
  fill: transparent;
}

.fill-white {
  fill: white;
}

.fill-light {
  fill: #F5F5F7;
}

.fill-blue {
  fill: #0071E3;
}

.fill-primary {
  fill: #0071E3;
}

.fill-purple {
  fill: #6f42c1;
}

.fill-teal {
  fill: #EEF7FA;
}

.fill-blue {
  fill: #3b5ff9;
}

.fill-orange {
  fill: #fd7e14;
}

.fill-gradient {
  fill: url(style.css#gradient);
}

/* New Background Gradient Colors */

/* Vibrant Gradients for UI Elements */
.bg-gradient-purple-indigo {
  background: linear-gradient(135deg, #6f42c1 0%, #4e38c2 100%);
  color: white;
}

.bg-gradient-teal-cyan {
  background: linear-gradient(135deg, #20c997 0%, #0dcaf0 100%);
  color: white;
}

.bg-gradient-coral-orange {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff922b 100%);
  color: white;
}

.bg-gradient-blue-aqua {
  background: linear-gradient(135deg, #3b5ff9 0%, #38bdf8 100%);
  color: white;
}

.bg-gradient-aqua-blue {
  background: linear-gradient(87deg, #11cdef 0, #1171ef 100%);
  color: white;
}

.bg-gradient-green-lime {
  background: linear-gradient(135deg, #10b981 0%, #a3e635 100%);
  color: white;
}

/* Subtle Pastel Gradients */
.bg-gradient-pastel-blue {
  background: linear-gradient(135deg, #cfe2ff 0%, #e0efff 100%);
  color: #0a4b9f;
}

.bg-gradient-pastel-green {
  background: linear-gradient(135deg, #d1e7dd 0%, #e8f6f0 100%);
  color: #0f5132;
}

.bg-gradient-pastel-yellow {
  background: linear-gradient(135deg, #fff3cd 0%, #fff9e6 100%);
  color: #664d03;
}

.bg-gradient-pastel-red {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c2c7 100%);
  color: #842029;
}

.bg-gradient-pastel-purple {
  background: linear-gradient(135deg, #e2d9f3 0%, #eee7fa 100%);
  color: #5a337a;
}

/* Dark Theme Gradients */
.bg-gradient-dark-blue {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
}

.bg-gradient-dark-purple {
  background: linear-gradient(135deg, #2e1065 0%, #4c1d95 100%);
  color: white;
}

.bg-gradient-dark-green {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
  color: white;
}

.bg-gradient-dark-gray {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
}

/* Multi-Color Gradients */
.bg-gradient-rainbow {
  background: linear-gradient(90deg, #ff4d4d, #f9cb28, #4dc274, #4e67eb, #b845eb);
  color: white;
}

.bg-gradient-sunset {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  color: white;
}

.bg-gradient-ocean {
  background: linear-gradient(135deg, #0093e9 0%, #80d0c7 100%);
  color: white;
}

.bg-gradient-aurora {
  background: linear-gradient(135deg, #85FFBD 0%, #FFFB7D 100%);
  color: #1e293b;
}

/* Interactive Gradients with Hover Effects */
.bg-gradient-interactive {
  background: linear-gradient(135deg, #3b82f6 0%, #14b8a6 100%);
  transition: background 0.3s ease;
  color: white;
}

.bg-gradient-interactive:hover {
  background: linear-gradient(135deg, #14b8a6 0%, #3b82f6 100%);
}

/* Communication Tab-Specific Gradients */
.communication-tab-gradient {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  transition: all 0.3s ease;
}

.communication-tab-gradient:hover {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.email-campaigns-gradient {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  transition: all 0.3s ease;
}

.email-campaigns-gradient:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
}

.sms-notifications-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  color: white;
  transition: all 0.3s ease;
}

.sms-notifications-gradient:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.messaging-center-gradient {
  background: linear-gradient(135deg, #7c3aed 0%, #c026d3 100%);
  color: white;
  transition: all 0.3s ease;
}

.messaging-center-gradient:hover {
  background: linear-gradient(135deg, #c026d3 0%, #7c3aed 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

.notification-templates-gradient {
  background: linear-gradient(135deg, #9333ea 0%, #d946ef 100%);
  color: white;
  transition: all 0.3s ease;
}

.notification-templates-gradient:hover {
  background: linear-gradient(135deg, #d946ef 0%, #9333ea 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(147, 51, 234, 0.4);
}

/* Animated Badge Showcase Styles */
.badge-showcase-container {
  margin: 3rem 0;
}

.badge-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.badge-showcase-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  height: 380px;
}

.badge-showcase-item:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.badge-showcase-item:hover .badge-overlay {
  opacity: 0.95;
}

.badge-showcase-item:hover .badge-details {
  transform: translateY(0);
  opacity: 1;
}

.badge-showcase-item:hover .badge-cta {
  transform: translateY(0);
  opacity: 1;
}

.badge-showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.badge-showcase-item:hover .badge-showcase-image {
  transform: scale(1.1);
}

.badge-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
  padding: 2rem 1.5rem;
  color: white;
  transition: all 0.3s ease;
  opacity: 0.7;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.badge-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.badge-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.badge-details {
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
  opacity: 0;
}

.badge-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.badge-feature-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.badge-feature-list li i {
  margin-right: 0.5rem;
  color: #42e695;
}

.badge-cta {
  transform: translateY(20px);
  transition: all 0.4s ease 0.2s;
  opacity: 0;
}

/* Feature List Styling for Conference Registration */
.feature-list {
  list-style: none !important;
  padding: 0;
  margin: 0 0 1rem 0;
}

.feature-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #555;
}

.feature-list li i {
  margin-right: 0.5rem;
  flex-shrink: 0;
}



/* Additional Participants Highlighting */
#additionalPaxSection.has-value {
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8ff 100%);
  border-radius: 8px;
  padding: 1rem;
  border: 2px solid var(--success-green);
  box-shadow: 0 2px 8px rgba(52, 199, 89, 0.15);
  transition: all 0.3s ease;
}

/* Input field focus enhancements */
.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(0, 113, 227, 0.25);
}

/* Feature card list styling */
.feature-card ul.small {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

.feature-card ul.small li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 0.4rem;
  line-height: 1.4;
  color: #555;
}

.feature-card ul.small li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4a77e5;
  font-weight: bold;
}

/* Feature card improvements */
.feature-card {
  padding: 1.5rem;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

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

.feature-card-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6e8efb, #4a77e5);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.feature-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Customer Page Styles */
.customer-category-card {
  padding: 2rem;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.customer-category-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.category-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6e8efb, #4a77e5);
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customer-category-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
}

.customer-category-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.customer-logo {
  max-height: 60px;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.customer-logo:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Customer Logos - Client Images */
.img-client {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transition: all 0.3s ease;
  filter: none;
  margin-bottom: 1.5rem;
  padding: 0.25rem;
}

.img-client:hover {
  transform: scale(1.08);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.partners-logoset {
  margin-bottom: 2.5rem;
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem 1rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.partners-logoset h4 {
  font-size: 1.3rem;
  color: #333;
  margin-top: 1rem;
  font-weight: 600;
  position: relative;
  padding-left: 1rem;
}

.partners-logoset h4:before {
  content: '';
  width: 5px;
  height: 20px;
  background: linear-gradient(135deg, #6e8efb, #4a77e5);
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 3px;
}

.partners-logoset hr {
  width: 100%;
  border-color: #f2f2f2;
  margin-bottom: 1.5rem;
}

.partners-container {
  background-color: transparent;
  padding: 2rem 0;
  border-radius: 12px;
}

.partners-section-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #3366cc;
  position: relative;
  display: inline-block;
}

.partners-section-title:after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #3366cc, transparent);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.testimonial-card {
  padding: 2rem;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.testimonial-content {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 0.5rem;
}

.testimonial-content:before {
  content: """;
  font-size: 4rem;
  position: absolute;
  top: -2rem;
  left: -1rem;
  color: rgba(74, 119, 229, 0.1);
  font-family: serif;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  margin-right: 1rem;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid #4a77e5;
}

.testimonial-info h5 {
  margin-bottom: 0.25rem;
  color: #333;
}

.testimonial-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #777;
}

.badge-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Suitable For Card Styles */
.suitable-events-card {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    border-left: 4px solid #00acc1;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 1.25rem;
    height: calc(100% - 1rem);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #333;
    font-weight: 500;
}

.suitable-events-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #b2ebf2 0%, #80deea 100%);
}

.suitable-events-card::before {
    content: "Ideal For";
    position: absolute;
    top: 0;
    right: 0;
    background: #00acc1;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-bottom-left-radius: 8px;
}

.suitable-events-card strong {
    color: #00838f;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}


/* Solutions Section Background Styles */
#solutions-section {
  background-color: #007bff;
  background:radial-gradient(ellipse at 50% -20%, #ffffff 0%, #fff 25%, transparent 70%), radial-gradient(circle at 20% 45%, #F9E4FE 0%, #77b4ee36 25%, transparent 45%);
  color: #333;
  position: relative;
}

#solutions-section > * {
  position: relative;
  z-index: 2;
}


/* Event Type Badges */
.event-types-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
  max-width: 100%;
}

.event-type-badge {
  background-color: rgba(255, 255, 255, 0.65);
  color: #333;
  padding: 5px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  white-space: nowrap;
}

.event-type-badge i {
  font-size: 0.85rem;
  margin-right: 4px;
  color: #0071E3;
}

.event-type-badge span {
  font-size: 0.73rem;
}

.event-type-badge:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  color: #0071E3;
}

@media (max-width: 768px) {
  .event-types-container {
    flex-wrap: wrap;
  }
  
  .event-type-badge {
    font-size: 0.75rem;
    padding: 5px 8px;
  }
  
  .event-type-badge i {
    font-size: 0.8rem;
  }
}

/* New Single-Row Tabs Styling */
.main-tabs-row {
  gap: 8px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  overflow-x: visible;
  padding: 20px 0;
  margin: 0 auto;
  max-width: 95%;
}

.main-tabs-row .nav-item {
  width: 24%;
  /*max-width: 260px;*/
  min-width: 190px;
  flex-shrink: 0;
  margin: 0 2px;
}

.main-tabs-row .main-tab-btn {
  padding: 20px 15px;
  width: 100%;
  height: 100%;
  min-width: 180px;
  max-width: 100%;
  border-color: #e7b7f4;
}

.main-tabs-row .main-tab-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  font-size: 20px;
}

.main-tabs-row .main-tab-title {
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-tabs-row .main-tab-description {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 992px) {
  .main-tabs-row {
    flex-wrap: wrap;
  }
  
  .main-tabs-row .nav-item {
    width: 80%;
    min-width: 150px;
  }
}

/* Conference Registration Page Styles */

/* Hero Section Stats */
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 8px;
}

.hero-stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Feature Section Styles */
.feature-tag-container {
  position: absolute;
  top: 20px;
  right: 20px;
}

.feature-tag {
  background-color: #fff;
  color: var(--primary-blue);
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-icon-large {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.feature-quote {
  background-color: #f8f9fa;
  border-left: 4px solid var(--primary-blue);
  padding: 15px;
  border-radius: 0 8px 8px 0;
  position: relative;
}

.feature-quote p {
  font-style: italic;
  margin-bottom: 5px;
}

.feature-quote-author {
  font-size: 14px;
  color: #6c757d;
}

.feature-stat-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 15px;
  border-radius: 8px;
}

.feature-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.feature-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.feature-metrics {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
}

.feature-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-metric-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-blue);
}

.feature-metric-label {
  font-size: 12px;
  color: #6c757d;
}

.badge-example-overlay {
  position: absolute;
  bottom: -30px;
  right: 20px;
  width: 120px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 4px solid white;
}

.badge-example-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-options {
  background-color: #f8f9fa;
  padding: 12px;
  border-radius: 8px;
}

.badge-option-label {
  font-weight: 600;
  font-size: 14px;
}

.badge-option {
  display: inline-block;
  background-color: #e9ecef;
  color: #495057;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 12px;
  margin-bottom: 5px;
}

.feature-card {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.feature-card-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 113, 227, 0.1);
  color: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Service Card Styles */
.service-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #eaeaea;
  color: #212529;
}

.service-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.service-card-flag {
  position: absolute;
  top: 0;
  right: 30px;
  background-color: var(--primary-blue);
  color: white;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
}

.service-card-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(0, 113, 227, 0.1);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.service-card-title {
  margin-bottom: 15px;
  font-weight: 700;
}

.service-features {
  margin: 20px 0;
}

.service-feature {
  margin-bottom: 10px;
  color: #495057;
}

.service-feature i {
  color: var(--primary-blue);
}

.service-quote {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  position: relative;
  font-style: italic;
}

.service-quote-author {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.service-quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.service-quote-name {
  font-weight: 600;
  font-size: 14px;
}

.service-quote-title {
  font-size: 12px;
  color: #6c757d;
}

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

.service-metric-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-blue);
}

.service-metric-label {
  font-size: 12px;
  color: #6c757d;
}

.service-availability {
  margin-top: 20px;
}

.service-availability-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.service-availability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.service-availability-tag {
  background-color: #e9ecef;
  color: #495057;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 12px;
}

.callout-box {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--primary-blue);
}

.star-rating {
  color: #FFBA00;
}

/* Case Study Cards */
.case-study-card {
  background-color: white;
  color: #212529;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.premium-case-study {
  border: 1px solid rgba(0, 113, 227, 0.3);
}

.case-study-header {
  background-color: var(--primary-blue);
  color: white;
  padding: 8px 15px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.case-study-featured-tag {
  letter-spacing: 1px;
}

.case-study-image-container {
  position: relative;
  height: 100%;
}

.case-study-logo {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.case-study-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.case-study-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #6c757d;
}

.case-study-meta-item {
  display: inline-flex;
  align-items: center;
}

.case-study-challenge {
  background-color: rgba(255, 193, 7, 0.1);
  padding: 10px;
  border-radius: 8px;
}

.challenge-label {
  font-weight: 600;
  color: #856404;
  margin-bottom: 5px;
}

.case-study-results {
  background-color: #f8f9fa;
  padding: 12px;
  border-radius: 8px;
}

.result-metric {
  text-align: center;
}

.result-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  display: block;
}

.result-label {
  font-size: 12px;
  color: #6c757d;
  display: block;
}

/* Trusted Section */
.trusted-logo-wrapper {
  background-color: white;
  padding: 15px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.trusted-metric {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.trusted-metric-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.trusted-metric-label {
  color: #6c757d;
  font-weight: 500;
}

/* CTA Section */
.cta-graphics-element-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, rgba(0,113,227,0.2), rgba(0,192,255,0.2));
  border-radius: 0 0 0 100%;
}

.cta-graphics-element-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, rgba(0,113,227,0.15), rgba(0,192,255,0.15));
  border-radius: 0 100% 0 0;
}

.cta-boxes {
  margin: 30px 0;
}

.cta-box {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-box:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.cta-box.highlighted {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  transform: translateY(-5px);
}

.cta-box-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-blue);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-box-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.cta-box h5 {
  color: white;
  margin-bottom: 10px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-guarantee {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 20px;
}

/* Additional colors */
.bg-purple {
  background-color: #6f42c1 !important;
}

.text-purple {
  color: #6f42c1 !important;
}

.btn-outline-purple {
  color: #6f42c1;
  border-color: #6f42c1;
}

.btn-outline-purple:hover {
  color: #fff;
  background-color: #6f42c1;
  border-color: #6f42c1;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .hero-stat {
    margin-bottom: 10px;
  }
  
  .feature-tag-container,
  .feature-stat-overlay,
  .badge-example-overlay {
    display: none;
  }
  
  .service-card,
  .case-study-card {
    margin-bottom: 20px;
  }
  
  .trusted-metric {
    margin-bottom: 15px;
  }
  
  .cta-boxes {
    margin: 20px 0;
  }
  
  .cta-box {
    margin-bottom: 15px;
  }
}

/* Text color classes for radial gradient hero sections */
.text-purple {
  color: #6e46e7 !important;
}

.text-teal {
  color: #46e7c0 !important;
}

/* Button styles for radial gradient hero sections */
.btn-purple {
  background-color: #6e46e7;
  border-color: #6e46e7;
  color: #fff;
}

.btn-purple:hover {
  background-color: #5e39cc;
  border-color: #5e39cc;
  color: #fff;
}

.btn-teal {
  background-color: #46e7c0;
  border-color: #46e7c0;
  color: #fff;
}

.btn-teal:hover {
  background-color: #39ccaa;
  border-color: #39ccaa;
  color: #fff;
}

/* Informal testimonials */
.informal-testimonial {
  padding: 1.5rem;
  border-radius: 12px;
  background-color: #f8fbff;
  border-left: 4px solid #4a77e5;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.25s ease;
}

.informal-testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.informal-testimonial p {
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.informal-testimonial p::before {
  content: """;
  font-size: 3rem;
  color: rgba(74, 119, 229, 0.1);
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  z-index: -1;
}

.informal-testimonial-source {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.informal-testimonial-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #4a77e5;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.informal-testimonial-icon.email {
  background-color: #6e46e7;
}

.informal-testimonial-icon.whatsapp {
  background-color: #25D366;
}

.informal-testimonial-meta {
  display: flex;
  flex-direction: column;
}

.informal-testimonial-company {
  font-weight: 600;
  font-size: 0.85rem;
  color: #333;
}

.informal-testimonial-role {
  font-size: 0.8rem;
  color: #777;
}

.informal-testimonials-container {
  padding: 2rem;
  background: linear-gradient(to bottom right, #f9faff, #f1f5ff);
  border-radius: 16px;
  margin: 2rem 0;
}

.informal-testimonials-title {
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.informal-testimonials-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 60px;
  background: linear-gradient(to right, #4a77e5, #6e46e7);
  border-radius: 3px;
}

/* Registration Feature Card Hover Effect */
.registration-feature {
  transition: all 0.3s ease;
  cursor: pointer;
}

.registration-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.1) !important;
  border-color: rgba(13, 110, 253, 0.3) !important;
  background-color: #f8fbff !important;
}

.registration-feature:hover .feature-icon-wrapper {
  background-color: rgba(13, 110, 253, 0.2) !important;
}

.registration-feature:hover .feature-title {
  background: linear-gradient(90deg, #0055fe, #2d98fa) !important;
  -webkit-background-clip: text !important;
}

/* Feature Title Consistent Styling */
.feature-title {
  font-size: 1.15rem !important;
  font-weight: 600;
  background: linear-gradient(90deg, #0d6efd, #2d98fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

/* Ribbon Elements */
.ribbon-popular {
    width: 120px;
    height: 120px;
    overflow: hidden;
    position: absolute;
}
.ribbon-popular span {
    position: absolute;
    display: block;
    width: 160px;
    padding: 8px 0;
    background-color: #28a745;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
    text-transform: uppercase;
    text-align: center;
    transform: rotate(-45deg);
    left: -40px;
    top: 26px;
}

.ribbon-tab {
    display: inline-block;
    position: relative;
    background-color: #28a745;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    margin-left: 8px;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.ribbon-tab:before {
    content: "";
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    border-right: 4px solid #28a745;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    70% {
        box-shadow: 0 0 0 5px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}


/* old style to support*/
.section-hero {
  display: block;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: linear-gradient(-60deg,transparent,#007bff 34%,#008aff 28%,#0ab9cf 100%,rgba(0,196,204,0)) !important;
  background: linear-gradient(-60deg,transparent,#007bff 34%,#008aff 28%,#0a48b3 100%,rgba(0,196,204,0)) !important;
}

  .section-hero .display-1, .display-2, .display-3 {
      font-family: Inter', Lora, 'Open Sans', sans-serif, Arial, Helvetica;
  }

.section-shaped {
  position: relative;
}
.section-hero .separator {
  display: none !important;
}
.section-hero .separator {
  position: absolute;
  z-index: 1;
  top: auto;
  right: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 150px;
  transform: translateZ(0);
  pointer-events: none;
}

  .section-hero .separator svg {
      position: absolute;
      pointer-events: none;
  }

.section-hero .separator-top {
  top: 0;
  bottom: auto;
}

  .section-hero .separator-top svg {
      top: 0;
  }

.section-hero .separator-bottom {
  top: auto;
  bottom: 0;
}

  .section-hero .separator-bottom svg {
      bottom: 0;
  }

.section-hero .separator-inverse {
  transform: rotate(180deg);
}

.section-hero .separator-skew {
  height: 60px;
}

/* Floating Navigation */
.floating-nav {
  position: fixed;
  right: 15px;
  top: 40%;
  transform: translateY(-50%);
  z-index: 1000;
}

.floating-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-nav li {
  margin: 0;
}

.floating-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  font-size: 18px;
}

.floating-nav-item small {
  font-size: 10px;
  margin-top: 3px;
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.2s ease;
}

.floating-nav-item:hover {
  background: var(--primary-blue);
  color: white;
}

.floating-nav-item:hover small {
  opacity: 1;
  transform: translateY(0);
}

/* Hide text on mobile */
@media (max-width: 768px) {
  .floating-nav-item {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .floating-nav-item small {
    display: none;
  }
}
