/* ==========================================
   EXCELLENCE EDUCATIONAL TABLETS - DESIGN SYSTEM
   ========================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Branding Palette */
  --primary-copper: #0060D1;
  --dark-copper: #004BB3;
  --accent-blue: #FAA000;
  --bg-light: #F8F9FC;
  --text-dark: #1E1E1E;
  --text-muted: #5F6368;
  --white: #FFFFFF;

  /* Glassmorphism Styles */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.45);

  /* Fonts */
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-copper-glow: 0 15px 35px -5px rgba(0, 96, 209, 0.25);
  --shadow-blue-glow: 0 15px 35px -5px rgba(250, 160, 0, 0.2);

  /* Spacing */
  --container-max-width: 1280px;
  --section-padding: 6.5rem;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Global Icon Animations */
.material-symbols-outlined {
  display: inline-block;
  transition: all 0.3s ease;
  animation: globalIconFloat 4s ease-in-out infinite;
}

.material-symbols-outlined:hover {
  animation: globalIconWobble 0.6s ease-in-out infinite alternate;
}

@keyframes globalIconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes globalIconWobble {
  0% {
    transform: scale(1.1) rotate(0deg);
  }

  33% {
    transform: scale(1.1) rotate(-8deg);
  }

  66% {
    transform: scale(1.1) rotate(8deg);
  }

  100% {
    transform: scale(1.1) rotate(0deg);
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   COMMON COMPONENTS & GRADIENTS
   ========================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.copper-gradient {
  background: linear-gradient(135deg, var(--primary-copper) 0%, var(--dark-copper) 100%);
}

.copper-gradient-hover {
  background: linear-gradient(135deg, var(--dark-copper) 0%, var(--primary-copper) 100%);
}

.text-gradient-copper {
  background: linear-gradient(135deg, var(--primary-copper) 0%, var(--dark-copper) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1rem 2.25rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-copper) 0%, var(--dark-copper) 100%);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-copper-glow);
  background: linear-gradient(135deg, #cc8443 0%, var(--primary-copper) 100%);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-copper);
  border: 2px solid var(--primary-copper);
}

.btn-secondary:hover {
  background-color: rgba(0, 96, 209, 0.06);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn:active {
  transform: translateY(-1px);
}

/* Glassmorphism Card Style */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 1.5rem;
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-copper-glow);
  border-color: rgba(0, 96, 209, 0.25);
}

/* Chip/Badge Style */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(0, 96, 209, 0.09);
  color: var(--dark-copper);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chip .material-symbols-outlined {
  font-size: 1rem;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-copper) 0%, var(--dark-copper) 100%);
  margin: 0 auto;
  border-radius: 9999px;
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 1.5rem 0;
}

.navbar.scrolled {
  background-color: rgba(248, 249, 252, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  text-decoration: none;
}

.nav-brand img {
  height: 120px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-brand img {
  height: 80px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-copper);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-copper);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

/* ==========================================
   MOBILE MENU DRAWER
   ========================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-light);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  z-index: 1001;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.mobile-drawer-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

.mobile-drawer-link:hover {
  color: var(--primary-copper);
  padding-left: 5px;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
}

.drawer-overlay.open {
  display: block;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  padding-top: 11rem;
  padding-bottom: 7rem;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  display: none;
}

/* Option B: Glowing Orbs Background */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.6;
  animation: orbDrift 20s infinite alternate ease-in-out;
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background-color: var(--primary-copper);
  top: -10%;
  right: -5%;
}

.hero-orb-2 {
  width: 600px;
  height: 600px;
  background-color: var(--accent-blue);
  bottom: -20%;
  left: -20%;
  animation-delay: -5s;
  opacity: 0.35;
}

.hero-orb-3 {
  width: 400px;
  height: 400px;
  background-color: #0099ff;
  top: 30%;
  left: 20%;
  animation-delay: -10s;
  opacity: 0.25;
}

@keyframes orbDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, 30px) scale(1.1);
  }

  100% {
    transform: translate(-30px, -50px) scale(0.9);
  }
}

/* Option B: Glass Panel for Content */
.hero-glass-panel {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

/* Option B: Isometric Tilt for Tablet */
.hero-option-b .hero-mockup-wrapper {
  transform: perspective(1200px) rotateY(-18deg) rotateX(8deg) rotateZ(3deg) scale(1.05);
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-option-b .hero-mockup-wrapper:hover {
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg) rotateZ(0deg) scale(1.1);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
}

.brochure-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--primary-copper);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brochure-link:hover {
  text-decoration: underline;
  color: var(--dark-copper);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero-mockup {
  border-radius: 2.25rem;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.18);
  border: 8px solid #1a202c;
  width: 100%;
  display: block;
}

