/* 
==============================================
   OrynBiz - Premium SaaS Theme
   Based on Bootstrap 5
==============================================
*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

:root {
  /* Brand Colors */
  --primary-color: #000000; /* Deep Blue/Slate */
  --accent-color: #6366f1; /* Indigo/Violet */
  --accent-hover: #4f46e5;
  --secondary-color: #0ea5e9; /* Sky Blue */

  /* Surface Colors */
  --surface-light: #ffffff;
  --surface-off-white: #f8fafc;
  --surface-glass: rgba(255, 255, 255, 0.85);

  /* Text Colors */
  --text-main: #000000;
  --text-muted: #666666;
  --text-light: #f1f5f9;

  /* Spacing & Layout */
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;

  /* Shadows - Soft & Premium */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text-main);
  background-color: var(--surface-light);
  overflow-x: hidden;
  line-height: 1.6;
  padding-top: var(
    --header-height
  ); /* Prevent content from hiding behind fixed header */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Utilities */
.text-primary-brand {
  color: var(--primary-color);
}
.text-accent {
  color: var(--accent-color);
}
.bg-surface-off {
  background-color: var(--surface-off-white);
}
.bg-primary-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  position: relative;
}

.bg-primary-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66-3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-40-39c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm30 38c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM44 4c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-4 43c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm42 36c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm4-59c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM42 80c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm54-28c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM40 61c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM80 10c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM6 46c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM44 26c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}
.fs-7 {
  font-size: 0.875rem;
}
.letter-spacing-1 {
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Premium Buttons */
.btn-primary-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-md);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: white;
  background: linear-gradient(135deg, #1e293b 0%, var(--primary-color) 100%);
}

.btn-outline-premium {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
}

.btn-outline-premium:hover {
  background-color: var(--primary-color);
  color: white;
}

/* 
========================
   HEADER & NAVBAR 
========================
*/
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: var(--header-height);
  padding: 0; /* Align content via flex height */
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  height: 70px; /* Condensed height on scroll */
  box-shadow: var(--shadow-sm);
}

.navbar .container-fluid {
  height: 100%;
}

.navbar-collapse {
  height: 100%;
}

/* Ensure Nav Items span full height for hover bridge */
.navbar-nav {
  height: 100%;
}

.navbar-nav .nav-item {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--text-main);
  font-weight: 500;
  margin: 0 0.5rem;
  position: relative;
  opacity: 0.85;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  opacity: 1;
}

/* Mega Menu Styles */
.has-megamenu {
  position: static; /* Allows full width */
}

.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
  display: none; /* Hidden by default */
  z-index: 1100; /* Ensure it stays above other content */
}

/* Desktop Hover Interaction */
@media (min-width: 992px) {
  /* Show Mega Menu & Standard Dropdowns on Hover */
  .has-megamenu:hover .megamenu,
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInDown 0.2s ease-out forwards;
  }

  /* Specific positioning for standard dropdowns to match mega menu bridge */
  .nav-item.dropdown .dropdown-menu {
    top: 100%;
    margin-top: 0;
    display: none; /* Reset bootstrap default if needed or just rely on hover above */
  }

  .dropdown-toggle::after {
    transition: transform 0.2s;
  }

  .has-megamenu:hover .dropdown-toggle::after,
  .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

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

.dropdown-item {
  transition: all 0.2s ease;
  border-radius: 8px;
}

.dropdown-item:hover {
  background-color: var(--surface-off-white);
  /* Removed transform on container to prevent flickering */
}

/* Animate children instead */
.dropdown-item i,
.dropdown-item div {
  transition: transform 0.2s ease;
}

.dropdown-item:hover i,
.dropdown-item:hover div {
  transform: translateX(5px);
}

.dropdown-item i {
  color: var(--accent-color);
  /* transition handled above */
}

.dropdown-item:hover i {
  color: var(--accent-hover);
}

/* Active State Fix */
.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--surface-off-white) !important;
  color: var(--text-main);
}

.dropdown-item.active .text-dark {
  color: var(--accent-color) !important;
}

.dropdown-item.active i {
  color: var(--accent-color) !important;
}

