:root {
  --bg-primary: #F2F3F4;
  /* Light Gray - User Request */
  --bg-secondary: #FFFFFF;
  /* White Cards */
  --text-primary: #1E293B;
  /* Slate 800 - Dark Text */
  --text-secondary: #475569;
  /* Slate 600 - Medium Gray */
  --accent-primary: #246bcf;
  /* Strong Blue - Heading/Accents */
  --accent-glow: rgba(0, 185, 252, 0.2);
  --cta-color: #00b9fc;
  /* Cyan - Buttons */
  --shadow-color: rgba(0, 0, 0, 0.1);
  /* Soft shadow for light theme */
  --highlight-gold: #ffd301;
  /* Yellow */

  --max-width: 1200px;
  --nav-height: 80px;
  --font-main: 'Outfit', sans-serif;
  --transition: all 0.3s ease;
}

/* Testimonials */
.testimonial-section {
  overflow: hidden;
  /* Hide scrollbar */
  padding: 2rem 0;
  position: relative;
}

.marquee-container {
  display: flex;
  overflow: hidden;
  gap: 2rem;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  /* Fade edges */
}

.marquee-content {
  display: flex;
  gap: 2rem;
  animation: scroll 20s linear infinite;
  min-width: 100%;
  /* Ensure content fills width */
}

/* Pause animation on hover */
.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

.testimonial-card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--shadow-color);
  flex-shrink: 0;
}

.marquee-content .testimonial-card {
  min-width: 300px;
  /* Fixed width for scrolling */
  max-width: 300px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* Move by half the width (original content) */
  }
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

section {
  padding: 5rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  flex: 1;
  /* Pushes footer down */
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  color: var(--text-primary);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  color: var(--accent-primary);
}

h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--cta-color);
  border-radius: 2px;
}

p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Helper Classes */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--cta-color);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 2px solid var(--cta-color);
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--shadow-color);
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 var(--shadow-color);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
  box-shadow: 0 0 15px var(--accent-glow);
}

.highlight {
  color: var(--accent-primary);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  padding: 0 1.5rem;
  background: rgba(242, 243, 244, 0.95);
  /* Matches bg-primary */
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--shadow-color);
  display: flex;
  justify-content: center;
}

/* Navigation */
.nav-container {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-primary);
  z-index: 10;
}

.logo span {
  color: var(--cta-color);
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  margin-right: 2rem;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  font-size: 1.2rem;
}

/* About Layout */
.about-layout {
  display: flex;
  align-items: center;
  /* Vertically center */
  gap: 4rem;
  /* Increased gap */
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 0 0 320px;
  /* Increased container width */
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-primary);
  box-shadow: 10px 10px 0 var(--shadow-color);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-layout {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
  }

}

/* Timeline Component */
.timeline-section {
  margin-top: 5rem;
  text-align: center;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.timeline-card {
  padding: 2.5rem;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: none;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.timeline-title {
  color: var(--accent-primary);
  font-size: 1.2rem;
  margin: 0;
}

/* Tech Stack Component */
.tech-stack-card {
  padding: 3rem;
  border-radius: 20px;
}

.tech-stack-header {
  color: var(--accent-primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tech-list {
  list-style: none;
  color: var(--text-secondary);
}

.tech-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.tech-dot {
  width: 6px;
  height: 6px;
  background: var(--text-secondary);
  border-radius: 50%;
  display: inline-block;
}

/* Services Page Extra */
.work-grid-responsive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.work-card-full {
  text-align: left;
  height: 100%;
}

.work-content-full {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon-header {
  color: var(--accent-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list-item {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}


.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-primary);
}

.nav-links a.active:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--cta-color);
}

.hero-socials {
  display: flex;
  gap: 1.5rem;
}

.hero-socials a {
  color: var(--text-secondary);
  font-size: 1.8rem;
  transition: var(--transition);
}

.hero-socials a:hover {
  color: var(--accent-primary);
  transform: translateY(-3px);
}

/* Nav Visibility Utilities */
.mobile-contact {
  display: none;
}

.desktop-contact {
  display: inline-block;
  z-index: 10;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--accent-primary);
  z-index: 11;
  /* Ensure above everything on mobile */
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--shadow-color);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease-in-out;
    transform: none;
    margin: 0;
    /* Reset desktop centering */
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .mobile-contact {
    display: block;
    /* Show inside drawer */
  }

  .desktop-contact {
    display: none;
    /* Hide top button */
  }

  .menu-toggle {
    display: block;
  }

  /* Hero Section Mobile */
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    justify-content: center;
  }
}

/* Hero Section Global */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--nav-height);
  position: relative;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
  animation: fadeUp 1s ease forwards;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  animation: fadeUp 1s ease 0.3s forwards;
}

.profile-img-wrapper {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--accent-primary);
  box-shadow: 20px 20px 0 var(--shadow-color);
  position: relative;
  z-index: 2;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: var(--accent-glow);
  filter: blur(80px);
  opacity: 0.2;
  z-index: 1;
  border-radius: 50%;
}

/* About/Page Content */
.page-content {
  padding-top: calc(var(--nav-height) + 2rem);
}

.content-card {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--shadow-color);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: var(--bg-primary);
  border-radius: 10px;
  border: 1px solid var(--shadow-color);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--cta-color);
  display: block;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

