/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8f9fa;
  color: #222;
  line-height: 1.6;
}
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2d6cdf;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #2d6cdf;
}
.hero {
  background: linear-gradient(120deg, #e3f0ff 0%, #f8f9fa 100%);
  padding: 4rem 2rem 2rem 2rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 2.5rem;
}
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 320px;
}
.hero-left h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222;
}
.highlight {
  color: #6c47ff;
  background: linear-gradient(90deg, #6c47ff 40%, #2d6cdf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.typed-container {
  font-size: 2rem;
  font-weight: 600;
  color: #6c47ff;
  margin-bottom: 1rem;
  min-height: 2.2rem;
  display: flex;
  align-items: center;
}
.typed-cursor {
  color: #6c47ff;
  font-weight: 400;
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero-desc {
  color: #444;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.btn-primary {
  background: linear-gradient(90deg, #6c47ff 40%, #2d6cdf 100%);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 8px rgba(44,108,223,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #2d6cdf 40%, #6c47ff 100%);
  box-shadow: 0 4px 16px rgba(44,108,223,0.18);
}
.btn-outline {
  background: #fff;
  color: #6c47ff;
  border: 2px solid #6c47ff;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: #f3f0ff;
  color: #2d6cdf;
}
.hero-socials {
  display: flex;
  gap: 1rem;
}
.hero-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(44,108,223,0.10);
  color: #6c47ff;
  font-size: 1.3rem;
  transition: background 0.2s, color 0.2s;
  border: none;
}
.hero-socials a:hover {
  background: #e3f0ff;
  color: #2d6cdf;
}
/* Placeholder icons */
.icon-github::before { content: '\f09b'; font-family: 'FontAwesome'; }
.icon-linkedin::before { content: '\f0e1'; font-family: 'FontAwesome'; }
.icon-mail::before { content: '\f0e0'; font-family: 'FontAwesome'; }
.icon-phone::before { content: '\f095'; font-family: 'FontAwesome'; }

.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  position: relative;
}
.hero-circle {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  position: relative;
  top: 35%;
  left: 20%;
  width: 500px;
  height: 700px;
  /* transform: translate(-50%, -50%);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(44,108,223,0.10);
  z-index: 2; */
}

/* Responsive image sizing */
/* @media (min-width: 480px) {
  .hero-img {
    width: 240px;
    height: 240px;
  }
} */

/* @media (min-width: 768px) {
  .hero-img {
    width: 280px;
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .hero-img {
    width: 320px;
    height: 320px;
  }
}

@media (min-width: 1200px) {
  .hero-img {
    width: 400px;
    height: 400px;
  }
}

@media (min-width: 1400px) {
  .hero-img {
    width: 400px;
    height: 400px;
  }
} */

.hero-emoji {
  font-size: 3.5rem;
  z-index: 2;
}
.tag {
  position: absolute;
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  background: #fff;
  box-shadow: 0 2px 8px rgba(44,108,223,0.10);
  color: #6c47ff;
  border: none;
  z-index: 1;
  white-space: nowrap;
}
.tag-java { color: #6c47ff; }
.tag-spring { color: #2ecc40; }
.tag-hibernate { color: #7d5fff; }
.tag-dotnet { color: #2980b9; }
.tag-microservices { color: #00bcd4; }
.tag-mysql { color: #ff9800; }
.tag-mvc { color: #e74c3c; }

/* Download CV button in navbar */
.btn-cv {
  background: linear-gradient(90deg, #6c47ff 40%, #2d6cdf 100%);
  color: #fff;
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 1.5rem;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(44,108,223,0.10);
  border: none;
}
.btn-cv:hover {
  background: linear-gradient(90deg, #2d6cdf 40%, #6c47ff 100%);
  box-shadow: 0 4px 16px rgba(44,108,223,0.18);
}

@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .hero-left, .hero-right {
    min-width: 0;
    width: 100%;
    align-items: center;
  }
  .hero-left {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .hero-circle {
    width: 240px;
    height: 240px;
  }
  .hero-img {
    width: 180px;
    height: 180px;
  }
  .hero-left h1 {
    font-size: 2rem;
  }
  .typed-container {
    font-size: 1.2rem;
  }
}
.skills {
  background: #f8f9fa;
  padding: 4rem 2rem;
}
.skills h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  color: #222;
  font-size: 2.2rem;
}
.skills .highlight {
  color: #8e44ec;
  background: linear-gradient(90deg, #8e44ec 40%, #2d6cdf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.skills-subtitle {
  text-align: center;
  color: #888;
  font-size: 1.08rem;
  margin-bottom: 2.5rem;
}
.skills-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.skills-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(44,108,223,0.08);
  padding: 2rem 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.skills-card-header {
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.skills-card-header .icon-code { color: #d726ff; }
.skills-card-header .icon-tools { color: #2962ff; }
.skills-card-header .icon-db { color: #27ae60; }
.skills-card-header.magenta { color: #d726ff; }
.skills-card-header.blue { color: #2962ff; }
.skills-card-header.green { color: #27ae60; }
.skills-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2.5rem;
}
.skills-list-col {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.skill-bar {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 1rem;
}
.skill-bar span:first-child {
  font-weight: 500;
  color: #222;
}
.skill-bar span:last-child {
  font-weight: 600;
  color: #888;
  float: right;
  margin-left: auto;
  font-size: 0.98rem;
}
.bar {
  height: 7px;
  border-radius: 6px;
  margin-top: 0.2rem;
  background: #eee;
  position: relative;
  transition: width 0.7s cubic-bezier(.4,2,.6,1);
}
.bar.magenta { background: linear-gradient(90deg, #d726ff 0%, #ff70a6 100%); }
.bar.blue { background: linear-gradient(90deg, #2962ff 0%, #00c6fb 100%); }
.bar.green { background: linear-gradient(90deg, #27ae60 0%, #a8eb12 100%); }

/* Placeholder icons for skills cards */
.icon-code::before { content: '\3C\/\3E'; font-size: 1.3em; display: inline-block; }
.icon-tools::before { content: '\2699'; font-size: 1.3em; display: inline-block; }
.icon-db::before { content: '\1F4BE'; font-size: 1.3em; display: inline-block; }

@media (max-width: 900px) {
  .skills-cards {
    max-width: 100%;
  }
  .skills-card {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
}
@media (max-width: 700px) {
  .skills-list-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem 0;
  }
}
.projects {
  background: #f8f9fa;
  padding: 4rem 2rem;
}
.projects h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  color: #222;
  font-size: 2.2rem;
}
.projects .highlight {
  color: #6c47ff;
  background: linear-gradient(90deg, #6c47ff 40%, #2d6cdf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.projects-subtitle {
  text-align: center;
  color: #888;
  font-size: 1.08rem;
  margin-bottom: 2.2rem;
}
.projects-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: #f3f0ff;
  color: #6c47ff;
  border: none;
  border-radius: 20px;
  padding: 0.5rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(90deg, #6c47ff 40%, #2d6cdf 100%);
  color: #fff;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.project-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(44,108,223,0.08);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  min-height: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.project-card:hover {
  box-shadow: 0 6px 32px rgba(44,108,223,0.13);
  transform: translateY(-4px) scale(1.03);
}
.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}
.project-icon {
  font-size: 2.1rem;
  background: #f3f0ff;
  border-radius: 12px;
  padding: 0.5rem 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-target::before { content: '\1F3AF'; }
.icon-gov::before { content: '\1F3DB'; }
.icon-cart::before { content: '\1F6D2'; }
.icon-users::before { content: '\1F465'; }
.icon-calc::before { content: '\1F5A9'; }
.icon-covid::before { content: '\1F637'; }
.icon-plane::before { content: '\2708'; }
.icon-grad::before { content: '\1F393'; }
.icon-hammer::before { content: '\1F528'; }
.icon-tablet::before { content: '\1F4F1'; }

.project-status {
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 0.2rem 0.9rem;
  margin-left: 0.7rem;
  background: #eafaf1;
  color: #27ae60;
}
.project-status.completed {
  background: #eafaf1;
  color: #27ae60;
}
.project-status.inprogress {
  background: #fff7e6;
  color: #f39c12;
}
.project-type {
  font-size: 1.02rem;
  color: #888;
  margin-bottom: 0.2rem;
}
.project-tags {
  margin: 0.5rem 0 0.7rem 0;
}
.project-tags span {
  background: #f3f0ff;
  color: #6c47ff;
  border-radius: 12px;
  padding: 0.2rem 0.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  margin-right: 0.4rem;
}
.project-github {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #f3f0ff;
  border-radius: 50%;
  color: #6c47ff;
  font-size: 1.3rem;
  margin-top: 0.5rem;
  margin-left: 0;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(44,108,223,0.10);
  border: none;
  text-decoration: none;
}
.project-github:hover {
  background: linear-gradient(90deg, #6c47ff 40%, #2d6cdf 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(44,108,223,0.18);
}
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.projects-view-more {
  text-align: center;
  margin-top: 3rem;
}

.btn-view-more {
  background: linear-gradient(90deg, #6c47ff 40%, #2d6cdf 100%);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 8px rgba(44,108,223,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  display: inline-block;
  font-size: 1.1rem;
}

.btn-view-more:hover {
  background: linear-gradient(90deg, #2d6cdf 40%, #6c47ff 100%);
  box-shadow: 0 4px 16px rgba(44,108,223,0.18);
  transform: translateY(-2px);
}
.contact {
  background: #fff;
  padding: 4rem 2rem 2rem 2rem;
}
.contact h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  color: #222;
  font-size: 2.2rem;
}
.contact .highlight {
  color: #6c47ff;
  background: linear-gradient(90deg, #6c47ff 40%, #2d6cdf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-subtitle {
  text-align: center;
  color: #888;
  font-size: 1.08rem;
  margin-bottom: 2.5rem;
}
.contact-container {
  display: flex;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
  align-items: flex-start;
  justify-content: center;
}
.contact-left, .contact-right {
  flex: 1;
  min-width: 280px;
  background: #f8f9fa;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44,108,223,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}
.contact-left {
  margin-right: 0.5rem;
}
.contact-right {
  margin-left: 0.5rem;
}
.contact-left h3, .contact-right h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #222;
}
.contact-cards {
  margin: 1.2rem 0 1.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(44,108,223,0.06);
  padding: 0.7rem 1rem;
  font-size: 1rem;
  color: #333;
}
.contact-card .icon-mail { color: #e74c3c; }
.contact-card .icon-phone { color: #27ae60; }
.contact-card .icon-location { color: #2962ff; }
.contact-detail {
  margin-left: auto;
  font-weight: 600;
  color: #555;
}
.contact-socials {
  margin-top: 1.2rem;
  display: flex;
  gap: 1rem;
}
.contact-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(44,108,223,0.10);
  color: #6c47ff;
  font-size: 1.2rem;
  transition: background 0.2s, color 0.2s;
  border: none;
}
.contact-socials a:hover {
  background: #e3f0ff;
  color: #2d6cdf;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input, .contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  resize: none;
  background: #fff;
}
.contact-form textarea {
  min-height: 90px;
}
.btn-contact {
  background: linear-gradient(90deg, #6c47ff 40%, #2d6cdf 100%);
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-contact:hover {
  background: linear-gradient(90deg, #2d6cdf 40%, #6c47ff 100%);
}
.contact-callout {
  background: linear-gradient(90deg, #6c47ff 40%, #2d6cdf 100%);
  border-radius: 14px;
  max-width: 600px;
  margin: 2.5rem auto 0 auto;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 2px 16px rgba(44,108,223,0.10);
}
.contact-callout strong {
  font-size: 1.13rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.7rem;
}
.contact-callout p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.btn-callout {
  background: #fff;
  color: #6c47ff;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.7rem 2.2rem;
  text-decoration: none;
  font-size: 1.05rem;
  transition: background 0.2s, color 0.2s;
  border: none;
  box-shadow: 0 2px 8px rgba(44,108,223,0.10);
}
.btn-callout:hover {
  background: #f3f0ff;
  color: #2d6cdf;
}
/* Placeholder icons for contact */
.icon-mail::before { content: '\2709'; }
.icon-phone::before { content: '\260E'; }
.icon-location::before { content: '\1F4CD'; }

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact-left, .contact-right {
    margin: 0;
  }
}

/* FOOTER NEW DESIGN */
footer {
  background: #101624;
  color: #fff;
  padding: 0;
  margin-top: 0;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem 2rem;
  gap: 2.5rem;
}
.footer-about {
  flex: 1.5;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #6c47ff;
  margin-bottom: 0.7rem;
}
.footer-about p {
  color: #d1d5db;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #232b3e;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
  border: none;
}
.footer-socials a:hover {
  background: #6c47ff;
  color: #fff;
}
.footer-links, .footer-services {
  flex: 1;
}
.footer-links h4, .footer-services h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #fff;
}
.footer-links ul, .footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li, .footer-services ul li {
  margin-bottom: 0.5rem;
}
.footer-links ul li a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 1.01rem;
  transition: color 0.2s;
}
.footer-links ul li a:hover {
  color: #6c47ff;
}
.footer-services ul li {
  color: #d1d5db;
  font-size: 1.01rem;
}
.footer-bottom {
  border-top: 1px solid #232b3e;
  text-align: center;
  padding: 1.2rem 2rem 1.2rem 2rem;
  color: #d1d5db;
  font-size: 0.98rem;
  background: #101624;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-made {
  color: #6c47ff;
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem 1.5rem 1rem;
  }
}

/* ABOUT ME SECTION */
.about {
  background: #fff;
  padding: 4rem 2rem 2rem 2rem;
}
.about-container {
  display: flex;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
}
.about-left {
  flex: 1.2;
  min-width: 320px;
}
.about-left h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #111;
  letter-spacing: -1px;
}
.about-left .highlight {
  color: #6c47ff;
  background: linear-gradient(90deg, #6c47ff 40%, #2d6cdf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-bio p {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.about-education {
  margin-top: 1.5rem;
}
.about-education h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #222;
}
.edu-card {
  background: #f8f9fa;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44,108,223,0.07);
  padding: 1.2rem 1.5rem;
  font-size: 1.08rem;
  color: #222;
  font-weight: 500;
}
.about-right {
  flex: 1.5;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.about-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(44,108,223,0.08);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  min-height: 170px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.about-card:hover {
  box-shadow: 0 6px 32px rgba(44,108,223,0.13);
  transform: translateY(-4px) scale(1.03);
}
.about-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-icon.gold { color: #ffc107; }
.about-icon.purple { color: #a259ff; }
.about-icon.blue { color: #2d6cdf; }
.about-icon.green { color: #27ae60; }
.about-title {
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #222;
}
.about-desc {
  font-size: 1rem;
  color: #555;
}
/* Placeholder icons for about cards */
.icon-trophy::before { content: '\1F3C6'; }
.icon-award::before { content: '\1F396'; }
.icon-leader::before { content: '\1F464'; }
.icon-grad::before { content: '\1F393'; }

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
  }
  .about-right {
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-left h2 {
    font-size: 1.5rem;
  }
}

/* ABOUT STATS SECTION */
.about-stats {
  background: #fff;
  padding: 2.5rem 0 2.5rem 0;
}
.stats-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}
.stat-purple { color: #8e44ec; }
.stat-blue { color: #2962ff; }
.stat-green { color: #27ae60; }
.stat-gold { color: #f39c12; }
.stat-label {
  font-size: 1.05rem;
  color: #555;
  margin-top: 0.2rem;
  text-align: center;
}
@media (max-width: 800px) {
  .stats-container {
    gap: 2rem;
  }
  .stat {
    min-width: 100px;
  }
}
@media (max-width: 500px) {
  .stats-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .stat-number {
    font-size: 1.5rem;
  }
}

/* SERVICES SECTION NEW DESIGN */
.services {
  background: #f8f9fa;
  padding: 4rem 2rem 3rem 2rem;
}
.services h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  color: #222;
  font-size: 2.2rem;
}
.services .highlight {
  color: #a259ff;
  background: linear-gradient(90deg, #a259ff 40%, #2d6cdf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.services-subtitle {
  text-align: center;
  color: #888;
  font-size: 1.08rem;
  margin-bottom: 2.5rem;
}
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem auto;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(44,108,223,0.08);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 270px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 6px 32px rgba(44,108,223,0.13);
  transform: translateY(-4px) scale(1.03);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 0.7rem;
}
.service-card.purple .service-icon { background: #f3f0ff; color: #a259ff; }
.service-card.blue .service-icon { background: #e3f0ff; color: #2962ff; }
.service-card.green .service-icon { background: #eafaf1; color: #27ae60; }
.service-card.orange .service-icon { background: #fff7e6; color: #f39c12; }
.service-card.violet .service-icon { background: #f3f0ff; color: #6c47ff; }
.service-card.yellow .service-icon { background: #fffbe6; color: #f7b731; }
.service-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #222;
}
.service-card p {
  color: #555;
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
}
.service-card ul {
  margin-bottom: 0.7rem;
  margin-left: 1.1rem;
  color: #888;
  font-size: 0.98rem;
}
.service-card ul li {
  margin-bottom: 0.2rem;
  list-style: disc inside;
}
.service-link {
  color: #6c47ff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  margin-top: auto;
  transition: color 0.2s;
}
.service-link:hover {
  color: #2d6cdf;
  text-decoration: underline;
}
/* Placeholder icons for services */
.icon-backend::before { content: '\1F4BB'; }
.icon-fullstack::before { content: '\2699'; }
.icon-db::before { content: '\1F4BE'; }
.icon-cloud::before { content: '\2601'; }
.icon-arch::before { content: '\1F3E2'; }
.icon-perf::before { content: '\1F527'; }

/* Callout */
.services-callout {
  background: linear-gradient(90deg, #6c47ff 40%, #2d6cdf 100%);
  border-radius: 18px;
  max-width: 900px;
  margin: 2.5rem auto 0 auto;
  padding: 2.2rem 2rem 2rem 2rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 2px 16px rgba(44,108,223,0.10);
}
.callout-content strong {
  font-size: 1.18rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.7rem;
}
.callout-content p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.btn-callout {
  background: #fff;
  color: #6c47ff;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.7rem 2.2rem;
  text-decoration: none;
  font-size: 1.05rem;
  transition: background 0.2s, color 0.2s;
  border: none;
  box-shadow: 0 2px 8px rgba(44,108,223,0.10);
}
.btn-callout:hover {
  background: #f3f0ff;
  color: #2d6cdf;
}
@media (max-width: 900px) {
  .services-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .services-cards {
    grid-template-columns: 1fr;
  }
  .services-callout {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
} 