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

:root {
  --primary: #6342E8;
  --primary-hover: #4b2cc8;
  --accent: #D4F435;
  --accent-hover: #c2e22c;
  --bg-color: #F8F9FD;
  --text-dark: #0F0F14;
  --text-gray: #5A5A66;
  --text-light: #FFFFFF;
  --glass-white: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.45);
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 16px 32px rgba(99, 66, 232, 0.08);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.08);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
  /* Grid lines overlay */
  background-image:
    linear-gradient(to right, rgba(99, 66, 232, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(99, 66, 232, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center top;
}

/* Background Abstract Curves */
body::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 66, 232, 0.05) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  top: 60%;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 66, 232, 0.04) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 110;
  padding: 2.5rem 5% 1.5rem 5%;
  transition: var(--transition);
  background: transparent;
}

header.scrolled {
  background: rgba(248, 249, 253, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  padding: 1.5rem 5% 1rem 5%;
}

header.mobile-menu-active {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--primary);
}

.logo-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-gray);
  text-decoration: none;
  position: relative;
  transition: var(--transition);
  padding: 0.5rem 0;
}

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

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

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cta-nav {
  padding: 0.85rem 1.6rem;
  background: var(--primary);
  color: var(--text-light);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-sm);
  line-height: 1.1;
}

.cta-nav-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-nav svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-light);
  transition: var(--transition);
}

.cta-nav:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cta-nav:hover svg {
  transform: translateX(3px);
}

/* Three-dot & Burger Menu */
.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 110;
}

.menu-dot {
  width: 6px;
  height: 6px;
  background-color: var(--text-dark);
  border-radius: 50%;
  transition: var(--transition);
}

.menu-btn:hover .menu-dot {
  background-color: var(--primary);
  transform: scale(1.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 110;
  border: none;
  background: none;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 8% 0 8%; /* bottom padding is 0 to anchor portrait */
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* Background Grid & Decorative Elements */
.hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.decor-curve {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 15%;
  opacity: 0.45;
}

/* Hero Visuals (Left Column) */
.hero-visuals {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: stretch;
  height: 100%;
  width: 100%;
}

.backdrop-circle {
  position: absolute;
  width: 480px;
  height: 480px;
  background: linear-gradient(135deg, #6342E8 0%, #8c6dfd 100%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  left: 5%;
  bottom: 12%;
  filter: blur(2px) drop-shadow(0 15px 30px rgba(99, 66, 232, 0.25));
  animation: floatCircle 10s ease-in-out infinite alternate;
}

.portrait-container {
  position: relative;
  width: 100%;
  height: 84vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
  overflow: visible;
}

.portrait-img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  transition: var(--transition);
  z-index: 2;
  position: relative;
  filter: grayscale(100%) contrast(110%) brightness(95%) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}

.hero-visuals:hover .portrait-img {
  filter: grayscale(0%) contrast(100%) brightness(100%) drop-shadow(0 25px 50px rgba(0, 0, 0, 0.18));
  transform: scale(1.02);
}

/* Floating Elements (Hero Visuals) */
.floating-card {
  position: absolute;
  top: 25%;
  left: -40px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.2rem;
  border-radius: 24px;
  z-index: 10;
  display: flex;
  gap: 1rem;
  width: 260px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.04);
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card .icon-box {
  width: 42px;
  height: 42px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.floating-card .icon-box svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.floating-card .card-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.floating-card .card-info p {
  font-size: 0.75rem;
  color: var(--text-gray);
  line-height: 1.35;
  font-weight: 500;
}

.badge-bottom {
  position: absolute;
  bottom: 8%;
  left: 20px;
  background: transparent;
  color: var(--text-dark);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  animation: floatCard 7s ease-in-out infinite 1s;
}

.badge-star-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--text-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-dark);
  flex-shrink: 0;
}

.badge-star-circle svg {
  width: 12px;
  height: 12px;
  fill: var(--text-dark);
}

/* Hero Content (Right Column) */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 4rem;
}

