.container {
  max-width: 1280px;
  padding: 0 2rem;
  margin: auto;
  overflow: hidden;
}

.btn-dark, .btn-light, .btn-main {
  display: inline-block;
  padding: 0.875rem 2.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-size: 0.8125rem;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn-main {
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}
.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.45);
}
.btn-light {
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}
.btn-dark {
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #020617);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.bg-main {
  background: #0ea5e9;
  color: #f1f5f9;
}
.bg-dark {
  background: #0f172a;
  color: #f1f5f9;
}
.bg-light {
  background: #f8fafc;
  color: #1e293b;
}

.lead {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #64748b;
  font-weight: 400;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.py-1 {
  padding: 1.5rem 0;
}
.py-2 {
  padding: 3rem 0;
}
.py-3 {
  padding: 5rem 0;
}
.py-4 {
  padding: 7rem 0;
}

.my-1 {
  margin: 1rem 0;
}
.my-2 {
  margin: 2rem 0;
}
.my-3 {
  margin: 3rem 0;
}
.my-4 {
  margin: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  display: block;
  padding-bottom: 0.75rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: #0f172a;
}

.bottom-line {
  height: 3px;
  width: 4rem;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4);
  display: block;
  margin: 0 auto 1.5rem auto;
  border-radius: 4px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.project-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #0ea5e9;
}
.project-card:hover .project-overlay {
  opacity: 1;
}
.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.9), rgba(6, 182, 212, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-links {
  display: flex;
  gap: 1rem;
}

.project-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.project-link:hover {
  background: #fff;
  color: #0ea5e9;
  transform: scale(1.1);
}

.project-info {
  padding: 1.5rem;
}
.project-info h3 {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.3px;
}
.project-info p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.project-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  background: rgba(14, 165, 233, 0.08);
  color: #0ea5e9;
}

.work-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 2px solid #e2e8f0;
  background: transparent;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  transition: all 0.3s ease;
  font-family: inherit;
}
.filter-btn:hover {
  border-color: #0ea5e9;
  color: #0ea5e9;
}
.filter-btn.active {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  border-color: transparent;
  color: #fff;
}

#work-cta {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#work-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.12) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
#work-cta h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
#work-cta .lead {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}
#work-cta .btn-main {
  position: relative;
  z-index: 1;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: #0f172a;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  line-height: 1.2;
  font-weight: 600;
}

h2, h3, h4 {
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

img {
  width: 100%;
}

.logo-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.logo-text:hover {
  border-color: #0ea5e9;
  color: #0ea5e9;
}

#main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
}
#main-nav ul {
  display: flex;
  align-items: center;
}
#main-nav li {
  padding: 0 1rem;
}
#main-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.75px;
  font-size: 0.8125rem;
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.3s ease;
}
#main-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0ea5e9;
  transition: width 0.3s ease;
}
#main-nav a:hover {
  color: #fff;
}
#main-nav a:hover::after {
  width: 100%;
}
#main-nav a.current {
  color: #fff;
}
#main-nav a.current::after {
  width: 100%;
}

#header-home {
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.92)), url("https://images.pexels.com/photos/546819/pexels-photo-546819.jpeg?auto=compress&cs=tinysrgb&w=1260") no-repeat center/cover;
  min-height: 100vh;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
}
#header-home .container {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#header-home .header-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 4rem;
}
#header-home .header-content .tag {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0ea5e9;
  margin-bottom: 1.5rem;
}
#header-home .header-content h1 {
  font-size: 3.75rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
  max-width: 800px;
}
#header-home .header-content h1 .txt-type {
  background: linear-gradient(120deg, #0ea5e9, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#header-home .header-content h1 .txt-type .cursor {
  -webkit-text-fill-color: #0ea5e9;
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
#header-home .header-content .lead {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  line-height: 1.8;
}
#header-home .header-content .header-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
}
#header-home .header-scroll-indicator {
  text-align: center;
  padding-bottom: 2rem;
}
#header-home .header-scroll-indicator span {
  display: inline-block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
}
#header-inner {
  background: linear-gradient(135deg, #020617, #0f172a);
  height: 5rem;
  border-bottom: 1px solid rgba(14, 165, 233, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}
#header-inner .container {
  height: 100%;
  display: flex;
  align-items: center;
}
#header-inner #main-nav {
  width: 100%;
  padding-top: 0;
}

