:root {
  --primary-navy: #003d82;
  --secondary-teal: #17a2b8;
  --accent-orange: #ff6b35;
  --light-bg: #f8f9fa;
  --text-dark: #333;
  --border-gray: #ddd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

/* Top Bar */
.top-bar {
  background: var(--primary-navy);
  color: white;
  font-size: 12px;
}

.top-bar a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.top-bar a:hover {
  color: var(--secondary-teal);
}

/* Header Navigation */
.header-nav {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #1a5fa0 100%);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: white !important;
  letter-spacing: 2px;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
  font-size: 13px;
  font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--secondary-teal);
}

.btn-register {
  background: var(--secondary-teal);
  color: white;
  border-radius: 25px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-register:hover {
  background: #138496;
  color: white;
}

/* Navbar Dropdown Navigation Styling (Desktop Hover + Mobile Tap) */
.header-nav .dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 43, 92, 0.18);
  padding: 8px 0;
  background-color: #ffffff;
}

.header-nav .dropdown-item {
  font-size: 13.5px;
  font-weight: 500;
  color: #334155;
  padding: 8px 20px;
  transition: all 0.2s ease;
}

.header-nav .dropdown-item:hover,
.header-nav .dropdown-item:focus {
  background-color: #f0f7ff;
  color: #007bff;
  padding-left: 24px;
}

/* Desktop Hover Animation (Min Width 992px) */
@media (min-width: 992px) {
  .header-nav .nav-item.dropdown {
    position: relative;
  }

  .header-nav .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header-nav .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    margin-top: 0;
  }
}

/* Mobile Offcanvas Drawer (Max Width 991.98px) */
@media (max-width: 991.98px) {
  .header-nav .offcanvas {
    background: linear-gradient(180deg, #002b5c 0%, #001836 100%) !important;
    width: 290px !important;
    max-width: 82vw !important;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
    border: none;
  }

  .header-nav .offcanvas-header {
    padding: 16px 20px;
    background-color: rgba(0, 0, 0, 0.2);
  }

  .header-nav .offcanvas-body {
    padding: 20px;
  }

  .header-nav .nav-link {
    padding: 10px 0 !important;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-nav .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    margin-top: 6px;
    padding: 6px 0;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .header-nav .dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 10px 20px;
  }

  .header-nav .dropdown-item:hover,
  .header-nav .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.18) !important;
    color: #7dd3fc !important;
    padding-left: 20px;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 61, 130, 0.7);
  z-index: 2;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 700px;
  padding: 0 20px;
}

.hero-title {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 30px;
  font-weight: 600;
}

.hero-title em {
  font-style: italic;
  color: var(--secondary-teal);
}

/* Add hero subtitle styling for immigration message */
.hero-subtitle {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  margin-bottom: 20px;
}