.dropdown-item.active small {
  color: var(--text-muted) !important;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
  .navbar {
    height: auto;
    padding: 1rem 0;
  }

  .navbar-nav .nav-item {
    height: auto;
    display: block; /* Reset flex for mobile */
  }

  .megamenu {
    position: static;
    width: 100%;
    box-shadow: none !important;
    border: none;
    padding: 0 !important;
  }

  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: 0 0 1rem 1rem;
    box-shadow: var(--shadow-lg);
    max-height: 80vh;
    overflow-y: auto;
    height: auto; /* Reset height */
  }
}

/* Footer Interaction */
.hover-primary:hover {
  color: var(--primary-color) !important;
  text-decoration: underline !important;
}

.hover-accent:hover {
  color: var(--accent-color) !important;
}

/* 
========================
   HELPER CLASSES
========================
*/
.section-padding {
  padding: 5rem 0;
}
.track-wide {
  letter-spacing: 0.05em;
}
.tracking-tight {
  letter-spacing: -0.03em;
}
.mw-700 {
  max-width: 700px;
}
.opacity-10 {
  opacity: 0.1;
}
.xx-small {
  font-size: 0.65rem;
}

.text-transparent {
  color: transparent;
}
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}
.bg-gradient-primary {
  background-image: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
}

/* Color Helpers for Icons */
.bg-blue-light {
  background-color: #e0f2fe;
  color: #0284c7;
}
.bg-purple-light {
  background-color: #f3e8ff;
  color: #9333ea;
}
.bg-teal-light {
  background-color: #ccfbf1;
  color: #0d9488;
}
.bg-orange-light {
  background-color: #ffedd5;
  color: #ea580c;
}
.bg-pink-light {
  background-color: #fce7f3;
  color: #db2777;
}
.bg-cyan-light {
  background-color: #cffafe;
  color: #0891b2;
}

.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.icon-box-sm {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 
========================
   SECTIONS
========================
*/

/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
}

/* Trusted By */
.grayscale-wrapper {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
}

.grayscale-wrapper:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Industry Cards */
.industry-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(99, 102, 241, 0.2); /* Accent color border on hover */
}

.hover-reveal {
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.industry-card:hover .hover-reveal {
  opacity: 1 !important;
  transform: translateY(0);
}

/* Product Cards */
.product-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg) !important;
}

/* Backdrop Blur Utility */
.backdrop-blur {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Sector Cards */
.sector-card {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.sector-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md) !important;
  background-color: var(--surface-off-white);
}

.sector-card .card-title {
  transition: color 0.3s;
}

.sector-card:hover .card-title {
  color: var(--accent-color);
}

/* 
========================
   INNER PAGES COMMON
========================
*/

.page-hero {
  padding: 8rem 0 5rem;
  background: var(--surface-off-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Breadcrumb Banner - 100% Full Width Gradient */
.breadcrumb-banner {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  padding: 4rem 0;
  color: white;
  margin-top: 0;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.breadcrumb-banner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66-3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-40-39c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm30 38c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM44 4c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-4 43c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm42 36c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm4-59c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM42 80c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm54-28c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM40 61c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM80 10c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM6 46c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM44 26c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.breadcrumb-banner h1 {
  color: white;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.breadcrumb-banner .breadcrumb {
  margin-bottom: 0;
  background: transparent;
  padding: 0;
}

.breadcrumb-banner .breadcrumb-item,
.breadcrumb-banner .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1rem;
  font-weight: 500;
}

.breadcrumb-banner .breadcrumb-item.active {
  color: white !important;
  font-weight: 600;
}

.breadcrumb-banner .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
  content: var(--bs-breadcrumb-divider, "/");
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  opacity: 0.05;
  filter: blur(50px);
  transform: translate(30%, -30%);
}

.breadcrumb-item a {
  color: var(--text-muted);
  font-weight: 500;
}

.breadcrumb-item.active {
  color: var(--accent-color);
  font-weight: 600;
}

.inner-section {
  padding: 4rem 0;
}

.card-feature {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--surface-off-white);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.25rem;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--accent-color);
  border: 3px solid var(--surface-light);
  box-shadow: 0 0 0 4px var(--surface-off-white);
}