#home-a .specials {
  margin-top: 3rem;
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
}
#home-a .specials > div {
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}
#home-a .specials > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
#home-a .specials > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(14, 165, 233, 0.2);
}
#home-a .specials > div:hover::before {
  transform: scaleX(1);
}
#home-a .specials > div:hover .fas {
  color: #06b6d4;
  transform: scale(1.1);
}
#home-a .specials .fas {
  color: #0ea5e9;
  padding-bottom: 0.5rem;
  transition: all 0.35s ease;
}
#home-a .specials h3 {
  margin: 1rem 0 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #0f172a;
}
#home-a .specials p {
  line-height: 1.7;
  color: #64748b;
  font-size: 0.9rem;
}
#home-b {
  background: linear-gradient(135deg, #020617, #0f172a);
  position: relative;
}
#home-b .stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
#home-b .stats li {
  line-height: 2;
}
#home-b .stats li.stats-title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
}
#home-b .stats li.stats-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(120deg, #0ea5e9, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Space Grotesk", sans-serif;
}
#home-b .stats div {
  padding: 3rem 0;
  transition: all 0.3s ease;
}
#home-b .stats div:hover {
  transform: scale(1.05);
}
#home-b .stats div:hover .fas {
  color: #06b6d4;
  transform: scale(1.15);
}
#home-b .stats div .fas {
  transition: all 0.3s ease;
  color: #0ea5e9;
}
#home-c {
  background: #f8fafc;
}
#home-c .tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: left;
}
#home-c .tech-category {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
}
#home-c .tech-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(14, 165, 233, 0.2);
}
#home-c .tech-category h3 {
  font-size: 0.9rem;
  color: #0f172a;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#home-c .tech-category h3 .fas {
  color: #0ea5e9;
  font-size: 1rem;
}
#home-c .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#home-c .tech-tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  background: rgba(14, 165, 233, 0.06);
  color: #0f172a;
  border-radius: 6px;
  border: 1px solid rgba(14, 165, 233, 0.12);
  transition: all 0.2s ease;
}
#home-c .tech-tag:hover {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.25);
  color: #0ea5e9;
}
#home-d .process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
  text-align: center;
  margin-top: 2rem;
}
#home-d .process > div {
  transition: all 0.35s ease;
}
#home-d .process > div:hover {
  transform: translateY(-6px);
}
#home-d .process > div:hover .process-icon {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.35);
}
#home-d .process > div:hover .process-icon .fas {
  color: #fff;
}
#home-d .process > div:hover .process-icon .process-step {
  background: #fff;
  color: #0ea5e9;
}
#home-d .process h3 {
  margin: 1.5rem 0 0.75rem;
  font-weight: 600;
  color: #0f172a;
  font-size: 1rem;
}
#home-d .process p {
  line-height: 1.7;
  color: #64748b;
  font-size: 0.9rem;
}
#home-d .process-step {
  position: absolute;
  top: -4px;
  right: -4px;
  font-size: 0.75rem;
  background: #0ea5e9;
  color: #fff;
  border-radius: 50%;
  height: 28px;
  width: 28px;
  line-height: 28px;
  font-weight: 700;
  transition: all 0.3s ease;
  font-family: "Space Grotesk", sans-serif;
}
#home-d .process-icon {
  border-radius: 50%;
  background: #0f172a;
  color: #0ea5e9;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.35s ease;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  font-size: 1.5rem;
}

#about-a .about-info {
  display: grid;
  grid-template-areas: "bioimage bio bio" "aw1 aw2 aw3";
  grid-gap: 1.5rem;
  text-align: left;
}
#about-a .bio-image {
  grid-area: bioimage;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  height: 100%;
}
#about-a .bio {
  grid-area: bio;
  border-left: 3px solid #0ea5e9;
  padding: 1.5rem 2rem;
  background: #f8fafc;
  border-radius: 12px;
}
#about-a .bio h4 {
  color: #0f172a;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}