/* Floating Badge Elements */
.floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 0.85rem 1.25rem;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 10;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  animation: float 6s ease-in-out infinite;
}

.floating-badge .material-symbols-outlined {
  color: var(--primary-copper);
  font-size: 1.25rem;
}

.badge-1 {
  top: -5%;
  right: -5%;
  animation-delay: 0s;
}

.badge-2 {
  top: 30%;
  left: -18%;
  animation-delay: 1.5s;
}

.badge-3 {
  bottom: 25%;
  right: -18%;
  animation-delay: 3s;
}

.badge-4 {
  bottom: -5%;
  left: 10%;
  animation-delay: 4.5s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ==========================================
   WHY CHOOSE EXCELLENCE (BENTO GRID)
   ========================================== */
.features {
  padding: var(--section-padding) 0;
  background-color: var(--white);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.bento-card {
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 1.5rem;
  background: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: var(--shadow-sm);
}

.bento-card:hover {
  transform: translateY(-6px);
  background: var(--white);
  box-shadow: var(--shadow-lg), var(--shadow-copper-glow);
  border-color: rgba(0, 96, 209, 0.25);
}

.bento-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(0, 96, 209, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.bento-icon-wrapper .material-symbols-outlined {
  color: var(--primary-copper);
  font-size: 1.75rem;
  transition: all 0.4s ease;
}

.bento-card:hover .bento-icon-wrapper {
  background-color: var(--primary-copper);
}

.bento-card:hover .bento-icon-wrapper .material-symbols-outlined {
  color: var(--white);
}

.bento-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
}

.bento-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================
   INDUSTRIES SECTION
   ========================================== */
.industries {
  padding: var(--section-padding) 0;
  background-color: var(--bg-light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.75rem;
}

.industry-card {
  text-align: center;
  cursor: pointer;
}

.industry-icon-container {
  aspect-ratio: 1;
  background-color: var(--white);
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.industry-icon-container .material-symbols-outlined {
  color: var(--primary-copper);
  font-size: 2.25rem;
  transition: all 0.3s ease;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.05);
  }
}

.industry-card:hover .industry-icon-container {
  border-color: var(--primary-copper);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), var(--shadow-copper-glow);
}

.industry-card:hover .industry-icon-container .material-symbols-outlined {
  color: var(--accent-blue);
  animation: iconWobble 0.6s ease-in-out infinite alternate;
}

@keyframes iconWobble {
  0% {
    transform: translateY(-3px) scale(1.1) rotate(0deg);
  }

  33% {
    transform: translateY(-3px) scale(1.1) rotate(-8deg);
  }

  66% {
    transform: translateY(-3px) scale(1.1) rotate(8deg);
  }

  100% {
    transform: translateY(-3px) scale(1.1) rotate(0deg);
  }
}

.industry-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ==========================================
   DEEP DIVES (ALTERNATING ROWS)
   ========================================== */
.deep-dives {
  padding: var(--section-padding) 0;
  background-color: var(--white);
  overflow: hidden;
}

.deep-dives-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.deep-dive-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.deep-dive-content h3 {
  font-size: 2.25rem;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.deep-dive-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.25rem;
}

.deep-dive-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.deep-dive-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.deep-dive-list li .material-symbols-outlined {
  color: var(--primary-copper);
  font-size: 1.35rem;
}

.deep-dive-visual {
  position: relative;
}

.deep-dive-visual::before {
  content: '';
  position: absolute;
  inset: -1.5rem;
  background-color: rgba(0, 96, 209, 0.04);
  border-radius: 2rem;
  z-index: 0;
  filter: blur(24px);
}

.deep-dive-img {
  position: relative;
  z-index: 1;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
  padding: var(--section-padding) 0;
  background-color: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 3rem 2.25rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.stars-row {
  display: flex;
  gap: 0.25rem;
  color: var(--primary-copper);
}

.stars-row .material-symbols-outlined {
  font-size: 1.25rem;
  font-variation-settings: 'FILL' 1;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.user-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(0, 96, 209, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-copper);
  font-weight: 700;
  font-size: 1rem;
}

.user-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
}

.user-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================
   FAQ SECTION (ACCORDION)
   ========================================== */
.faq {
  padding: var(--section-padding) 0;
  background-color: var(--white);
}

.faq-wrapper {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  background-color: var(--white);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-card:hover {
  border-color: var(--primary-copper);
}

.faq-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.faq-header:hover h4 {
  color: var(--primary-copper);
}

.faq-icon {
  color: var(--primary-copper);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-card.open .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-content-inner {
  padding: 0 2rem 2rem 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================
   CONTACT SECTION & DUAL CARD
   ========================================== */
.contact {
  padding: var(--section-padding) 0;
  background-color: var(--bg-light);
}

.contact-frame {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border-radius: 2.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
}

.contact-info-pane {
  background: linear-gradient(135deg, var(--primary-copper) 0%, var(--dark-copper) 100%);
  color: var(--white);
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3.5rem;
}

.contact-info-pane h3 {
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.contact-info-pane p {
  opacity: 0.9;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon .material-symbols-outlined {
  color: var(--white);
  font-size: 1.35rem;
}

.contact-detail-text p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.contact-detail-text h4 {
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 700;
  margin-top: 0.15rem;
}

.contact-form-pane {
  background-color: var(--white);
  padding: 4.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.15rem;
  border-radius: 0.75rem;
  background-color: rgba(0, 0, 0, 0.03);
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  background-color: var(--white);
  border-color: var(--primary-copper);
  box-shadow: 0 0 10px rgba(0, 96, 209, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23B87333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  background-size: 1.25rem;
  padding-right: 3rem;
}

/* ==========================================
   MODAL OVERLAY SYSTEM
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 2rem;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background-color: var(--white);
  border-radius: 2rem;
  width: 100%;
  max-width: 580px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-overlay.open .modal-box {
  transform: translateY(0px);
}

.modal-header {
  padding: 2rem 2.5rem 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 1.75rem;
  letter-spacing: -0.01em;
}

.modal-close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--primary-copper);
}

.modal-body {
  padding: 1rem 2.5rem 2.5rem 2.5rem;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer {
  background-color: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 5.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.footer-brand-title img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-copper);
  margin-bottom: 1.75rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary-copper);
  padding-left: 3px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-newsletter p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.newsletter-input-group {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input-group .form-control {
  padding: 0.75rem 1rem;
}

.newsletter-btn {
  background-color: var(--primary-copper);
  color: var(--white);
  border: none;
  padding: 0 1.25rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-btn:hover {
  background-color: var(--dark-copper);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Powered by Coaching Buddy Badge */
.powered-by-cb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-top: 1.5rem;
}

.cb-badge {
  display: inline-flex;
  align-items: center;
  background-color: #FAA000;
  /* Gold/Orange */
  color: #FFFFFF;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  gap: 0.4rem;
  font-weight: 700;
  text-transform: lowercase;
}

.cb-badge .cb-icon {
  background-color: #FFFFFF;
  color: #FAA000;
  font-size: 0.75rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-headings);
  text-transform: lowercase;
}

.cb-badge span strong {
  font-weight: 800;
}

/* ==========================================
   AFTEREXCELLENCE APP SECTION STYLES
   ========================================== */
.after-excellence-header-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-left: 6px solid var(--primary-copper);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  margin: 0 auto 4rem auto;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.after-excellence-header-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 96, 209, 0.2);
  border-left-color: var(--primary-copper);
}

.after-excellence-header-card .chip {
  margin: 0 auto 1.5rem auto;
  display: inline-flex;
}

.after-excellence-header-card h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.after-excellence-header-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
}

.after-excellence {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0;
  background-color: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.after-excellence-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: stretch;
  margin-bottom: 4rem;
}

.after-excellence-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.after-excellence-card {
  padding: 2rem;
  border: 1px solid rgba(0, 96, 209, 0.12);
  display: flex;
  gap: 1.25rem;
  border-radius: 1.5rem;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 96, 209, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.after-excellence-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-copper);
  box-shadow: var(--shadow-md);
}

.after-excellence-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background-color: rgba(0, 96, 209, 0.08);
  color: var(--primary-copper);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.after-excellence-card:hover .after-excellence-card-icon {
  background-color: var(--primary-copper);
  color: var(--white);
  transform: scale(1.05);
}

.after-excellence-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.after-excellence-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  margin-bottom: 0.5rem;
}

