/* Custom Styles for Adnan Worldwide Migration */

/* Custom Colors */
:root {
  --primary-color: #0b0361;
  --primary-dark: #080248;
  --primary-light: #1a1380;
  --secondary-color: #948bb7;
  --secondary-dark: #7a7299;
  --secondary-light: #aea6c9;
  --tertiary-color: #f7f7f7;
  --accent-color: #ff6b6b;
  --accent-dark: #ff4f4f;
  --gradient-primary: linear-gradient(135deg, #0b0361 0%, #1a1380 100%);
  --gradient-secondary: linear-gradient(135deg, #948bb7 0%, #b8afd9 100%);
}

/* Update the indigo-800 color used in badges to ensure better contrast with light backgrounds */
.inline-block.px-4.py-1.bg-\[\#f7f7f7\].text-indigo-800 {
  color: #0b0361;
  font-weight: 600;
}

/* Base Styles */
body {
  font-family: "Poppins", sans-serif;
}

/* Global Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

/* Animation for pulse effect */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
  }
}

.pulse-icon {
  animation: pulse 2s infinite;
}

/* Creative Section Backgrounds */
.bg-pattern-dots {
  background-image: radial-gradient(var(--secondary-color) 1px, transparent 1px);
  background-size: 20px 20px;
}

.bg-pattern-lines {
  background: repeating-linear-gradient(
    45deg,
    rgba(148, 139, 183, 0.05),
    rgba(148, 139, 183, 0.05) 10px,
    rgba(148, 139, 183, 0.08) 10px,
    rgba(148, 139, 183, 0.08) 20px
  );
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

/* Creative Card Styles */
.card-hover-effect {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover-effect:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-hover-rotate:hover {
  transform: rotate(2deg);
}

.card-hover-glow:hover {
  box-shadow: 0 0 20px rgba(47, 49, 145, 0.4);
}

/* Creative Button Styles */
.btn-primary {
  background: var(--gradient-primary);
  color: var(--tertiary-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(47, 49, 145, 0.3);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.5s, opacity 0.3s;
}

.btn-primary:active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: 0s;
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--tertiary-color);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
}

/* Creative Text Effects */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.text-glow {
  text-shadow: 0 0 10px rgba(47, 49, 145, 0.5);
}

/* Creative Dividers */
.divider-wave {
  position: relative;
  height: 70px;
  overflow: hidden;
}

.divider-wave::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background-size: 20px 40px;
  background-image: radial-gradient(circle at 10px -15px, transparent 20px, white 21px);
}

.divider-diagonal {
  position: relative;
  height: 50px;
}

.divider-diagonal::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(135deg, transparent 49.9%, white 50%);
}

/* Creative Image Effects */
.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom img {
  transition: transform 0.5s ease;
}

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

.img-hover-rotate img {
  transition: transform 0.5s ease;
}

.img-hover-rotate:hover img {
  transform: rotate(5deg) scale(1.05);
}

.img-frame {
  position: relative;
  padding: 10px;
}

.img-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--secondary-color);
  transform: translate(10px, 10px);
  z-index: -1;
  transition: transform 0.3s ease;
}

.img-frame:hover::before {
  transform: translate(5px, 5px);
}

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

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

.animate-pulse {
  animation: pulse 2s infinite;
}

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

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

/* Creative Navigation */
.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

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

.nav-active {
  color: var(--primary-color);
  font-weight: 600;
}

.nav-active::after {
  width: 100%;
}

/* Creative Form Styles */
input:focus,
textarea:focus,
select:focus {
  border-color: #0b0361;
  box-shadow: 0 0 0 3px rgba(11, 3, 97, 0.2);
  outline: none;
}

/* Ensure better contrast for form focus states */

.form-floating-label {
  position: relative;
}

.form-floating-label input,
.form-floating-label textarea {
  height: 60px;
  padding: 20px 16px 0;
}

.form-floating-label label {
  position: absolute;
  top: 20px;
  left: 16px;
  pointer-events: none;
  transition: all 0.2s ease;
}