.skill-card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--shadow-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-primary);
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.skill-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  color: var(--accent-primary);
}

.service-icon-header i {
  font-size: 1.8rem;
  margin-right: 0.8rem;
  color: var(--cta-color);
  vertical-align: middle;
}

/* Work/Services Grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.work-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--shadow-color);
  transition: var(--transition);
}

.work-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
}

.work-image {
  height: 200px;
  background: var(--bg-primary);
  /* Placeholder color */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 3.5rem;
}

.work-content {
  padding: 2rem;
}

.work-content h3 {
  font-size: 1.5rem;
  color: var(--accent-primary);
}

/* Contact/Forms */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 10px;
  border: 1px solid var(--shadow-color);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--cta-color);
  background: var(--bg-primary);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
}

.social-btn:hover {
  background: var(--cta-color);
  border-color: var(--cta-color);
  color: white;
  transform: rotate(360deg);
}

/* Contact Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.contact__input {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  background: #f0f2f5;
  /* Light gray background matching image */
  border: 1px solid var(--shadow-color);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.contact__input:focus {
  border-color: var(--cta-color);
  box-shadow: 0 0 10px var(--accent-glow);
}

textarea.contact__input {
  resize: vertical;
  min-height: 120px;
}

.contact__button {
  cursor: pointer;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  border: 2px solid var(--cta-color);
  width: 100%;
}

.contact__button:hover {
  background: transparent;
  color: var(--cta-color);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-secondary);
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid var(--shadow-color);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--cta-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-secondary);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  /* Approximate max height */
  padding-bottom: 1.5rem;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

/* Blog Grid */
.blog-card {
  background: var(--bg-secondary);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--shadow-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
}

.blog-image {
  height: 200px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--accent-primary);
}

.blog-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.9rem;
  color: var(--cta-color);
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.blog-excerpt {
  flex: 1;
  margin-bottom: 1.5rem;
}

/* Footer Grid Layout */
footer {
  background: var(--bg-secondary);
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  /* Subtle border */
  margin-top: 4rem;
  text-align: left;
  color: var(--text-secondary);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-brand h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  margin-bottom: 0.5rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.8rem;
}

.footer-nav a {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--accent-primary);
}

.footer-social-column {
  display: flex;
  justify-content: flex-end;
}

.social-links-footer {
  display: flex;
  gap: 1rem;
}

.social-btn-footer {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-btn-footer:hover {
  background: var(--accent-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(36, 107, 207, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Utilities & Components extracted from Inline Styles */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-05 {
  margin-bottom: 0.5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-15 {
  margin-bottom: 1.5rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-05 {
  margin-left: 0.5rem;
}

/* Logo Sizing */
.logo img,
.footer-brand img {
  height: 50px;
}

/* Hero & Headings */
.text-accent {
  color: var(--accent-primary);
}

.hero-cta {
  margin-top: 2rem;
}

/* Testimonial specific overrides */
.testimonial-card .stars {
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.client-info h4 {
  margin-bottom: 0;
}

.client-info span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Footer specific */
.footer-brand a {
  display: inline-block;
  margin-bottom: 1rem;
}

/* Contact Page Specifics */
.contact-hero-text {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-hero-title {
  font-size: 3rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.contact-hero-desc {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.contact-form-container {
  padding: 2.5rem;
  background: var(--bg-primary);
}

.contact-info-header {
  margin-bottom: 3rem;
}

.contact-info-link {
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-green {
  color: #25D366;
}

.calendly-blue {
  color: #2563eb;
}

.social-links-gap {
  gap: 1rem;
}

/* Services Page Specifics */
.services-hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.services-hero-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
}

.service-outcome-box {
  background: var(--bg-primary);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--cta-color);
}

.cta-button-large {
  background-color: #2563eb;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

/* Work Page Specifics */
.case-study-card {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.case-study-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid #3b82f6;
  color: #3b82f6;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.case-study-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 1.5rem;
  text-align: left;
  border: none;
}

.case-study-result-box {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  height: fit-content;
}

.case-study-stat-large {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
}

/* About Page Specifics */
.about-year {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-secondary);
  /* Changed from #F2F3F4 to visible color */
  opacity: 0.3;
  /* Subtle but visible */
}

/* Timeline grid fix - Ensure columns work */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}

/* Ensure content cards inside timeline don't overflow or stretch weirdly */
.timeline-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Services Grid Fix */
.work-grid-responsive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
}



@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-social-column {
    justify-content: flex-start;
  }

  .footer-brand h3 {
    font-size: 1.5rem;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page Specific Overrides/Helpers */
/* Add any additional global responsive reset if needed explicitly here */

/* Case Study Card Animation */
.case-study-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
  /* Use !important to override the inline style box-shadow */
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}


/* Utility Classes */
.text-size-2-5rem {
  font-size: 2.5rem;
}

.text-size-1-1rem {
  font-size: 1.1rem;
}

/* Mobile Grid Overrides */
@media (max-width: 768px) {

  .skills-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA Card */
.cta-card {
  border: 1px solid var(--accent-primary);
  text-align: center;
  background: var(--bg-secondary);
  margin-top: 4rem;
}