#about-a .bio p {
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
#about-a .bio p:last-child {
  margin-bottom: 0;
}
#about-a .award-1 {
  grid-area: aw1;
}
#about-a .award-2 {
  grid-area: aw2;
}
#about-a .award-3 {
  grid-area: aw3;
}
#about-a .award-1,
#about-a .award-2,
#about-a .award-3 {
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  text-align: center;
}
#about-a .award-1:hover,
#about-a .award-2:hover,
#about-a .award-3:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(14, 165, 233, 0.2);
}
#about-a .award-1:hover .fas,
#about-a .award-2:hover .fas,
#about-a .award-3:hover .fas {
  color: #06b6d4;
  transform: scale(1.05);
}
#about-a .award-1 .fas,
#about-a .award-2 .fas,
#about-a .award-3 .fas {
  color: #0ea5e9;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}
#about-a .award-1 h3,
#about-a .award-2 h3,
#about-a .award-3 h3 {
  color: #0f172a;
  margin: 0.5rem 0;
  font-size: 1rem;
}
#about-a .award-1 p,
#about-a .award-2 p,
#about-a .award-3 p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.9rem;
}
#about-b {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #fff;
}
#about-b .section-title {
  color: #fff;
}
#about-b .skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}
#about-b .skill-group h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
#about-b .skill-group h4 .fas {
  color: #0ea5e9;
}
#about-b .skill-item {
  margin-bottom: 1.25rem;
}
#about-b .skill-item span {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
#about-b .progress {
  overflow: hidden;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  position: relative;
}
#about-b .progress div {
  height: 100%;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4);
  border-radius: 8px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
#about-b .progress div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: shimmer 2.5s infinite;
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
#about-d {
  background: #f8fafc;
}
#about-d .testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
  justify-items: center;
}
#about-d .testimonials > div {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  text-align: left;
}
#about-d .testimonials > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(14, 165, 233, 0.2);
}
#about-d .testimonials ul {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
}
#about-d .testimonials p {
  line-height: 1.7;
  color: #64748b;
  font-size: 0.9rem;
  font-style: italic;
}
#about-d .testimonials img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.75rem;
  object-fit: cover;
  border: 2px solid rgba(14, 165, 233, 0.2);
}
#about-d .testimonials li:last-child {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.8125rem;
}

#contact-a .text-fields {
  display: grid;
  grid-template-areas: "name email" "subject phone" "message message";
  grid-gap: 1rem;
  margin-bottom: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
#contact-a .text-fields .name-input {
  grid-area: name;
}
#contact-a .text-fields .subject-input {
  grid-area: subject;
}
#contact-a .text-fields .email-input {
  grid-area: email;
}
#contact-a .text-fields .phone-input {
  grid-area: phone;
}
#contact-a .text-fields .message-input {
  grid-area: message;
  height: 160px;
  resize: vertical;
}
#contact-a .text-fields .text-input {
  padding: 0.875rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  background: #fff;
  color: #0f172a;
}
#contact-a .text-fields .text-input:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.08);
}
#contact-a .text-fields .text-input::placeholder {
  color: #64748b;
  opacity: 0.6;
}
#contact-a button[type=submit] {
  display: block;
  margin: 0 auto;
}
#contact-b {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #fff;
}
#contact-b .contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 2rem;
}
#contact-b .contact-info > div {
  padding: 2rem 1rem;
  transition: all 0.3s ease;
  border-radius: 12px;
}
#contact-b .contact-info > div:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}
#contact-b .contact-info > div:hover .fas {
  color: #06b6d4;
  transform: scale(1.1);
}
#contact-b .contact-info > div .fas {
  color: #0ea5e9;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
#contact-b .contact-info > div h3 {
  color: #fff;
  margin: 0.75rem 0 0.5rem;
  font-size: 1.1rem;
}
#contact-b .contact-info > div p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
#contact-c {
  background: #f8fafc;
}
#contact-c h2 {
  font-size: 2.25rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}
#contact-c .lead {
  color: #64748b;
}

#main-footer {
  background: #020617;
  color: #fff;
  height: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