.leadership-box {
  background: var(--surface-off-white);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  border: 1px dashed rgba(0, 0, 0, 0.1);
}

/* Hero Image Collage Pattern */
.hero-image-collage {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.collage-wrapper {
  flex: 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.transform-hover {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.transform-hover:hover {
  transform: translateY(-15px) scale(1.03);
  z-index: 10;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Responsive adjustments for collage */
@media (max-width: 767.98px) {
  .hero-image-collage {
    gap: 1rem !important;
  }
  .collage-wrapper.mt-lg-5 {
    margin-top: 1.5rem !important;
  }
}

/* 
========================
   SOCIAL MEDIA ICONS
========================
*/

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-off-white);
  color: var(--text-muted);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.social-icons a:hover {
  transform: translateY(-3px);
  color: white !important;
  border-color: transparent;
}

/* Brand Colors on Hover */
.social-icons .si-linkedin:hover {
  background-color: #0077b5;
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.social-icons .si-facebook:hover {
  background-color: #1877f2;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.social-icons .si-x:hover {
  background-color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icons .si-instagram:hover {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  box-shadow: 0 4px 12px rgba(214, 36, 159, 0.3);
}

.social-icons .si-threads:hover {
  background-color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icons .si-youtube:hover {
  background-color: #ff0000;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

/* Careers Accordion Customization */
.accordion-item {
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: var(--surface-off-white);
  color: var(--accent-color);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.1);
  border-color: var(--accent-color);
}

.accordion-button::after {
  background-size: 1rem;
}

/* 
========================
   ANIMATION UTILITIES
========================
*/

/* Animate.css custom duration variables */
:root {
  --animate-duration: 1s;
  --animate-delay: 0s;
}

/* Initial state for scroll-triggered animations */
[data-animate] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Ensure elements are visible after animation */
.animate__animated {
  animation-fill-mode: both;
}

/* Faster animation speed */
.animate__faster {
  --animate-duration: 0.5s;
}

/* Slower animation speed */
.animate__slower {
  --animate-duration: 1.5s;
}

/* Stagger group initial state */
[data-stagger] > * {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover animation helpers */
[data-hover] {
  cursor: pointer;
}

/* Reduced motion support - respect user preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate],
  [data-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Revolutionary Hero Banner Slider */
.hero-slider .carousel-inner {
  height: 100vh;
}

.hero-slider .carousel-item {
  height: 100%;
}

.hero-revolution {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}

/* Banner Color Variations */
.hero-revolution.banner-primary {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.hero-revolution.banner-oms {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.hero-revolution.banner-erp {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

/* Decorative Background Elements */
.decorative-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, #cbd5e1 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.4;
  animation: float 6s ease-in-out infinite;
}

.decorative-dots-1 {
  top: 10%;
  left: 5%;
}

.decorative-dots-2 {
  bottom: 15%;
  right: 8%;
  animation-delay: 2s;
}

.decorative-shape {
  position: absolute;
  opacity: 0.6;
  animation: rotate-slow 20s linear infinite;
}

.decorative-shape-square {
  width: 60px;
  height: 60px;
  background: #ef4444;
  top: 8%;
  right: 45%;
  border-radius: 8px;
}

.decorative-shape-circle {
  width: 80px;
  height: 80px;
  background: #3b82f6;
  top: 12%;
  right: 42%;
  border-radius: 50%;
}

.decorative-waves {
  position: absolute;
  top: 5%;
  right: 10%;
  width: 100px;
  height: 40px;
  opacity: 0.5;
}

.decorative-waves svg {
  width: 100%;
  height: 100%;
}

.decorative-diagonal-lines {
  position: absolute;
  width: 200px;
  height: 200px;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    #fbbf24 10px,
    #fbbf24 15px
  );
  opacity: 0.3;
  top: 25%;
  right: 35%;
  border-radius: 20px;
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s;
}

/* Content Styles */
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero-tagline i {
  color: #fbbf24;
  font-size: 1.1rem;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-headline .highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-headline .highlight-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-headline .highlight-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #10b981;
  font-weight: 500;
  margin-top: 1.5rem;
}

.hero-cta {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 16px 40px;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.hero-cta.cta-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.hero-cta.cta-gold:hover {
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.hero-cta.cta-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.hero-cta.cta-blue:hover {
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

/* Feature List */
.hero-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #475569;
}

.hero-features li i {
  color: #10b981;
  font-size: 1.25rem;
}

/* Stats Card */
.stats-card-float {
  background: white;
  border-radius: 20px;
  padding: 24px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: 5%;
  left: -10%;
  transform: translateX(-50%);
  z-index: 10;
  min-width: 220px;
  transition: all 0.3s ease;
}

.stats-card-float:hover {
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.stats-avatars {
  display: flex;
  margin-bottom: 12px;
}

.stats-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

.stats-avatar:first-child {
  margin-left: 0;
}

.stats-avatar.avatar-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.stats-avatar.avatar-2 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.stats-avatar.avatar-3 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.stats-avatar.avatar-4 {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
.stats-avatar.avatar-plus {
  background: #fbbf24;
  font-size: 1.2rem;
}

.stats-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 4px;
}

.stats-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

/* Hero Image Container */
.hero-image-container {
  position: relative;
  z-index: 5;
}

.hero-image-container img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Carousel Control Customization */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
  opacity: 1;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.2);
}

.hero-slider .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
  background-color: var(--accent-color);
  opacity: 0.3;
}

.hero-slider .carousel-indicators .active {
  opacity: 1;
  width: 30px;
  border-radius: 10px;
}

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

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

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.3);
  }
}

.stats-card-float {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-slider .carousel-inner {
    height: auto;
  }
  .hero-revolution {
    min-height: auto;
    padding: 60px 0 40px;
  }
  .hero-headline {
    font-size: 2.5rem;
  }
  .stats-card-float {
    position: relative;
    left: 0;
    transform: none;
    margin-top: 30px;
  }
  .stats-card-float:hover {
    transform: translateY(-5px);
  }
  .decorative-diagonal-lines {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 767px) {
  .hero-headline {
    font-size: 2rem;
  }
  .hero-cta {
    padding: 14px 32px;
    font-size: 1rem;
  }
  .decorative-dots,
  .decorative-shape,
  .decorative-diagonal-lines {
    display: none;
  }
  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next {
    display: none;
  }
}

/* Smooth scroll behavior */
\n html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Premium Testimonial Slider Styles */
.testimonial-premium {
  padding: 100px 0;
  background: radial-gradient(circle at top right, #f8fafc 0%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
}

.testimonial-header-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  color: #38bdf8;
  font-size: 1.5rem;
}

.testimonial-slider {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 30px;
  padding: 60px 40px 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
  margin: 40px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-author-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
  background: #f1f5f9;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: #1e293b;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author-info h6 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.testimonial-author-info p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Hexagonal Controls */
.hex-control {
  width: 60px;
  height: 60px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
  color: #64748b;
  position: absolute;
  top: 50%;
  left: auto; /* Reset any inheritance */
  right: auto;
  transform: translateY(-50%) translateZ(0); /* Better rendering stability */
  z-index: 20;
  cursor: pointer;
  backface-visibility: hidden;
}

.hex-control:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-50%) scale(1.1) translateZ(0);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hex-control.prev {
  left: -80px;
}

.hex-control.next {
  right: -80px;
}

/* Floating Avatars */
.floating-avatar {
  position: absolute;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: all 0.5s ease;
  z-index: 1;
  animation: float-slow 6s ease-in-out infinite;
}

.floating-avatar:hover {
  transform: scale(1.1);
  z-index: 15;
}

.avatar-pos-1 {
  width: 70px;
  height: 70px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.avatar-pos-2 {
  width: 50px;
  height: 50px;
  bottom: 30%;
  left: 5%;
  animation-delay: 1s;
}
.avatar-pos-3 {
  width: 80px;
  height: 80px;
  top: 15%;
  right: 12%;
  animation-delay: 2s;
}
.avatar-pos-4 {
  width: 60px;
  height: 60px;
  bottom: 25%;
  right: 8%;
  animation-delay: 1.5s;
}
.avatar-pos-5 {
  width: 55px;
  height: 55px;
  top: 50%;
  left: 18%;
  animation-delay: 2.5s;
}

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

/* Custom Dots Styling */
.testimonial-premium .carousel-indicators {
  bottom: -60px;
}

.testimonial-premium .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  margin: 0 6px;
  border: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonial-premium .carousel-indicators .active {
  background-color: var(--accent-color);
  transform: scale(1.4);
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
  .hex-control.prev {
    left: -30px;
  }
  .hex-control.next {
    right: -30px;
  }
}

@media (max-width: 768px) {
  .testimonial-premium {
    padding: 60px 0;
  }
  .testimonial-card {
    padding: 50px 25px 30px;
  }
  .testimonial-quote {
    font-size: 1.25rem;
  }
  .hex-control {
    display: none;
  }
  .floating-avatar {
    display: none;
  }
}

/* Premium Blog Section Styles */
.blog-premium {
  padding: 100px 0;
  background-color: #fcfdfe;
  position: relative;
  overflow: hidden;
}

.blog-icon-hex {
  width: 60px;
  height: 60px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  font-size: 1.5rem;
  border: 1px solid rgba(56, 189, 248, 0.1);
}

.blog-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.02);
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(56, 189, 248, 0.1);
}

.blog-date {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: lowercase;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: var(--primary-color);
}

.blog-excerpt {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-tag-pill {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-color);
  padding: 6px 14px;
  border: 1.5px solid rgba(99, 102, 241, 0.2);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.blog-tag-pill:hover {
  background-color: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.blog-btn-all {
  background-color: #eef2ff;
  color: #4338ca;
  font-weight: 700;
  padding: 12px 35px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  text-decoration: none;
}

.blog-btn-all:hover {
  background-color: #4338ca;
  color: white;
  transform: scale(1.05);
}

.blog-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 35c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM54 80c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM66 15c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM78 51c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM92 71c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM68 85c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM40 56c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM88 45c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM31 11c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm54 61c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM23 71c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm50-47c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm18 40c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM42 13c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm27 52c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM40 88c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm20-33c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM0 59c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 11c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-7-46c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM14 29c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm70-16c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 0c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM8 44c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM28 2c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm67 30c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM48 7c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM25 94c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM44 94c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM66 40c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM90 0c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM70 24c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM40 2c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM76 96c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM7 24c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM100 28c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM68 6c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM15 8c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM96 22c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM24 15c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM0 31c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm15 69c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm90-52c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-9-20c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm57 43c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM9 54c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm40 40c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM15 99c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm98-26c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-82-2c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-12-39c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm96 32c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-16-66c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-30 34c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-20-64c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm25 0c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM14 8c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM0 99c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm99-31c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM99 10c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM1 0c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm96 82c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-30-66c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-30-34c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-20 64c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm25 0c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM14 8c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM0 99c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm99-31c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM99 10c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM1 0c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm96 82c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-30-66c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-30-34c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-20 64c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm25 0c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM14 8c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM0 99c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm99-31c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM99 10c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM1 0c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm96 82c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-30-66c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-30-34c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-20 64c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm25 0c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM14 8c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM0 99c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm99-31c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM99 10c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM1 0c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z"/></svg>');
  opacity: 0.1;
  z-index: 1;
}

.blog-premium::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle at center,
    rgba(56, 189, 248, 0.05) 0%,
    transparent 70%
  );
  z-index: 1;
}

@media (max-width: 768px) {
  .blog-premium {
    padding: 60px 0;
  }
  .blog-card {
    padding: 25px;
  }
  .blog-title {
    font-size: 1.15rem;
  }
}

/* Premium Arched Footer Styles */
.footer-premium {
  position: relative;
  background: linear-gradient(135deg, #1e40af 0%, #0891b2 50%, #06b6d4 100%);
  color: white;
  padding: 100px 0 40px;
  margin-top: 100px;
  overflow: visible;
}

/* The Arch - using a pseudo element for better control */
.footer-premium::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 160px;
  background: inherit;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 10;
}

.footer-hex-header {
  margin-top: -140px; /* Pull up to sit on the arch */
  margin-bottom: 40px;
}

.footer-contact-item {
  text-align: center;
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}

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

.footer-contact-icon {
  font-size: 1.5rem;
  color: #38bdf8;
  margin-bottom: 15px;
  display: block;
}

.footer-contact-value {
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

.footer-contact-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav-horizontal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

.footer-nav-horizontal a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-nav-horizontal a:hover {
  color: #38bdf8;
}

.footer-bottom-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

.footer-lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.4);
  width: 100%;
  text-align: center;
  margin-top: 30px;
  font-size: 0.8rem;
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-top: 20px;
  opacity: 0.8;
}

@media (max-width: 991px) {
  .footer-nav-horizontal {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .footer-premium {
    padding: 80px 0 30px;
  }
  .footer-premium::before {
    top: -40px;
    height: 80px;
  }
  .footer-hex-header {
    margin-top: -80px;
  }
  .footer-nav-horizontal {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .footer-bottom-row {
    flex-direction: column;
  }
}

/* 
========================
   NEW FOOTER DESIGN
========================
*/
.footer-new-design {
  overflow: hidden;
  color: #ffffff;
  position: relative;
}

.footer-new-design .container {
  position: relative;
  z-index: 2;
}

.newsletter-form-container {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.newsletter-input {
  background: transparent !important;
  border: none !important;
  color: white !important;
  padding: 10px 25px !important;
  box-shadow: none !important;
  flex-grow: 1;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.btn-subscribe {
  background: #ff5722; /* Designing punchy orange like the mockup */
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-subscribe:hover {
  background: #f4511e;
  transform: scale(1.05);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  transition: all 0.2s ease;
}

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

.footer-bottom-new {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-new {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon-new:hover {
  color: white;
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}

.social-icon-new.si-fb:hover {
  background-color: #1877f2;
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}
.social-icon-new.si-insta:hover {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  box-shadow: 0 5px 15px rgba(214, 36, 159, 0.3);
}
.social-icon-new.si-x:hover {
  background-color: #000000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.social-icon-new.si-linkedin:hover {
  background-color: #0077b5;
  box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}
.social-icon-new.si-yt:hover {
  background-color: #ff0000;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}
.social-icon-new.si-threads:hover {
  background-color: #000000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.social-icon-new.si-wa:hover {
  background-color: #25d366;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}
.social-icon-new.si-tg:hover {
  background-color: #0088cc;
  box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

/* Region Modal Styling */
.region-modal .modal-content {
  background-color: #e5e7eb !important; /* Slightly grayer background like image */
}

.country-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.country-list a {
  color: #000;
  font-size: 1rem;
  transition: all 0.2s ease;
  padding: 4px 0;
  display: inline-block;
  width: fit-content;
}

.country-list a:hover {
  color: var(--accent-color);
  text-decoration: underline !important;
}

.country-list a.active {
  color: var(--accent-color);
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .newsletter-form-container {
    border-radius: 12px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
  }
  .btn-subscribe {
    width: 100%;
    margin-top: 10px;
    border-radius: 8px;
  }
}

/* Selector buttons styling */
.btn-selector {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  font-size: 0.9rem !important;
  transition: all 0.3s ease !important;
}

.btn-selector:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  opacity: 1 !important;
}

.footer-currency-dropdown {
  max-height: 300px;
  overflow-y: auto;
  min-width: 150px;
}

.footer-currency-dropdown::-webkit-scrollbar {
  width: 6px;
}

.footer-currency-dropdown::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

/* Horizontal spacing for the 3-column layout */
.footer-bottom-new {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991.98px) {
  .footer-bottom-new .col-lg-4 {
    text-align: center !important;
  }
  .footer-bottom-new .d-flex {
    justify-content: center !important;
  }
}

/* Override Bootstrap Dark Dropdown for light theme */
.dropdown-menu-dark {
  background-color: #e5e7eb !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.dropdown-menu-dark .dropdown-item {
  color: #000 !important;
}

.dropdown-menu-dark .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

@media (min-width: 1200px) {
  .display-5 {
    font-size: 2.5rem;
  }
}

.rotating-text-container {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
}

.word-rotate {
  position: absolute; /* Stack words on top of each other */
  top: 0;
  left: 0;
  opacity: 0; /* Hide all words initially */
  animation: rotateWords 9s linear infinite; /* 3 words * 3s per word = 9s total */
}

/* Set different animation delays for each word */
.word-rotate:nth-child(2) {
  animation-delay: 3s;
}

.word-rotate:nth-child(3) {
  animation-delay: 6s;
}

@keyframes rotateWords {
  0% {
    opacity: 0;
    transform: translateY(-20px); /* Optional: add a slight vertical movement */
  }
  5% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 1; /* Word stays visible for a period */
  }
  35% {
    opacity: 0;
    transform: translateY(20px); /* Optional: move down before disappearing */
  }
  100% {
    opacity: 0;
  }
}

/* Typewriter Container */
.sliding-words {
  display: inline-block;
  min-width: 14em;
  vertical-align: bottom;
  text-align: left;
}

/* Typewriter Cursor Effect */
.txt-type {
  border-right: 0.1em solid var(--accent-color);
  padding-right: 2px;
  animation: blink-cursor 0.7s step-end infinite;
  color: var(--primary-color);
}

@keyframes blink-cursor {
  0%,
  100% {
    border-color: transparent;
  }
  50% {
    border-color: var(--accent-color);
  }
}
/* Key Benefits Section */
.bg-surface-secondary {
  background-color: #f8fafc;
}

.shadow-hover {
  transition: all 0.3s ease;
}

.shadow-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Custom Tab Styles */
.nav-link.active {
  border-bottom-color: var(--accent-color) !important;
  color: var(--primary-color) !important;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Tab Slide Up Animation */
.tab-slide-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}

.tab-slide-up.show.active {
  opacity: 1;
  transform: translateY(0);
}

.object-fit-cover {
  object-fit: cover;
}

.border-width-1 {
  border: 1px #dadada solid;
}

/* Custom Pagination */
.custom-pagination .page-link {
  color: var(--text-muted);
  border: 1px solid #e5e7eb;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  transition: all 0.2s ease;
  background-color: transparent;
}

.custom-pagination .page-link:hover {
  background-color: var(--surface-off-white);
  color: var(--primary-color);
  z-index: 2;
  border-color: #d1d5db;
}

.custom-pagination .page-item.active .page-link {
  background-color: var(--surface-off-white);
  border-color: #e5e7eb;
  color: var(--primary-color);
  font-weight: 700;
  z-index: 3;
}

.custom-pagination .page-item:first-child .page-link {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.custom-pagination .page-item:last-child .page-link {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.custom-pagination .page-link:focus {
  box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.1);
}

/* Blog Inner Page Styles */
.blog-info-bar {
  background: var(--surface-off-white);
  border-radius: 12px;
  padding: 15px 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  border: 1px solid #eee;
}

.blog-info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text-muted);
  padding: 5px;
  border-right: 1px solid #e2e8f0;
}

.blog-info-item:last-child {
  border-right: none;
}

.blog-info-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.category-link {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}

.category-link:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.blog-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 25px;
}

.social-share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-share-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: var(--text-muted);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-share-link:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.sidebar-widget {
  background: white;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 30px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
}

.popular-blog-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  text-decoration: none;
}

.popular-blog-item:last-child {
  margin-bottom: 0;
}

.popular-blog-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.popular-blog-content h6 {
  font-size: 0.95rem;
  margin-bottom: 5px;
  line-height: 1.4;
  color: var(--primary-color);
  transition: color 0.2s;
}

.popular-blog-item:hover h6 {
  color: var(--accent-color);
}

/* Premium Card Hover Effect */
.card-hover-premium {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-hover-premium:hover .date-badge {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
.form-control {
  resize: none;
}

small {
  font-size: 1rem !important;
}
