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

/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
  /* Brand Colors */
  --color-pink: #e21b7a;
  --color-purple: #962991;
  --color-blue: #2b4c9b;
  --color-red: #f05252;
  --color-dark: #0f172a;
  --color-dark-grey: #334155;
  --color-light-grey: #f8fafc;
  --color-border: #e2e8f0;
  --color-white: #ffffff;
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 50%, var(--color-blue) 100%);
  --blue-gradient: linear-gradient(135deg, var(--color-blue) 0%, #1e3a8a 100%);
  --pink-gradient: linear-gradient(135deg, var(--color-pink) 0%, #be185d 100%);
  --light-gradient: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
  --dark-glass-gradient: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);

  /* Typography */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.1), 0 10px 15px -3px rgba(15, 23, 42, 0.05);
  --shadow-glow: 0 0 20px rgba(150, 41, 145, 0.2);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-dark-grey);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 600; }

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}

ul {
  list-style: none;
}

/* ==========================================
   UTILITY CLASSES & SCROLL ANIMATIONS
   ========================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-red-blue {
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Scroll Entrance Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.reveal-left {
  transform: translateX(-60px);
}

.reveal.reveal-right {
  transform: translateX(60px);
}

.reveal.reveal-scale {
  transform: scale(0.9);
}

.revealed {
  opacity: 1;
  transform: translate(0) scale(1) !important;
}

/* Delay modifiers for lists or grid elements */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-headings);
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  gap: 0.5rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: var(--transition-normal);
}

.btn-primary {
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

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

.btn-primary:hover::before {
  opacity: 0.85;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
}

.btn-secondary::before {
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: right;
}

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

.btn-secondary:hover {
  border-color: var(--color-white);
  transform: translateY(-3px);
}

.btn-outline-blue {
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
}

.btn-outline-blue:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
  transform: translateY(-3px);
}

.btn-red {
  color: var(--color-white);
}

.btn-red::before {
  background: var(--color-red);
}

.btn-red:hover::before {
  background: #de3a3a;
}

.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(240, 82, 82, 0.3);
}

/* ==========================================
   HEADER & TOP BAR & NAVIGATION
   ========================================== */
.top-bar {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 1.5rem;
}

.top-bar-info a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-info a:hover {
  color: var(--color-pink);
}

.top-bar-socials {
  display: flex;
  gap: 1rem;
}

.top-bar-socials a:hover {
  color: var(--color-pink);
  transform: translateY(-2px);
}

/* Navbar */
.header {
  position: fixed;
  top: 36px; /* offset for top-bar */
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-normal);
}

body.scrolled .header {
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--color-border);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  transition: var(--transition-normal);
}

body.scrolled .navbar {
  padding: 0.75rem 0;
}

.logo-container {
  height: 75px;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
}

body.scrolled .logo-container {
  height: 60px;
}

.logo-container img {
  height: 100%;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--color-white);
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

body.scrolled .nav-link {
  color: var(--color-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 110;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

body.scrolled .hamburger span {
  background-color: var(--color-dark);
}

/* Mobile Nav Overlay */
@media (max-width: 991px) {
  .header {
    top: 0; /* Align top on mobile */
  }
  .top-bar {
    display: none; /* Hide top bar on smaller screens for cleaner UI */
  }
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    align-items: flex-start;
    gap: 1.5rem;
    transition: right var(--transition-normal);
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-link {
    font-size: 1.15rem;
    width: 100%;
    color: var(--color-dark);
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ==========================================
   HERO SLIDER
   ========================================== */
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--color-dark);
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 7s ease-out;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0.7) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 10;
  color: var(--color-white);
  max-width: 750px;
  padding: 0 1.5rem;
}

/* Slide Entry Animations */
.hero-slide-content .pre-title {
  font-family: var(--font-headings);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-pink);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(-20px);
}