.form-floating-label input:focus ~ label,
.form-floating-label input:not(:placeholder-shown) ~ label,
.form-floating-label textarea:focus ~ label,
.form-floating-label textarea:not(:placeholder-shown) ~ label {
  top: 8px;
  font-size: 12px;
  color: var(--primary-color);
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  min-height: 80vh;
}

/* Creative Testimonial Styles */
.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 60px;
  color: rgba(79, 70, 229, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

/* Service Card Hover Effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

/* Creative FAQ Accordion */
.faq-toggle {
  position: relative;
  overflow: hidden;
}

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

.faq-toggle.active i {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-content.active {
  max-height: 500px;
}

/* Override for hidden class when active */
.faq-content:not(.hidden) {
  display: block;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

/* Creative Stats Counter */
.stat-counter {
  position: relative;
  display: inline-block;
}

.stat-counter::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
}

/* Creative List Styles */
.list-check li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Creative Hover Effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hover-expand {
  transition: transform 0.3s ease;
}

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

.hover-border {
  position: relative;
}

.hover-border::after,
.nav-link:hover::after,
.nav-link::after {
  background-color: #0b0361;
}

/* Improve contrast for hover states */

.hover-border:hover::after {
  width: 100%;
}

/* Creative Background Patterns */
.bg-dots {
  background-image: radial-gradient(var(--secondary-color) 1px, transparent 1px);
  background-size: 20px 20px;
}

.bg-lines {
  background: repeating-linear-gradient(
    45deg,
    rgba(148, 139, 183, 0.05),
    rgba(148, 139, 183, 0.05) 10px,
    rgba(148, 139, 183, 0.08) 10px,
    rgba(148, 139, 183, 0.08) 20px
  );
}

.bg-grid {
  background-size: 20px 20px;
  background-image: linear-gradient(to right, rgba(148, 139, 183, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148, 139, 183, 0.05) 1px, transparent 1px);
}

/* Creative Shadows */
.shadow-soft {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.shadow-hard {
  box-shadow: 5px 5px 0 rgba(47, 49, 145, 0.2);
}

.shadow-inset {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Creative Borders */
.border-gradient {
  border: 4px solid;
  border-image: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) 1;
}

.border-dashed {
  border: 2px dashed var(--secondary-color);
}

.border-double {
  border: 4px double var(--primary-color);
}

/* Creative Overlays */
.overlay-gradient {
  position: relative;
}

.overlay-gradient::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(47, 49, 145, 0.7) 0%, rgba(148, 139, 183, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay-gradient:hover::after {
  opacity: 1;
}

/* Creative Text Styles */
.text-outline {
  -webkit-text-stroke: 1px var(--primary-color);
  color: transparent;
}

.text-clip-path {
  background: url("path/to/texture.jpg");
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Creative Buttons */
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.btn-outline:hover {
  color: white;
}

.btn-outline:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Creative Scroll Indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s ease;
}

/* Creative Loading Animation */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(148, 139, 183, 0.3);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Creative Cursor */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(47, 49, 145, 0.5);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
}

.custom-cursor.active {
  width: 40px;
  height: 40px;
  background: rgba(47, 49, 145, 0.3);
}

/* Creative Tooltip */
.tooltip {
  position: relative;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #0b0361;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* Fix contrast for tooltip text */

.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Creative Badge */
.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  background: #0b0361;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Ensure proper contrast for badges and pills */

.badge::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  animation: badge-shine 3s infinite;
}

@keyframes badge-shine {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

/* Creative Progress Bar */
.progress-bar {
  height: 6px;
  background: #f1f1f1;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: #0b0361;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

/* Ensure proper contrast for progress bars */

.progress-bar-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Creative Pricing Table */
.pricing-table {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-table::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  background: #0b0361;
  transform: rotate(45deg) translateY(-70px);
  z-index: 1;
  transition: all 0.3s ease;
}

/* Fix contrast for pricing tables */

.pricing-table:hover::before {
  transform: rotate(45deg) translateY(-60px);
}

.pricing-table.featured {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Creative Tabs */
.tabs {
  display: flex;
  border-bottom: 1px solid #eee;
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
}

.tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0b0361;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

/* Ensure proper contrast for tabs */

.tab.active::after,
.tab:hover::after {
  transform: scaleX(1);
}

.tab-content {
  display: none;
  padding: 20px 0;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* Creative Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #0b0361;
  transform: scale(1.3);
}

/* Fix contrast for carousel dots */

/* Creative Notification */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  background: white;
  border-left: 4px solid #0b0361;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transform: translateX(120%);
  transition: transform 0.3s ease;
  z-index: 9999;
}

/* Ensure proper contrast for notifications */

.notification.show {
  transform: translateX(0);
}

.notification.success {
  border-left-color: #4caf50;
}

.notification.error {
  border-left-color: #f44336;
}

.notification.warning {
  border-left-color: #ffc107;
}

/* Creative Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 8px 20px;
  display: block;
  color: #333;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: #f9f9f9;
  color: #0b0361;
  padding-left: 25px;
}

/* Fix contrast for dropdown items */

/* Creative Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  color: #ccc;
}

.breadcrumb-item a {
  color: #666;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-color);
}

.breadcrumb-item.active {
  color: var(--primary-color);
  font-weight: 500;
}

/* Fix contrast for breadcrumbs */
.breadcrumb-item.active,
.breadcrumb-item a:hover {
  color: #0b0361;
}

/* Creative Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  border-radius: 50%;
  background: white;
  color: #333;
  transition: all 0.3s ease;
}

.pagination-item:hover,
.pagination-item.active {
  background: #0b0361;
  color: white;
  transform: scale(1.1);
}

/* Fix contrast for pagination */

.pagination-prev,
.pagination-next {
  width: auto;
  padding: 0 15px;
  border-radius: 20px;
}

/* Back to Top Button */
#back-to-top,
.back-to-top {
  display: none !important;
}

/* Creative Social Icons */
.social-icons {
  display: flex;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  color: #666;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b0361;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

/* Ensure proper contrast for social icons */

.social-icon:hover {
  color: white;
}

.social-icon:hover::before {
  transform: translateY(0);
}

/* Creative Search Bar */
.search-bar {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border: 1px solid #eee;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(47, 49, 145, 0.1);
}

.search-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #999;
  transition: color 0.3s ease;
}

.search-input:focus + .search-icon {
  color: #0b0361;
}

/* Fix contrast for search icon */

/* Creative Tags */
.tag {
  display: inline-block;
  padding: 5px 10px;
  background: #f5f5f5;
  border-radius: 15px;
  margin: 0 5px 5px 0;
  font-size: 12px;
  color: #666;
  transition: all 0.3s ease;
}

.tag:hover {
  background: #0b0361;
  color: white;
  transform: translateY(-2px);
}

/* Ensure proper contrast for tags */

/* Creative Rating Stars */
.rating {
  display: flex;
  align-items: center;
}

.rating-star {
  color: #ddd;
  font-size: 20px;
  margin-right: 2px;
  transition: all 0.2s ease;
}

.rating-star.filled {
  color: #ffd700;
}

.rating:hover .rating-star {
  color: #ffd700;
}

.rating .rating-star:hover ~ .rating-star {
  color: #ddd;
}

/* Creative File Upload */
.file-upload {
}

.rating:hover .rating-star {
  color: #ffd700;
}

.rating .rating-star:hover ~ .rating-star {
  color: #ddd;
}

/* Creative File Upload */
.file-upload {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.file-upload-label {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload-label:hover {
  background: var(--primary-dark);
}

.file-upload input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-name {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

/* Creative Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

/* Creative Checkbox */
.custom-checkbox {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.custom-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--primary-color);
}

/* Ensure proper contrast for custom checkboxes and radio buttons */

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Creative Radio Button */
.custom-radio {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  user-select: none;
}

.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.radio-mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.custom-radio:hover input ~ .radio-mark {
  background-color: #ccc;
}

.custom-radio input:checked ~ .radio-mark {
  background-color: var(--primary-color);
}

/* Ensure proper contrast for custom checkboxes and radio buttons */
.radio-mark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-radio input:checked ~ .radio-mark:after {
  display: block;
}

.custom-radio .radio-mark:after {
  top: 9px;
  left: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
}

/* Creative Range Slider */
.range-slider {
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #eee;
  outline: none;
  -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Ensure proper contrast for range sliders */

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

/* Ensure proper contrast for range sliders */
.range-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

/* Creative Select */
.custom-select {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-select select {
  display: none;
}

.select-selected {
  background-color: white;
  border: 1px solid #eee;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}

.select-selected.select-arrow-active:after {
  transform: translateY(-50%) rotate(-135deg);
}

.select-items {
  position: absolute;
  background-color: white;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border: 1px solid #eee;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.select-items div {
  padding: 10px 15px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.select-items div:hover {
  background-color: #f9f9f9;
  color: var(--primary-color);
}

/* Fix contrast for select items */

.select-hide {
  display: none;
}

.same-as-selected {
  background-color: #f9f9f9;
  color: var(--primary-color);
}

/* Fix contrast for select items */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltip-text {
  visibility: hidden;
  width: 120px;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  border-radius: 4px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--primary-color) transparent transparent transparent;
}

/* Ensure proper contrast for tooltips */

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Creative Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: modal-open 0.3s ease;
}

@keyframes modal-open {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
  color: black;
  text-decoration: none;
}

.modal-header {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.modal-body {
  padding: 20px 0;
}

.modal-footer {
  padding: 10px 0;
  border-top: 1px solid #eee;
  text-align: right;
}

/* Creative Accordion */
.accordion {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #eee;
}

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

.accordion-header {
  padding: 15px;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: #f9f9f9;
}

.accordion-header.active {
  background-color: #f9f9f9;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content-inner {
  padding: 15px;
  border-top: 1px solid #eee;
}

/* Creative Card Flip */
.card-flip {
  perspective: 1000px;
  height: 300px;
}

.card-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.card-flip:hover .card-flip-inner {
  transform: rotateY(180deg);
}

.card-flip-front,
.card-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
}

.card-flip-front {
  background-color: white;
  color: #333;
}

.card-flip-back {
  background-color: var(--primary-color);
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Creative Parallax */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Creative Typing Effect */
.typing-effect {
  overflow: hidden;
  border-right: 2px solid var(--primary-color);
  white-space: nowrap;
  margin: 0 auto;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: var(--primary-color);
  }
}

/* Creative Scroll Snap */
.scroll-snap-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.scroll-snap-section {
  height: 100vh;
  scroll-snap-align: start;
}

/* Creative Masonry Grid */
.masonry-grid {
  column-count: 3;
  column-gap: 20px;
}

.masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .masonry-grid {
    column-count: 1;
  }
}

/* Creative Image Comparison Slider */
.image-comparison {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.image-comparison img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-comparison .before {
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.image-comparison .slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: white;
  transform: translateX(-50%);
  cursor: ew-resize;
}

.image-comparison .slider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Creative Text Reveal */
.text-reveal {
  position: relative;
  display: inline-block;
}

.text-reveal::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transform-origin: left;
  animation: text-reveal 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes text-reveal {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

/* Creative Image Hover Effects */
.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom img {
  transition: transform 0.5s ease;
}

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

.img-hover-color {
  overflow: hidden;
}

.img-hover-color img {
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.img-hover-color:hover img {
  filter: grayscale(0%);
}

.img-hover-blur {
  overflow: hidden;
}

.img-hover-blur img {
  filter: blur(0);
  transition: filter 0.5s ease;
}

.img-hover-blur:hover img {
  filter: blur(2px);
}

/* Creative Text Effects */
.text-shadow-pop {
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: text-shadow 0.3s ease;
}

.text-shadow-pop:hover {
  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa;
}

.text-gradient {
  background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.text-stroke {
  -webkit-text-stroke: 1px var(--primary-color);
  color: transparent;
}

/* Creative Button Effects */
.btn-pulse {
  position: relative;
}

.btn-pulse::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  animation: pulse 2s infinite;
  z-index: -1;
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  animation: btn-shine 3s infinite;
}

@keyframes btn-shine {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

.btn-float {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Creative Border Effects */
.border-gradient {
  border: 4px solid;
  border-image: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) 1;
}

.border-animated {
  position: relative;
}

.border-animated::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  border-radius: inherit;
  animation: border-dance 4s linear infinite;
}

@keyframes border-dance {
  0% {
    clip-path: inset(0 0 95% 0);
  }
  25% {
    clip-path: inset(0 95% 0 0);
  }
  50% {
    clip-path: inset(95% 0 0 0);
  }
  75% {
    clip-path: inset(0 0 0 95%);
  }
  100% {
    clip-path: inset(0 0 95% 0);
  }
}

/* Creative Background Effects */
.bg-gradient-animated {
  background: linear-gradient(
    -45deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-light),
    var(--secondary-light)
  );
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.bg-particles {
  position: relative;
}

.bg-particles::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--secondary-color) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
  z-index: -1;
}

/* Creative Loading Animations */
.loading-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-dots span {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: var(--primary-color);
  border-radius: 50%;
  animation: loading-dots 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes loading-dots {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(148, 139, 183, 0.3);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Creative Hover Effects */
.hover-underline {
  position: relative;
  display: inline-block;
}

.hover-underline::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.hover-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.hover-shadow:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hover-rotate {
  transition: transform 0.3s ease;
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

/* Creative Scroll Effects */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fade {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.scroll-fade.revealed {
  opacity: 1;
}

.scroll-scale {
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.scroll-scale.revealed {
  transform: scale(1);
  opacity: 1;
}

/* Creative Text Animations */
@keyframes text-wave {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.text-wave span {
  display: inline-block;
  animation: text-wave 1s infinite;
  animation-delay: calc(0.1s * var(--i));
}

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

.text-bounce {
  animation: text-bounce 1s infinite;
}

@keyframes text-fade {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.text-fade {
  animation: text-fade 2s infinite;
}

/* Creative Shape Dividers */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.shape-divider .shape-fill {
  fill: #ffffff;
}

/* Creative Cursor Effects */
.cursor-pointer {
  cursor: pointer;
}

.cursor-zoom {
  cursor: zoom-in;
}

.cursor-grab {
  cursor: grab;
}

.cursor-custom {
  cursor: url("path/to/custom-cursor.png"), auto;
}

/* Creative Scroll Indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s ease;
}

/* Creative Notification Badge */
.notification-badge {
  position: relative;
}

.notification-badge::after {
  content: attr(data-count);
  position: absolute;
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  background-color: var(--accent-color);
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Creative Ribbon */
.ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  overflow: hidden;
  z-index: 1;
}

.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  border: 5px solid var(--primary-dark);
}

.ribbon::before {
  top: 0;
  left: 0;
}

.ribbon::after {
  bottom: 0;
  right: 0;
}

.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  background-color: var(--primary-color);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: white;
  font-size: 17px;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(45deg);
  right: -25px;
  top: 30px;
}

/* Creative Pricing Table */
.pricing-table {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-table::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  transform: rotate(45deg) translateY(-70px);
  z-index: 1;
  transition: all 0.3s ease;
}

.pricing-table:hover::before {
  transform: rotate(45deg) translateY(-60px);
}

.pricing-table.featured {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Creative Timeline */
.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--secondary-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translateX(-50%);
}

.timeline-content {
  width: 45%;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #6366f1;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4f46e5;
}

/* WhatsApp Button Animation */
.whatsapp-btn {
  animation: pulse 2s infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;
  }
}

/* Video Background Styles */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Team Member Card Styles */
.team-member-card {
  transition: all 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-10px);
}

.team-member-image {
  position: relative;
  overflow: hidden;
}

.team-member-image img {
  transition: transform 0.5s ease;
}

.team-member-card:hover .team-member-image img {
  transform: scale(1.05);
}

.team-member-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(47, 49, 145, 0.8), transparent);
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member-card:hover .team-member-overlay {
  opacity: 1;
}

.team-member-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-member-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.team-member-social a:hover {
  background: var(--primary-color);
  color: white;
}

/* Video Controls */
video::-webkit-media-controls {
  display: none !important;
}

video::-webkit-media-controls-enclosure {
  display: none !important;
}

video::-webkit-media-controls-panel {
  display: none !important;
}

/* Fix for step numbers in process section */
.hidden.md\:block.absolute.left-1\/2.transform.-translate-x-1\/2.w-12.h-12.rounded-full.bg-\[\#2F3191\].text-white {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* Add these premium hover animation styles to the CSS file */

/* Premium Button Hover Effect */
.premium-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.premium-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: all 0.6s ease;
}

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

.premium-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(47, 49, 145, 0.3);
}

/* Premium Card Hover Effect */
.premium-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.premium-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 70%, rgba(47, 49, 145, 0.1) 100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.premium-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.premium-card:hover:after {
  opacity: 1;
}

/* Premium Image Hover Effect */
.premium-image {
  overflow: hidden;
  position: relative;
}

.premium-image img {
  transition: all 0.5s ease;
}

.premium-image:hover img {
  transform: scale(1.1);
}

.premium-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(47, 49, 145, 0) 0%, rgba(47, 49, 145, 0.3) 100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.premium-image:hover:after {
  opacity: 1;
}

/* Premium Nav Link Hover Effect */
.premium-nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.premium-nav-link:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0b0361;
  transition: width 0.3s ease;
}

/* Fix contrast for premium nav links */

.premium-nav-link:hover {
  color: #0b0361;
}

/* Fix contrast for premium nav links */

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

/* Premium Service Card Hover Effect */
.premium-service-card {
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.premium-service-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom right, rgba(47, 49, 145, 0.05) 0%, rgba(47, 49, 145, 0.1) 100%);
  transform: scale(0);
  transition-property: transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-out;
  border-radius: 8px;
}

.premium-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.premium-service-card:hover:before {
  transform: scale(1);
}

/* Premium Testimonial Card Hover Effect */
.premium-testimonial {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.premium-testimonial:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(47, 49, 145, 0.1);
  line-height: 1;
  z-index: 0;
  opacity: 0;
  transition: all 0.4s ease;
}

.premium-testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.premium-testimonial:hover:before {
  opacity: 1;
}

/* Premium Team Member Card Hover Effect */
.premium-team-card {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.premium-team-card .overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(47, 49, 145, 0.9) 0%, rgba(47, 49, 145, 0) 100%);
  padding: 20px;
  transition: all 0.4s ease;
}

.premium-team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.premium-team-card:hover .overlay {
  bottom: 0;
}

/* Premium Social Icon Hover Effect */
.premium-social-icon {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.premium-social-icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2f3191;
  transform: translateY(100%);
  transition: all 0.3s ease;
  z-index: -1;
  border-radius: 50%;
}

/* Ensure proper contrast for premium social icons */

.premium-social-icon:hover {
  color: white;
  transform: translateY(-3px);
}

.premium-social-icon:hover:before {
  transform: translateY(0);
}

/* Premium FAQ Hover Effect */
.premium-faq {
  transition: all 0.3s ease;
}

.premium-faq:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.premium-faq .faq-toggle {
  transition: all 0.3s ease;
}

/* Fix contrast for premium FAQ hover effect */

.premium-faq:hover .faq-toggle {
  color: #0b0361;
}

/* Premium Gallery Item Hover Effect */
.premium-gallery-item {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.premium-gallery-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(47, 49, 145, 0) 0%, rgba(47, 49, 145, 0.6) 100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.premium-gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.premium-gallery-item:hover:after {
  opacity: 1;
}

.premium-gallery-item:hover img {
  transform: scale(1.1);
}

/* Premium Form Input Hover/Focus Effect */
.premium-input {
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.premium-input:hover {
  border-color: #cbd5e0;
}

.premium-input:focus {
  border-color: #2f3191;
  box-shadow: 0 0 0 3px rgba(47, 49, 145, 0.2);
  outline: none;
}

/* Ensure proper contrast for premium form inputs */

/* Premium CTA Hover Effect */
.premium-cta {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.premium-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: all 0.8s ease;
}

.premium-cta:hover:before {
  left: 100%;
}

.premium-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Enhance contrast for sticky icons */
.sticky-icons a {
  background-color: #0b0361 !important;
  color: white !important;
  border: 2px solid white !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

.sticky-icons a:hover {
  background-color: #080248 !important;
  transform: scale(1.05) !important;
}

/* Enhance contrast for WhatsApp Float Button */
a[href^="https://wa.me/"] {
  background-color: #25d366 !important;
  color: white !important;
  border: 2px solid white !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

a[href^="https://wa.me/"]:hover {
  background-color: #20bd5c !important;
  transform: scale(1.05) !important;
}

/* Enhance contrast for Phone Button */
a[href^="tel:"] {
  background-color: #0b0361 !important;
  color: white !important;
  border: 2px solid white !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

a[href^="tel:"]:hover {
  background-color: #080248 !important;
  transform: scale(1.05) !important;
}

/* Add these specific overrides at the end of the CSS file to ensure they take precedence */

/* Top Banner - Ensure it's #0b0361 */
.bg-\[\#0b0361\] {
  background-color: #0b0361 !important;
}

/* Statistics Section */
section.py-16.bg-\[\#0b0361\] {
  background-color: #0b0361 !important;
}

/* About Us Section */
section.py-20.bg-\[\#0b0361\] {
  background-color: #0b0361 !important;
}

/* Call to Action Section */
section.py-16.bg-\[\#0b0361\] {
  background-color: #0b0361 !important;
}

/* Footer */
footer.bg-\[\#0b0361\] {
  background-color: #0b0361 !important;
}

/* Ensure proper text contrast on dark backgrounds */
.bg-\[\#0b0361\] .text-gray-400 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.bg-\[\#0b0361\] .text-gray-600 {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Add these styles to ensure the background colors are properly applied */

/* Force background colors for specific sections */
section.py-16.bg-\[\#0b0361\],
section.py-20.bg-\[\#0b0361\],
.bg-\[\#0b0361\],
footer.bg-\[\#0b0361\] {
  background-color: #0b0361 !important;
}

/* WhatsApp button styling in navbar */
.text-\[\#25D366\] {
  color: #25d366 !important;
}

/* Process section styling */
.process-card {
  transition: all 0.3s ease;
}

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

.process-timeline-point {
  position: relative;
}

.process-timeline-point::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  height: 2px;
  width: 100%;
  background-color: #0b0361;
  transform: translateY(-50%);
}

.process-timeline-point:last-child::after {
  display: none;
}

/* Enhance contrast for sticky icons with padding */
.sticky-icons a,
a[href^="https://wa.me/"],
a[href^="tel:"] {
  padding: 7px 10px !important;
}

/* Fix for mobile menu */
@media (max-width: 768px) {
  #mobile-menu {
    transition: all 0.3s ease;
  }

  #mobile-menu:not(.hidden) {
    display: block;
  }
}

/* Add these styles at the end of the file */

/* Fix for mobile menu */
@media (max-width: 768px) {
  #mobile-menu {
    transition: all 0.3s ease;
    display: none;
  }

  #mobile-menu.active,
  #mobile-menu:not(.hidden) {
    display: block;
  }
}

/* Enhance contrast for sticky icons with padding */
.fixed.bottom-6.right-6,
a[href^="https://wa.me/"].fixed,
a[href^="tel:"].fixed {
  padding: 7px 10px !important;
}

/* Make sure mobile menu button is clearly visible and clickable */
#mobile-menu-button {
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

#mobile-menu-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Ensure mobile menu items have proper spacing */
#mobile-menu a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#mobile-menu a:last-child {
  border-bottom: none;
}