.accent-tag {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.hero-title span {
  display: block;
}

.hero-bio {
  font-size: 1.15rem;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.2rem;
  width: 100%;
}

.btn {
  padding: 0.8rem 1.6rem 0.8rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-primary .btn-icon {
  background-color: #ffffff;
  color: var(--primary);
}

.btn-secondary .btn-icon {
  background-color: var(--text-dark);
  color: #ffffff;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
  border: none;
  box-shadow: 0 10px 24px rgba(99, 66, 232, 0.25);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(99, 66, 232, 0.35);
}

.btn-primary:hover .btn-icon {
  transform: rotate(45deg);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}

.btn-secondary:hover {
  background: var(--text-dark);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover .btn-icon {
  background-color: #ffffff;
  color: var(--text-dark);
  transform: rotate(45deg);
}

.btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  transition: var(--transition);
}

/* Floating Social Sidebar */
.social-sidebar {
  position: fixed;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.8rem 0.8rem;
  border-radius: 30px;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-dark);
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover {
  background-color: var(--primary);
  color: #ffffff;
  transform: scale(1.1);
}

/* Section Title styling */
.section-header {
  margin-bottom: 4rem;
  max-width: 700px;
}

.section-tag {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-desc {
  color: var(--text-gray);
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* Padding classes */
section {
  padding: 7rem 10% 7rem 10%;
  max-width: 1440px;
  margin: 0 auto;
}

/* About Section */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-left {
  position: relative;
}

.about-experience-badge {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 2.5rem;
  border-radius: 24px;
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge .years {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
}

.about-experience-badge .text {
  font-size: 1rem;
  font-weight: 700;
  max-width: 150px;
  letter-spacing: 0.5px;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-paragraph {
  font-size: 1.15rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Core Expertise */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.expertise-card {
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

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

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99, 66, 232, 0.2);
}

.expertise-card:hover::before {
  transform: scaleX(1);
}

.expertise-icon-box {
  width: 56px;
  height: 56px;
  background-color: rgba(99, 66, 232, 0.08);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.expertise-icon-box svg {
  width: 26px;
  height: 26px;
  fill: var(--primary);
}

.expertise-card:hover .expertise-icon-box {
  background-color: var(--primary);
}

.expertise-card:hover .expertise-icon-box svg {
  fill: var(--text-light);
}

.expertise-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
}

.expertise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.expertise-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-gray);
  font-weight: 550;
}

.expertise-list li svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
}

/* Impact & Achievements Section */
.impact {
  background: var(--text-dark);
  color: var(--text-light);
  border-radius: 32px;
  margin: 2rem 5% 5rem 5%;
  padding: 6rem 8%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.impact::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 66, 232, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.impact .section-tag {
  color: var(--accent);
}

.impact .section-title {
  color: var(--text-light);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.impact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

.impact-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(99, 66, 232, 0.4);
  transform: translateY(-5px);
}

.impact-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}

.impact-icon-box svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
}

.impact-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-light);
}

.impact-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  font-weight: 500;
}

.metrics-bar {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 1.2rem 2.2rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.03);
  max-width: fit-content;
  z-index: 10;
  margin-top: 0.5rem;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.metric-item svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.8;
  flex-shrink: 0;
}

.metric-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metric-val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.metric-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Case Studies */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.case-card {
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 66, 232, 0.1);
  border-color: rgba(99, 66, 232, 0.3);
}

.case-header {
  background: var(--primary);
  color: var(--text-light);
  padding: 1.8rem 2rem;
  position: relative;
  overflow: hidden;
}

.case-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.case-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.case-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}

.case-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(212, 244, 53, 0.15);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(212, 244, 53, 0.3);
}

.case-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 0.2rem;
  line-height: 1.3;
}

.case-content {
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
}

.case-block h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.case-block h4 svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  flex-shrink: 0;
}

.case-block p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.case-results-box {
  background: rgba(99, 66, 232, 0.03);
  border: 1px solid rgba(99, 66, 232, 0.1);
  border-radius: 16px;
  padding: 1.2rem;
  margin-top: auto;
}

.case-results-box h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.case-results-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.case-results-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
}

.case-results-list li svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
}

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

.metric-pill {
  background: var(--text-light);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: var(--transition);
}

.metric-pill:hover {
  border-color: var(--primary);
  background: rgba(99, 66, 232, 0.02);
}

.metric-pill.full-width {
  grid-column: span 2;
}

.metric-val {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 850;
  color: var(--primary);
  line-height: 1;
}

.metric-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-gray);
  line-height: 1.2;
}

/* Collapsible Drawer */
.case-drawer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out, opacity 0.3s ease-out, margin-top 0.3s ease;
  opacity: 0;
  overflow: hidden;
}

.case-drawer.open {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 1rem;
}

.case-drawer-content {
  min-height: 0;
}

.btn-toggle-case {
  background: none;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  margin-top: 0.5rem;
  width: 100%;
}

.btn-toggle-case:hover {
  background: var(--primary);
  color: var(--text-light);
}

.toggle-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.case-card.expanded .toggle-arrow {
  transform: rotate(180deg);
}