.btn-cta {
  background: var(--accent-orange);
  color: white;
  border: none;
  padding: 12px 40px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-cta:hover {
  background: #e55a2b;
  color: white;
  text-decoration: none;
}

.hero-icon {
  margin-top: 20px;
  font-size: 24px;
  animation: bounce 2s infinite;
}

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

/* Geometric Shapes */
.geo-shape-left,
.geo-shape-right {
  position: absolute;
  bottom: -50px;
  width: 200px;
  height: 200px;
  background: var(--secondary-teal);
  opacity: 0.3;
  z-index: 0;
}

.geo-shape-left {
  left: -100px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.geo-shape-right {
  right: -100px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Company Section */
.company-section {
  background: white;
}

.section-title {
  font-size: 36px;
  color: var(--secondary-teal);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 400;
}

/* Features Section */
.features-section {
  background: var(--light-bg);
  padding: 60px 0;
}

/* Sleek Offset Dual-Layer Card Style (Inspired by User Screenshot) */
.offset-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 16px 0 0 16px;
  margin-bottom: 24px;
}

.offset-card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 85%;
  background: linear-gradient(135deg, var(--secondary-teal, #00a8cc) 0%, #10b981 100%);
  border-top-left-radius: 24px;
  border-bottom-left-radius: 14px;
  border-top-right-radius: 14px;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
}

.offset-card-wrapper .feature-card {
  position: relative;
  z-index: 2;
  background: white;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.offset-card-wrapper:hover::before {
  transform: translate(-4px, -4px) scale(1.02);
  background: linear-gradient(135deg, #10b981 0%, var(--primary-navy, #003d82) 100%);
}

.offset-card-wrapper:hover .feature-card {
  transform: translate(6px, -4px);
  box-shadow: 0 20px 35px rgba(0, 61, 130, 0.16) !important;
}

.hexagon-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: var(--secondary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
  clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
}

.feature-card h3 {
  color: var(--secondary-teal);
  margin-bottom: 15px;
  font-size: 20px;
}

.feature-card p {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}

.learn-more {
  color: var(--secondary-teal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.learn-more:hover {
  color: var(--accent-orange);
}

/* Testimonial Section */
.testimonial-section {
  position: relative;
  background-image: url("/assets/images/testimonial-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}

.testimonial-overlay {
  background: rgba(0, 61, 130, 0.85);
  padding: 60px 0;
}

.testimonial-text {
  color: white;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  color: var(--secondary-teal);
  font-weight: 600;
  font-size: 13px;
}

/* CTA Section with High-Res World Map & Airplane Flight Path Background */
.cta-section {
  position: relative;
  background-image: url("/assets/images/world-map-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #f8fafc;
  padding: 100px 0;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(248, 250, 252, 0.82) 0%, rgba(248, 250, 252, 0.92) 100%);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: var(--primary-navy, #003d82);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.cta-section p {
  color: #334155;
  font-size: 16px;
  line-height: 1.8;
  max-width: 820px;
  margin: 0 auto 16px;
}

.btn-cta-orange {
  background: var(--accent-orange);
  color: white;
  padding: 12px 40px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-cta-orange:hover {
  background: #e55a2b;
  text-decoration: none;
  color: white;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--secondary-teal) 0%, #0d7a94 100%);
  color: white;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 150px;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-size: 12px;
}

.btn-submit {
  background: var(--accent-orange);
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #e55a2b;
}

/* Partners Section */
.partners-section {
  background: white;
  border-top: 1px solid var(--border-gray);
}

.partner-logo {
  max-width: 150px;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.partner-logo:hover {
  opacity: 1;
}

/* Footer */
/* Update footer styling for better layout and developer attribution */
.footer {
  background: var(--primary-navy);
  color: white;
  padding: 30px 0 15px;
  text-align: left;
  font-size: 12px;
}

.footer-content {
  background: var(--primary-navy);
}

.footer-title {
  color: var(--secondary-teal);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-text {
  color: #ccc;
  font-size: 13px;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--secondary-teal);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: var(--secondary-teal);
  font-size: 16px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--accent-orange);
}

.footer-bottom-text {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 13px;
  line-height: 1.6;
}

.footer-bottom-text strong {
  color: var(--secondary-teal);
  font-weight: 600;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  z-index: 999;
}

.whatsapp-btn:hover {
  background: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

/* Responsive */
/* Added mobile-first centered form styles and improved responsive design */
@media (max-width: 768px) {
  .auth-container {
    margin: 20px;
    max-width: 100%;
  }

  .auth-header {
    padding: 20px;
  }

  .auth-body {
    padding: 20px;
  }

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

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

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .btn-submit {
    width: 100%;
  }

  .geo-shape-left,
  .geo-shape-right {
    display: none;
  }

  .page-header h1 {
    font-size: 28px !important;
  }

  .page-header p {
    font-size: 14px !important;
  }

  .footer-content .row {
    text-align: center;
  }

  .footer-links {
    margin-top: 10px;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 18px !important;
  }

  .navbar-dark .navbar-nav .nav-link {
    font-size: 12px;
  }

  .auth-container {
    max-width: 100%;
    border-radius: 0;
  }

  .hero-title {
    font-size: 18px;
  }

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

  .top-bar {
    font-size: 10px;
  }

  .top-bar a {
    margin-right: 5px;
  }
}

/* Page Banner Header Component with Hero Section Background */
.page-header-banner {
  position: relative;
  background-image: url('/public/images/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  color: #ffffff;
  padding: 85px 0;
  text-align: center;
  overflow: hidden;
}

.page-header-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 61, 130, 0.88) 0%, rgba(0, 24, 54, 0.94) 100%);
  z-index: 1;
}

.page-header-banner .container {
  position: relative;
  z-index: 2;
}

.page-header-banner h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.page-header-banner p {
  font-size: 16.5px;
  opacity: 0.94;
  margin-bottom: 0;
}

/* Distinct Hero Banners for Inner Pages */
.about-header-banner {
  background-image: url('/assets/images/about-hero-bg.jpg');
  background-size: cover;
  background-position: center center;
}

.contact-header-banner {
  background-image: url('/assets/images/contact-hero-bg.jpg');
  background-size: cover;
  background-position: center center;
}

.booking-header-banner {
  background-image: url('/assets/images/booking-hero-bg.jpg');
  background-size: cover;
  background-position: center center;
}

.legal-header-banner {
  background-image: url('/assets/images/legal-hero-bg.jpg');
  background-size: cover;
  background-position: center center;
}

/* Legal & Information Body Sections (Optimized for Wide Screens & Zoomed Viewports) */
.legal-card-container {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.legal-content-body {
  line-height: 1.85;
  color: #334155;
  font-size: 15.5px;
  width: 100%;
}

.legal-section-block {
  background-color: #ffffff;
  border-left: 4px solid var(--secondary-teal);
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 28px;
  border-top: 1px solid #f1f5f9;
  border-right: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  box-shadow: 0 4px 16px rgba(0, 43, 92, 0.04);
}

.legal-section-block h3 {
  color: var(--primary-navy);
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-section-block h3 i {
  color: var(--secondary-teal);
}

.legal-section-block p {
  color: #475569;
  font-size: 15px;
  margin-bottom: 14px;
}

.legal-section-block p:last-child {
  margin-bottom: 0;
}

.legal-section-block ul {
  padding-left: 24px;
  color: #475569;
  margin-bottom: 14px;
}

.legal-section-block ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .legal-section-block {
    padding: 20px 18px;
  }
}

/* Feature Cards Component */
.feature-box-card {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-box-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 43, 92, 0.12);
}

.feature-box-card i {
  font-size: 40px;
  color: var(--secondary-teal);
  margin-bottom: 16px;
}

.feature-box-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary-navy);
}

.feature-box-card p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Image & Text Utilities */
.img-card-shadow {
  box-shadow: 0 10px 30px rgba(0, 43, 92, 0.12);
  border-radius: 10px;
}

.text-teal {
  color: var(--secondary-teal) !important;
}

.text-navy {
  color: var(--primary-navy) !important;
}

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

.check-list li {
  margin-bottom: 12px;
  color: #475569;
  font-size: 15px;
}

.check-list li i {
  color: var(--secondary-teal);
  margin-right: 10px;
}

.hero-subtitle-text {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.95;
}

.company-desc-text {
  max-width: 800px;
  margin: 20px auto;
  color: #64748b;
  line-height: 1.8;
  font-size: 15.5px;
}

/* Newsletter Section Component */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #001a3a 100%);
  border-top: 4px solid var(--secondary-teal);
}

.newsletter-input {
  background-color: #ffffff;
  border: 1px solid transparent;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 6px;
  color: #0f172a;
}

.newsletter-input:focus {
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.35);
  border-color: var(--secondary-teal);
}

/* Testimonial Auto-Swipe Carousel (NextGen UI Inspired) */
.testimonial-carousel-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0 40px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 24px;
}

.testimonial-card-slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.75;
  transform: scale(0.94);
}

/* Active Highlight Card State */
.testimonial-card-slide.active-card {
  opacity: 1;
  transform: scale(1.05);
  background: linear-gradient(135deg, #003d82 0%, #00234d 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 24px 50px rgba(0, 61, 130, 0.28) !important;
  border-color: transparent !important;
}

.testimonial-card-slide.active-card .testimonial-quote,
.testimonial-card-slide.active-card .testimonial-author-name {
  color: #ffffff !important;
}

.testimonial-card-slide.active-card .testimonial-author-role {
  color: rgba(255, 255, 255, 0.75) !important;
}

.testimonial-card-slide.active-card .testimonial-badge {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #7dd3fc !important;
}

/* Star Rating */
.star-rating {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 16px;
}

/* Outcome Badge */
.testimonial-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: #e0f2fe;
  color: #0369a1;
  margin-bottom: 16px;
}

/* Carousel Indicators */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  width: 32px;
  border-radius: 12px;
  background: #003d82;
}

@media (max-width: 991.98px) {
  .testimonial-card-slide {
    flex: 0 0 88%;
  }
}

/* Trusted Partners & Global Compliance Infinite Marquee Section */
.trusted-partners-section {
  background: #f8fafc;
  padding: 55px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 15px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 30px;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

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

.partner-badge-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.partner-badge-card i {
  font-size: 24px;
  color: #64748b;
  transition: color 0.3s ease, transform 0.3s ease;
}

.partner-badge-card .partner-name {
  font-weight: 700;
  font-size: 14px;
  color: #334155;
  transition: color 0.3s ease;
}

.partner-badge-card .partner-spec {
  font-size: 11px;
  color: #94a3b8;
  display: block;
}

.partner-badge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 61, 130, 0.12);
  border-color: var(--secondary-teal, #00a8cc);
}

.partner-badge-card:hover i {
  color: var(--secondary-teal, #00a8cc);
  transform: scale(1.15);
}

.partner-badge-card:hover .partner-name {
  color: var(--primary-navy, #003d82);
}