#main-footer .footer-content {
  display: flex;
  justify-content: space-between;
  height: 5rem;
  align-items: center;
}
#main-footer .footer-content p {
  font-weight: 400;
  opacity: 0.5;
  font-size: 0.8125rem;
}
#main-footer .footer-content .social {
  display: flex;
  gap: 0.5rem;
}
#main-footer .footer-content .social a {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
#main-footer .footer-content .social a:hover {
  color: #fff;
  border-color: #0ea5e9;
  background: rgba(14, 165, 233, 0.1);
  transform: translateY(-2px);
}

.experience-timeline {
  max-width: 900px;
  margin: 2rem auto 0;
  text-align: left;
}

.exp-item {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.exp-item:last-child {
  border-bottom: none;
}
.exp-item .exp-date {
  min-width: 140px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0ea5e9;
  padding-top: 0.25rem;
}
.exp-item .exp-content {
  flex: 1;
}
.exp-item .exp-content h3 {
  font-size: 1.15rem;
  color: #0f172a;
  margin-bottom: 0.25rem;
  text-transform: none;
}
.exp-item .exp-content .exp-company {
  font-weight: 600;
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.exp-item .exp-content p {
  color: #64748b;
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.exp-item .exp-content .exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.exp-item .exp-content .exp-tags span {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  background: rgba(14, 165, 233, 0.08);
  color: #0ea5e9;
  border-radius: 4px;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.edu-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.edu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.edu-item h3 {
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 0.25rem;
  text-transform: none;
}
.edu-item .edu-degree {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.25rem;
}
.edu-item .edu-year {
  font-size: 0.8125rem;
  color: #0ea5e9;
  font-weight: 600;
}

#about-c {
  background: #f8fafc;
}
#about-c .about-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
#about-c .about-logos img {
  width: auto;
  max-height: 50px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
#about-c .about-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
#about-c .about-logos .tech-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  transition: all 0.3s ease;
  color: #0f172a;
}
#about-c .about-logos .tech-logo i {
  font-size: 2.5rem;
}
#about-c .about-logos .tech-logo span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#about-c .about-logos .tech-logo:hover {
  opacity: 1;
  color: #0ea5e9;
}

@media (max-width: 1024px) {
  #home-a .specials,
  #home-c .tech-grid,
  #home-d .process {
    grid-template-columns: repeat(2, 1fr);
  }
  #home-b .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #about-d .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
  .experience-timeline .exp-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  #about-b .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  #header-home .header-content h1 {
    font-size: 2.5rem;
  }
  #header-home .header-content .header-btns {
    flex-direction: column;
    width: 100%;
  }
  #header-home .header-content .header-btns a {
    width: 100%;
    text-align: center;
  }
  #home-a .specials,
  #home-c .tech-grid,
  #home-d .process,
  #about-d .testimonials,
  #contact-b .contact-info {
    grid-template-columns: 1fr;
  }
  #home-b .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  #home-b .stats div {
    padding: 2rem 0;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  #about-a .about-info {
    grid-template-areas: "bioimage" "bio" "aw1" "aw2" "aw3";
  }
  #about-b .skills-grid {
    grid-template-columns: 1fr;
  }
  #contact-a .text-fields {
    grid-template-areas: "name" "email" "subject" "phone" "message";
  }
}
@media (max-width: 500px) {
  #main-nav ul {
    gap: 0;
  }
  #main-nav li {
    padding: 0 0.5rem;
  }
  #main-nav a {
    font-size: 0.7rem !important;
  }
  #header-home .header-content {
    padding: 0 1rem;
  }
  #header-home .header-content h1 {
    font-size: 2rem;
  }
  #header-home .header-content .tag {
    font-size: 0.7rem;
  }
  #header-home .header-content .lead {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .container {
    padding: 0 1rem;
  }
  .py-3 {
    padding: 3rem 0;
  }
  #home-b .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  #work-cta h2 {
    font-size: 1.75rem;
  }
  #contact-c h2 {
    font-size: 1.5rem;
  }
  #main-footer {
    height: auto;
  }
  #main-footer .footer-content {
    flex-direction: column;
    padding: 1.5rem 0;
    height: auto;
    gap: 0.75rem;
  }
}