/* Tools & Software */
.tools-filter {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 3.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.6rem;
  background: var(--text-light);
  border: 1px solid #E2E8F0;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-gray);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(99, 66, 232, 0.2);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}

.tool-card {
  background: var(--text-light);
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(99, 66, 232, 0.08);
  border-color: rgba(99, 66, 232, 0.25);
}

.tool-card:hover::before {
  opacity: 1;
}

.tool-icon {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(99, 66, 232, 0.04);
  border: 1px solid rgba(99, 66, 232, 0.08);
  border-radius: 16px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.tool-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: all 0.3s ease;
}

.tool-card:hover .tool-icon {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  transform: scale(1.05);
}

.tool-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
}

.tool-category {
  font-size: 0.75rem;
  color: var(--text-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Certifications */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.cert-card {
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.cert-img-box {
  height: 220px;
  width: 100%;
  background-color: #E2E8F0;
  position: relative;
  overflow: hidden;
}

.cert-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.cert-card:hover .cert-img {
  transform: scale(1.05);
}

.cert-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 66, 232, 0.05) 0%, rgba(99, 66, 232, 0.15) 100%);
  color: var(--primary);
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
}

.cert-img-placeholder svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
  opacity: 0.7;
}

.cert-img-placeholder span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cert-info {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cert-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}

.cert-issuer {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cert-issuer svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

/* Testimonials Carousel Styling */
.testimonials-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.testimonial-slide {
  min-width: 33.333%;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

.testimonial-card {
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  height: 100%;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99, 66, 232, 0.2);
}

.quote-icon {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(99, 66, 232, 0.1);
  font-family: serif;
  pointer-events: none;
}

.stars-rating {
  display: flex;
  gap: 0.25rem;
}

.stars-rating svg {
  width: 16px;
  height: 16px;
  fill: #F59E0B;
}

.testimonial-text {
  font-size: 0.98rem;
  color: var(--text-gray);
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-sm);
}

.client-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
}

.client-info p {
  font-size: 0.78rem;
  color: var(--text-gray);
  font-weight: 500;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3.5rem;
  padding: 0 1.25rem;
}

.slider-dots {
  display: flex;
  gap: 0.6rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background-color: var(--primary);
  width: 24px;
  border-radius: 4px;
}

.slider-arrows {
  display: flex;
  gap: 1rem;
}

.slider-arrow {
  width: 46px;
  height: 46px;
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  color: var(--text-dark);
}

.slider-arrow:hover {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

.slider-arrow svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
}

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

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

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

.contact-icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-sm);
  color: var(--primary);
}

.contact-icon-box svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-details h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
}

.contact-details p,
.contact-details a {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--primary);
}

.contact-form-card {
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 3.5rem;
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(99, 66, 232, 0.1);
}

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

.form-submit-btn {
  margin-top: 1rem;
  border: none;
  background: var(--primary);
  color: var(--text-light);
  width: 100%;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(99, 66, 232, 0.2);
}

.form-submit-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(99, 66, 232, 0.3);
}

/* Footer Section */
footer {
  padding: 5rem 10% 8rem 10%;
  border-top: 1px solid rgba(99, 66, 232, 0.08);
  max-width: 1440px;
  margin: 0 auto;
}

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
}

.footer-logo span {
  color: var(--primary);
}

.copyright {
  font-size: 0.88rem;
  color: var(--text-gray);
  font-weight: 500;
}

.footer-nav {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--text-gray);
  font-weight: 600;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--primary);
}

/* Bottom Accent Bar */
.bottom-accent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--accent);
  z-index: 200;
  box-shadow: 0 -4px 10px rgba(212, 244, 53, 0.3);
}

/* Keyframes animations */
@keyframes floatCircle {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Mobile Sidebar Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(248, 249, 253, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 105;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  overflow-y: auto;
  padding: 2rem;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--primary);
  transform: scale(1.1);
}

/* Media Queries for Responsiveness */

/* Large Desktop */
@media (max-width: 1440px) {
  section {
    padding-left: 5%;
    padding-right: 5%;
  }

  footer {
    padding-left: 5%;
    padding-right: 5%;
  }
}

/* Medium Desktop & Laptop */
@media (max-width: 1200px) {
  .hero-grid {
    gap: 2rem;
  }

  .hero-content {
    padding-right: 2rem;
  }

  .portrait-container {
    height: 70vh;
    width: 100%;
  }

  .backdrop-circle {
    width: 380px;
    height: 380px;
    left: 0;
    bottom: 10%;
  }

  .metrics-bar {
    gap: 1.5rem;
    padding: 1rem 1.8rem;
  }

  .expertise-grid {
    gap: 1.5rem;
  }

  .case-studies-grid {
    gap: 1.5rem;
  }

  .cert-grid {
    gap: 1.5rem;
  }

  .testimonial-slide {
    min-width: 50%;
  }
}