.hero-slide-content h1 {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide-content p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide-content .hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide.active .hero-slide-content .pre-title {
  animation: slideInDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

.hero-slide.active .hero-slide-content h1 {
  animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
}

.hero-slide.active .hero-slide-content p {
  animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.6s;
}

.hero-slide.active .hero-slide-content .hero-buttons {
  animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
}

@keyframes slideInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slider Controls */
.slider-nav {
  position: absolute;
  bottom: 2.5rem;
  right: 5%;
  z-index: 10;
  display: flex;
  gap: 1rem;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  transition: var(--transition-fast);
}

.slider-btn:hover {
  border-color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.slider-dots {
  position: absolute;
  bottom: 3rem;
  left: 5%;
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}

.slider-dot {
  width: 30px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
}

.slider-dot.active {
  width: 50px;
  background-color: var(--color-pink);
}

/* Scroll Down Mouse */
.scroll-down {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}

.scroll-down:hover {
  opacity: 1;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-white);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--color-white);
  border-radius: var(--radius-full);
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ==========================================
   ABOUT US SECTION
   ========================================== */
.about-section {
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-images-wrapper {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-images-wrapper:hover .about-img-main img {
  transform: scale(1.05);
}

/* Glassmorphism Floating Card */
.about-floating-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 280px;
  background: var(--glass-gradient);
  border: 1px solid var(--color-white);
  backdrop-filter: blur(15px);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
}

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

.about-card-stat {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-card-text {
  font-size: 0.9rem;
  color: var(--color-dark-grey);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-tag {
  font-family: var(--font-headings);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-pink);
  margin-bottom: 0.75rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content .lead {
  font-size: 1.15rem;
  color: var(--color-dark);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--color-dark-grey);
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(150, 41, 145, 0.1);
  color: var(--color-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.about-feature-text {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--color-dark);
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-floating-card {
    right: 1rem;
    bottom: -1rem;
    width: 220px;
    padding: 1.25rem;
  }
  .about-card-stat {
    font-size: 2.25rem;
  }
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
  background-color: var(--color-light-grey);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.section-header h2 {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

/* Modern Card Hover Effects */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(226, 27, 122, 0.1) 0%, rgba(43, 76, 155, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  transition: transform var(--transition-normal), background var(--transition-normal);
}

.service-card-icon i {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  transition: color var(--transition-fast);
}

.service-card p {
  color: var(--color-dark-grey);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-blue);
}

.service-card-link i {
  transition: transform var(--transition-fast);
}

/* Card Hover Animation States */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover .service-card-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-gradient);
}

.service-card:hover .service-card-icon i {
  -webkit-text-fill-color: var(--color-white);
}

.service-card:hover h3 {
  color: var(--color-pink);
}

.service-card:hover .service-card-link {
  color: var(--color-pink);
}

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

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   SUCCESS STORIES & STATS
   ========================================== */
.success-stories-section {
  position: relative;
  background-color: var(--color-dark);
  color: var(--color-white);
  overflow: hidden;
}

/* Visual Background Accents */
.success-bg-accent {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(150, 41, 145, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(50px);
  z-index: 1;
}

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

.success-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.success-content h2 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.success-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(5px);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 27, 122, 0.3);
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.75rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-title {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Success Stories Slider */
.stories-slider-container {
  width: 100%;
}

.stories-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 3rem;
  backdrop-filter: blur(10px);
  position: relative;
}

.stories-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 8rem;
  font-family: serif;
  color: rgba(226, 27, 122, 0.15);
  line-height: 1;
}

.story-client-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.story-client-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 2px solid var(--color-pink);
}

.story-client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-client-details h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.story-client-details span {
  font-size: 0.85rem;
  color: var(--color-pink);
}

.story-rating {
  margin-left: auto;
  color: #fbbf24;
  display: flex;
  gap: 0.25rem;
}

@media (max-width: 991px) {
  .success-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stories-card {
    padding: 2rem;
  }
  .story-client-info {
    flex-wrap: wrap;
  }
  .story-rating {
    margin-left: 0;
    width: 100%;
    margin-top: 0.5rem;
  }
}

/* ==========================================
   CAROUSEL TESTIMONIALS (PARTNERS / CLIENTS)
   ========================================== */
.testimonials-section {
  background-color: var(--color-white);
  overflow: hidden;
}

.testimonials-carousel-wrapper {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
}

.testimonials-track-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-normal);
  width: 100%;
}

.testimonial-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background: var(--color-light-grey);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
}

.testimonial-quote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--color-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 1rem;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-md);
}

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

.testimonial-name {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-dark);
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--color-pink);
  font-weight: 600;
  margin-top: 0.25rem;
}

/* Carousel Controls */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-dark);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 10;
}

.carousel-nav-btn:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}

.carousel-prev {
  left: -80px;
}

.carousel-next {
  right: -80px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: var(--color-border);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  width: 25px;
  background-color: var(--color-pink);
}

@media (max-width: 1140px) {
  .carousel-prev { left: -20px; }
  .carousel-next { right: -20px; }
  .carousel-nav-btn {
    width: 48px;
    height: 48px;
    box-shadow: var(--shadow-sm);
  }
}

/* Carousel Images (Partner Universities Logo Slider) */
.partners-slider {
  margin-top: 5rem;
  border-top: 1px solid var(--color-border);
  padding-top: 4rem;
}

.partners-slider h4 {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--color-dark-grey);
  margin-bottom: 2.5rem;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: logoScroll 20s linear infinite;
}

.partners-container {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.partner-logo {
  height: 40px;
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

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

@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 2rem)); }
}

/* ==========================================
   MASONRY IMAGES GALLERY
   ========================================== */
.gallery-section {
  background-color: var(--color-light-grey);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-gradient);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

/* HTML Native Masonry using CSS Columns */
.gallery-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

/* Overlay Info */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-overlay h4 {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.gallery-overlay span {
  color: var(--color-pink);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(20px);
  transition: transform var(--transition-normal) 0.1s;
}

/* Gallery Hover Interactions */
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--color-white);
  font-size: 1.75rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-pink);
}

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

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

/* ==========================================
   REGISTRATION CTA SECTION
   ========================================== */