.after-excellence-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.after-excellence-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.after-excellence-check-item span {
  color: var(--primary-copper);
  font-size: 1.15rem;
  margin-top: 0.25rem;
}

/* Right Column: WhatsApp Replacement Pane */
.after-excellence-right {
  background: linear-gradient(135deg, var(--primary-copper) 0%, var(--dark-copper) 100%);
  color: var(--white);
  border-radius: 2rem;
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.after-excellence-right-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(20px);
}

.after-excellence-right-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 1.25rem;
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--accent-blue);
  margin-bottom: 2rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.after-excellence-right h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.after-excellence-right p {
  opacity: 0.9;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.after-excellence-whatsapp-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.after-excellence-whatsapp-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.after-excellence-whatsapp-item span.icon {
  color: var(--accent-blue);
  font-size: 1.75rem;
  font-variation-settings: 'FILL' 1;
}

.after-excellence-whatsapp-item span.text {
  font-size: 1.1rem;
  font-weight: 600;
}

.after-excellence-right-footer {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
}

.after-excellence-right-footer p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0;
  line-height: 1.5;
}

/* Why AfterExcellence Row */
.why-after-excellence {
  margin-top: 5rem;
  padding: 4rem;
  background-color: var(--white);
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-after-excellence h3 {
  font-size: clamp(1.25rem, 4.5vw, 2rem);
  white-space: nowrap;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-dark);
}