/* Tablet Layout */
@media (max-width: 992px) {
  header {
    padding: 1.5rem 5% 1rem 5%;
  }

  header.scrolled {
    padding: 1rem 5% 0.8rem 5%;
  }

  .hero {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-visuals {
    order: 1;
    height: 480px;
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
  }

  .portrait-container {
    width: 100%;
    height: 440px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .backdrop-circle {
    width: 320px;
    height: 320px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 5%;
  }

  .hero-content {
    order: 2;
    align-items: center;
    padding-right: 0;
  }

  .hero-bio {
    max-width: 600px;
  }

  .hero-actions {
    justify-content: center;
  }

  .metrics-bar {
    margin: 2.5rem auto 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
  }

  .floating-card {
    display: none;
  }

  .badge-bottom {
    display: none;
  }

  .decor-curve {
    display: none;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-left {
    display: flex;
    justify-content: center;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .social-sidebar {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .cta-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

/* Small Tablet & Mobile */
@media (max-width: 768px) {
  section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-desc {
    font-size: 0.88rem;
  }

  .hero-visuals {
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .portrait-container {
    width: 100%;
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .backdrop-circle {
    width: 250px;
    height: 250px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 5%;
  }


  .hero-title {
    font-size: 2.4rem;
  }

  .hero-bio {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .btn {
    justify-content: center;
    font-size: 0.88rem;
    padding: 0.9rem 1.6rem;
  }

  .metrics-bar {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
    border-radius: 24px;
    padding: 1.5rem 2rem;
    width: 100%;
    max-width: 340px;
    margin: 2.5rem auto 0 auto;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

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

  .impact-num {
    font-size: 2rem;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .case-content {
    padding: 1.5rem;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-slide {
    min-width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .footer-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  /* Tools filter horizontal scroll on mobile */
  .tools-filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tools-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.65rem 1.2rem;
    font-size: 0.8rem;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
  }

  .tool-card {
    padding: 1.4rem 1rem;
    border-radius: 16px;
  }

  .tool-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .tool-name {
    font-size: 0.82rem;
  }

  .tool-category {
    font-size: 0.68rem;
  }

  .contact-form-card {
    padding: 1.8rem 1.5rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    padding-left: 4%;
    padding-right: 4%;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero {
    padding-top: 5.5rem;
    padding-bottom: 3rem;
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .hero-visuals {
    height: 300px;
  }

  .portrait-container {
    width: 100%;
    height: 260px;
  }

  .backdrop-circle {
    width: 200px;
    height: 200px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 5%;
  }

  .metrics-bar {
    max-width: 290px;
    padding: 1.2rem 1.5rem;
    gap: 1rem;
  }

  .metrics-bar .metric-val {
    font-size: 1.25rem;
  }

  .metrics-bar .metric-label {
    font-size: 0.7rem;
  }

  .metrics-bar .metric-item svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-bio {
    font-size: 0.88rem;
  }

  .accent-tag {
    font-size: 0.75rem;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .impact-card {
    padding: 1.5rem;
  }

  .case-header {
    padding: 1.2rem 1.2rem;
  }

  .case-title {
    font-size: 1.1rem;
  }

  .case-content {
    padding: 1.2rem;
    gap: 1rem;
  }

  .metric-val {
    font-size: 1.3rem;
  }

  .metrics-grid {
    gap: 0.5rem;
  }

  .metric-pill {
    padding: 0.6rem;
  }

  .btn-toggle-case {
    padding: 0.6rem 1rem;
    font-size: 0.78rem;
  }

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

  .tool-card {
    padding: 1.2rem 0.8rem;
    gap: 0.6rem;
  }

  .tool-icon {
    width: 40px;
    height: 40px;
  }

  .tool-icon svg {
    width: 20px;
    height: 20px;
  }

  .tool-name {
    font-size: 0.78rem;
  }

  .tool-category {
    font-size: 0.65rem;
  }

  .contact-form-card {
    padding: 1.5rem 1rem;
  }

  .about-experience-badge {
    padding: 1.5rem;
  }

  .about-experience-badge .years {
    font-size: 3rem;
  }

  .cert-card {
    border-radius: 16px;
  }

  .cert-info {
    padding: 1rem;
  }

  .expertise-card {
    padding: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  footer {
    padding-left: 4%;
    padding-right: 4%;
  }
}

/* Very Small Mobile */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

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

  .tool-card {
    padding: 1rem 0.6rem;
  }

  .tool-name {
    font-size: 0.72rem;
  }

  .metrics-bar {
    padding: 1rem 1.2rem;
    max-width: 260px;
    gap: 0.8rem;
  }

  .metrics-bar .metric-val {
    font-size: 1.15rem;
  }

  .metrics-bar .metric-label {
    font-size: 0.65rem;
  }

  .metrics-bar .metric-item svg {
    width: 20px;
    height: 20px;
  }
}