.register-section {
  background: var(--primary-gradient);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.register-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.register-content {
  max-width: 700px;
}

.register-content h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.register-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
}

.register-action {
  flex-shrink: 0;
}

.register-bg-glow {
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(40px);
}

@media (max-width: 991px) {
  .register-section .container {
    flex-direction: column;
    text-align: center;
  }
  .register-action {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

/* ==========================================
   CONTACT US SECTION
   ========================================== */
.contact-section {
  background-color: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 5vw, 5rem);
}

.contact-info-column {
  display: flex;
  flex-direction: column;
}

.contact-card {
  background: var(--color-light-grey);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.contact-card h3 {
  margin-bottom: 2rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(150, 41, 145, 0.2);
}

.contact-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-text p, .contact-text a {
  color: var(--color-dark-grey);
  font-size: 0.95rem;
}

.contact-text a:hover {
  color: var(--color-pink);
}

/* Responsive Maps Container */
.map-container {
  height: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Form with Custom Inputs */
.contact-form-column {
  display: flex;
  flex-direction: column;
}

.contact-form-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  margin-bottom: 0.5rem;
}

.contact-form-card .form-lead {
  color: var(--color-dark-grey);
  margin-bottom: 2.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: var(--color-light-grey);
  color: var(--color-dark);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus {
  border-color: var(--color-pink);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(226, 27, 122, 0.1);
}

.form-label {
  position: absolute;
  left: 1.25rem;
  top: 1rem;
  color: #64748b;
  pointer-events: none;
  transition: transform var(--transition-fast), font-size var(--transition-fast), color var(--transition-fast), background-color var(--transition-fast);
  font-size: 0.95rem;
}

/* Floating Label Logic via JS or CSS focus-within */
.form-group.focused .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  transform: translate(-0.25rem, -1.65rem) scale(0.85);
  color: var(--color-pink);
  font-weight: 600;
  padding: 0 0.5rem;
  background-color: var(--color-white);
}

textarea.form-input {
  height: 150px;
  resize: none;
}

/* Form Submit State */
.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: none;
  animation: slideInDown 0.3s ease forwards;
}

.form-status.success {
  display: block;
  background-color: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  height: 75px;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 100%;
}

.footer-about-text {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.footer-socials a:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-gradient);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-pink);
  transform: translateX(3px);
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: 0.85rem;
}

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

.newsletter-input:focus {
  border-color: var(--color-pink);
  background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.newsletter-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(226, 27, 122, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-copyright a {
  color: var(--color-white);
}

.footer-copyright a:hover {
  color: var(--color-pink);
}

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================
   NAVBAR DROPDOWN & SUB-PAGE STYLES
   ========================================== */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--color-white);
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  padding: 1rem 0;
  z-index: 1000;
  border: 1px solid var(--color-border);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: var(--color-white);
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--color-dark);
  font-size: 0.9rem;
  text-align: left;
  transition: background var(--transition-fast), color var(--transition-fast), padding-left var(--transition-fast);
}

.dropdown-item:hover {
  background-color: var(--color-light-grey);
  color: var(--color-pink);
  padding-left: 1.75rem;
}

/* Mobile Dropdown styles */
@media (max-width: 991px) {
  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0.5rem 0 0 1.5rem;
    display: none;
    background: transparent;
    min-width: 100%;
  }
  .dropdown-menu::before {
    display: none;
  }
  .has-dropdown.active .dropdown-menu {
    display: block;
  }
  .dropdown-item {
    color: var(--color-dark-grey);
    padding: 0.5rem 0;
    font-size: 1rem;
  }
  .dropdown-item:hover {
    padding-left: 0.25rem;
    background: transparent;
  }
}

/* Sub-page Banner */
.page-banner {
  position: relative;
  padding: clamp(8rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
  background-color: var(--color-dark);
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--color-white);
}

.page-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 100%);
  z-index: 1;
}

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

.page-banner h1 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.breadcrumbs a:hover {
  color: var(--color-pink);
}

.breadcrumbs span.current {
  color: var(--color-pink);
  font-weight: 600;
}

/* Sub-page Sections and Grids */
.subpage-section {
  background-color: var(--color-white);
}

.select-tag {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-pink);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.subpage-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.subpage-intro h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.subpage-intro p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-dark-grey);
}

.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  width: 100%;
}

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 950px;
  margin: 0 auto;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2-col, .grid-3-col {
    grid-template-columns: 1fr;
  }
}

/* Sub-service Cards */
.sub-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.sub-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.sub-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.sub-card:hover .sub-card-img img {
  transform: scale(1.06);
}

.sub-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
  align-items: center;
}

.sub-card-title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-dark);
  margin-bottom: 1rem;
  transition: color var(--transition-fast);
}

.sub-card:hover .sub-card-title {
  color: var(--color-pink);
}

.sub-card p {
  font-size: 0.95rem;
  color: var(--color-dark-grey);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.sub-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
  background: transparent;
  transition: var(--transition-fast);
  cursor: pointer;
}

.sub-card:hover .sub-card-btn {
  background: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(43, 76, 155, 0.2);
}