.why-after-excellence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.why-after-excellence-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.25rem;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.why-after-excellence-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 163, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 163, 255, 0.1);
}

.why-after-excellence-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00d2ff, #3a7bd5, var(--primary-copper));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-after-excellence-item:hover::before {
  opacity: 1;
}

.why-after-excellence-item span.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.15), rgba(212, 122, 67, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  color: #00d2ff;
  font-size: 2rem;
  font-variation-settings: 'FILL' 1;
  flex-shrink: 0;
  margin-top: 0;
  transition: all 0.4s ease;
  box-shadow: inset 0 0 20px rgba(0, 163, 255, 0.1);
}

.why-after-excellence-item:hover span.icon {
  background: linear-gradient(135deg, #00d2ff, var(--primary-copper));
  color: var(--white);
  box-shadow: 0 0 30px rgba(0, 163, 255, 0.3);
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(255, 255, 255, 0.2);
}

.why-after-excellence-item h4 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.why-after-excellence-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================
   TECHNICAL SPECIFICATIONS SECTION STYLES
   ========================================== */
.tech-specs {
  padding: 6.5rem 0;
  background-color: var(--bg-light);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.tech-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.tech-specs-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.tech-specs-highlight-card {
  padding: 1.75rem;
  border: 1px solid rgba(0, 96, 209, 0.12);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-radius: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tech-specs-highlight-card:hover {
  transform: translateX(5px);
  border-color: var(--primary-copper);
  box-shadow: var(--shadow-md);
}

.tech-specs-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 0.75rem;
  background-color: rgba(0, 96, 209, 0.08);
  color: var(--primary-copper);
  flex-shrink: 0;
}

.tech-specs-highlight-card h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.tech-specs-highlight-card p.value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.tech-specs-highlight-card p.subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  margin-top: 0.1rem;
}

/* Right side specifications table grid */
.tech-specs-table-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.tech-specs-table-item {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 0.5rem;
  border-radius: 1rem;
}

.tech-specs-table-item:hover {
  transform: translateY(-2px);
  background-color: rgba(0, 96, 209, 0.02);
}

.tech-specs-table-item-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.tech-specs-table-item-header span {
  color: var(--primary-copper);
  font-size: 1.5rem;
}

.tech-specs-table-item-header span.label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tech-specs-table-item p.value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  padding-left: 2.25rem;
}

/* Sticky mobile CTA button */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background-color: rgba(248, 249, 252, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

/* ==========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================== */

/* Large Tablets & Small Desktops (1024px) */
@media (max-width: 1024px) {
  .nav-brand img {
    height: 70px;
  }

  .nav-brand {
    font-size: 1.55rem;
    gap: 0.75rem;
  }

  .after-excellence-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tech-specs-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  :root {
    --section-padding: 5rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .badge-2 {
    left: -8%;
  }

  .badge-3 {
    right: -8%;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .deep-dive-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .deep-dive-row:nth-child(even) .deep-dive-visual {
    order: 2;
  }

  .deep-dive-row:nth-child(even) .deep-dive-content {
    order: 1;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-frame {
    grid-template-columns: 1fr;
  }

  .contact-info-pane {
    padding: 3rem;
    gap: 2.5rem;
  }

  .contact-form-pane {
    padding: 3rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

/* Tablets Portrait (768px) */
@media (max-width: 768px) {

  .nav-menu,
  .nav-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  /* Option B Mobile Adjustments */
  .hero-glass-panel {
    padding: 2rem;
    border-radius: 1.5rem;
  }

  .hero-option-b .hero-mockup-wrapper {
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg) rotateZ(1deg) scale(1);
  }

  .hero-orb-1 {
    width: 350px;
    height: 350px;
  }

  .hero-orb-2 {
    width: 400px;
    height: 400px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .why-after-excellence-grid {
    grid-template-columns: 1fr;
  }

  .after-excellence-header-card {
    padding: 2.25rem 1.5rem;
    margin-bottom: 2.5rem;
    border-radius: 1.5rem;
  }

  .after-excellence-header-card h2 {
    font-size: 1.75rem;
  }

  .after-excellence-header-card p {
    font-size: 0.95rem;
  }

  .tech-specs-table-card {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sticky-mobile-cta {
    display: block;
  }

  .hero {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .contact {
    padding-bottom: 7rem;
  }

  .footer {
    padding-bottom: 5.5rem;
  }
}

/* Mobile Phones (480px) */
@media (max-width: 480px) {
  .nav-brand img {
    height: 55px;
  }

  .nav-brand {
    font-size: 1.25rem;
    gap: 0.5rem;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .contact-detail-text h4,
  .contact-detail-text a {
    overflow-wrap: anywhere;
    word-break: break-word;
    font-size: 1.1rem;
  }

  html {
    font-size: 15px;
  }

  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-content h1 {
    font-size: 1.85rem;
    word-break: break-word;
  }

  .hero {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  /* Option B Mobile Phones */
  .hero-glass-panel {
    padding: 1.25rem;
  }

  .hero-option-b .hero-mockup-wrapper {
    transform: none;
  }

  .hero-orb-1 {
    width: 250px;
    height: 250px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .floating-badge {
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
    white-space: normal;
    text-align: center;
  }

  .badge-1 {
    left: 0%;
    right: auto;
    top: 5%;
    bottom: auto;
  }

  .badge-2 {
    left: 0%;
    right: auto;
    bottom: 15%;
    top: auto;
  }

  .badge-3 {
    right: 0%;
    left: auto;
    top: 10%;
    bottom: auto;
  }

  .badge-4 {
    right: 0%;
    left: auto;
    bottom: 20%;
    top: auto;
  }

  .cookie-popup-container {
    left: 5%;
    bottom: 1rem;
    max-width: 90%;
  }
}

/* ==========================================
   FEATURE CARD (TAILWIND INSPIRED WHITE CARD)
   ========================================== */
.feature-card {
  --shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0, rgba(60, 64, 67, 0.15) 0 2px 6px 2px;
  width: 100%;
  max-width: 350px;
  margin: 3rem auto 0;
  background-color: var(--white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.25rem 1.5rem 1.5rem;
  position: relative;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card-icon {
  position: relative;
  margin-top: -4.5rem;
  margin-bottom: 1.5rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EAB789, #9C6750);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 16px rgba(156, 103, 80, 0.3);
}

.feature-card-icon .material-symbols-outlined {
  color: white;
  font-size: 2.25rem;
  font-variation-settings: 'FILL' 1;
}

.feature-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #3f3f46;
  text-align: center;
}

.feature-card p {
  font-size: 0.95rem;
  color: #52525b;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================
   INDUSTRIES WE SERVE SECTION (SQUARE CARDS)
   ========================================== */
.industries {
  padding: 5rem 0;
  background-color: #f8f9fa; /* Very light subtle background */
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.industry-item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.industry-item-wrapper .industry-card {
  width: 100%;
  max-width: 380px; /* Prevents cards from growing infinitely on ultra-wide screens */
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  background-color: var(--white);
  border-radius: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02); /* Incredibly subtle depth shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-item-wrapper .industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.industry-item-wrapper .industry-card .icon {
  font-size: 3.5rem;
  color: #0056d2; /* Deep vibrant blue like in the image */
  font-variation-settings: 'FILL' 0, 'wght' 300;
}

.industry-item-wrapper .industry-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ==========================================
   SUCCESS CARD COMPONENT (DARK GLOWING DESIGN)
   ========================================== */
.success-card {
  --white: hsl(0, 0%, 100%);
  --black: hsl(240, 15%, 9%);
  --paragraph: hsl(0, 0%, 83%);
  --line: hsl(240, 9%, 17%);
  --primary: hsl(189, 92%, 58%);

  position: relative;
  isolation: isolate;

  display: flex;
  flex-direction: column;
  gap: 1rem;

  padding: 1.5rem;
  width: 100%;
  height: 100%;
  background-color: hsla(240, 15%, 9%, 1);
  background-image: radial-gradient(
      at 88% 40%,
      hsla(240, 15%, 9%, 1) 0px,
      transparent 85%
    ),
    radial-gradient(at 49% 30%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 14% 26%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 0% 64%, hsl(189, 99%, 26%) 0px, transparent 85%),
    radial-gradient(at 41% 94%, hsl(189, 97%, 36%) 0px, transparent 85%),
    radial-gradient(at 100% 99%, hsl(188, 94%, 13%) 0px, transparent 85%);

  border-radius: 1rem;
  box-shadow: 0px -16px 24px 0px rgba(255, 255, 255, 0.25) inset;
  text-align: left;
}

.success-card .success-card__border {
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: -10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background-image: linear-gradient(
    0deg,
    hsl(0, 0%, 100%) -50%,
    hsl(0, 0%, 40%) 100%
  );
  border-radius: 1rem;
}

.success-card .success-card__border::before {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 200;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background-image: linear-gradient(
    0deg,
    hsla(0, 0%, 100%, 0) 0%,
    hsl(189, 100%, 50%) 40%,
    hsl(189, 100%, 50%) 60%,
    hsla(0, 0%, 40%, 0) 100%
  );
  animation: rot 8s linear infinite;
}

@keyframes rot {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.success-card_title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
}

.success-card_paragraph {
  font-size: 0.95rem;
  color: var(--paragraph);
  line-height: 1.5;
}

  .bento-card {
    padding: 1.5rem;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-pane,
  .contact-form-pane {
    padding: 2rem 1.5rem;
  }

  .after-excellence-check-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   ACTIVE HIGHLIGHTS AND SIDE-DOT NAVIGATION
   ========================================== */

/* Active link in sticky desktop header */
.nav-link.active {
  color: var(--primary-copper) !important;
}

.nav-link.active::after {
  width: 100% !important;
}

/* Active link in mobile slide drawer */
.mobile-drawer-link.active {
  color: var(--primary-copper) !important;
  font-weight: 700 !important;
  padding-left: 0.5rem;
}

/* Floating Side Dot Navigation styling */
.side-dots {
  position: fixed;
  right: 2.25rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  z-index: 998;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  padding: 1.25rem 0.65rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.dot-item {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: rgba(30, 30, 30, 0.25);
  border: 2px solid transparent;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  cursor: pointer;
}

.dot-item::before {
  content: attr(title);
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background-color: var(--text-dark);
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-body);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: var(--shadow-sm);
}

.dot-item:hover {
  background-color: var(--primary-copper);
  transform: scale(1.2);
}

.dot-item:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0px);
}

.dot-item.active {
  background-color: #ffffff;
  border-color: var(--primary-copper);
  transform: scale(1.4);
  box-shadow: 0 0 10px rgba(0, 96, 209, 0.4);
}

/* Hide side dots on tablets and phones */
@media (max-width: 1024px) {
  .side-dots {
    display: none;
  }
}

/* Spinner Rotation Keyframes */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Brand Tagline Styling */
.nav-tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--primary-copper);
  /* Royal brand blue */
  letter-spacing: 0.04em;
  text-transform: lowercase;
  /* Lowercase as in user's image! */
  margin-top: -0.85rem;
  /* Visual hotfix to pull tagline close to cropped logo artwork! */
  transition: all 0.3s ease;
  white-space: nowrap;
}

.green-letter {
  color: #D20064;
  /* Vibrant Logo Rose/Magenta */
  font-weight: 700;
}

.footer-brand-title .nav-tagline {
  color: var(--primary-copper);
  /* Beautiful brand copper in footer */
  margin-top: -0.65rem;
  /* Visual hotfix for footer branding */
}

.navbar.scrolled .nav-tagline {
  font-size: 0.78rem;
  margin-top: -0.55rem;
  /* Proportional negative margin for sticky shrunk logo */
}

/* Responsive adjustments for tagline */
@media (max-width: 1024px) {
  .nav-tagline {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .nav-tagline {
    font-size: 0.72rem;
  }
}